diff options
author | Timothy Pearson <[email protected]> | 2012-01-01 18:29:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-01 18:29:30 -0600 |
commit | b2af005db21bd8fd068cb79b2ae700953128af2c (patch) | |
tree | abd0ed633726bf0bbecb57d30e92836c31e02695 /PerlQt/t/e_sigslot_inherit.t | |
parent | c1b9383f2032d82db5eb8918dca885e37a901dde (diff) | |
download | libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.tar.gz libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.zip |
Move PerlQt
Diffstat (limited to 'PerlQt/t/e_sigslot_inherit.t')
-rw-r--r-- | PerlQt/t/e_sigslot_inherit.t | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/PerlQt/t/e_sigslot_inherit.t b/PerlQt/t/e_sigslot_inherit.t deleted file mode 100644 index 338a405..0000000 --- a/PerlQt/t/e_sigslot_inherit.t +++ /dev/null @@ -1,72 +0,0 @@ -BEGIN { print "1..6\n" } - -package MyApp; -use TQt; -use TQt::isa('TQt::Application'); -use TQt::slots - foo => ['int'], - baz => []; -use TQt::signals - bar => ['int']; - -sub NEW -{ - shift->SUPER::NEW(@_); - this->connect(this, TQT_SIGNAL 'bar(int)', TQT_SLOT 'foo(int)'); - this->connect(this, TQT_SIGNAL 'aboutToQuit()', TQT_SLOT 'baz()'); -} - -sub foo -{ - # 1) testing correct inheritance of sig/slots - print +($_[0] == 3) ? "ok 1\n" : "not ok\n"; -} - -sub baz -{ - print "ok 3\n"; -} - -sub coincoin -{ - print +(@_ == 2) ? "ok 5\n":"not ok\n"; - print +(ref(this) eq " MySubApp") ? "ok 6\n":"not ok\n"; -} - -1; - -package MySubApp; -use TQt; -use TQt::isa('MyApp'); - - -sub NEW -{ - shift->SUPER::NEW(@_); - emit foo(3); -} - -sub baz -{ - # 2) testing further inheritance of sig/slots - print "ok 2\n"; - # 3) testing Perl to Perl SUPER - SUPER->baz(); - # 4) 5) 6) testing non-qualified enum calls vs. Perl method/static calls - eval { &blue }; print !$@ ? "ok 4\n":"not ok\n"; - coincoin("a","b"); -} - -1; - -package main; - -use TQt; -use MySubApp; - -$a = 0; -$a = MySubApp(\@ARGV); - -TQt::Timer::singleShot( 300, TQt::app(), TQT_SLOT "quit()" ); - -exit TQt::app()->exec; |