diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ksirc/puke/ppushbt.pm | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/puke/ppushbt.pm')
-rw-r--r-- | ksirc/puke/ppushbt.pm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ksirc/puke/ppushbt.pm b/ksirc/puke/ppushbt.pm new file mode 100644 index 00000000..c1d00349 --- /dev/null +++ b/ksirc/puke/ppushbt.pm @@ -0,0 +1,30 @@ + +&::PukeSendMessage($PUKE_WIDGET_LOAD, + $PUKE_CONTROLLER, + $PWIDGET_PUSHBT, + "ppushbt.so", + sub { my %ARG = %{shift()}; + if($ARG{'iArg'} == 1){ + print "*E* PPushButton Load failed!\n"; + } + } + ); + +package PPushButton; +@ISA = qw(PButton); +use strict; + +sub new { + my $class = shift; + my $self = $class->SUPER::new($class, @_); + + $self->{widgetType} = $::PWIDGET_PUSHBT; + + if($class eq 'PPushButton'){ + $self->create(); + } + return $self; + +} + +package main; |