summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/ppushbt.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/puke/ppushbt.pm')
-rw-r--r--ksirc/puke/ppushbt.pm30
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;