1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
|
#!/usr/bin/perl -w
#
# This is the (re)generated signal handler class
# You can cut and paste the skeleton signal handler subs from this file
# into the relevant classes in your application or its subclasses
#
# DO NOT EDIT THIS FILE, ANY CHANGES THAT YOU MAKE WILL BE LOST WHEN
# THIS FILE WILL BE OVERWRITTEN BY THE NEXT RUN OF Glade::PerlGenerate
#
#==============================================================================
#=== This is the 'connect_dialog' class
#==============================================================================
package connect_dialog;
require 5.000; use strict 'vars', 'refs', 'subs';
# UI class 'connect_dialog' (version 0.01)
#
# Copyright (c) Date Tue Oct 23 01:49:12 PDT 2001
# Author Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
## Unspecified copying policy, please contact the author\n# Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
#==============================================================================
# This perl source file was automatically generated by
# Glade::PerlGenerate version 0.59 - Wed Jun 20 14:48:25 BST 2001
# Copyright (c) Author Dermot Musgrove <dermot.musgrove\@virgin.net>
#
# from Glade file /home/ivan/gtkdbi/gtkdbi.glade
# Thu Jan 10 08:02:21 PST 2002
#==============================================================================
BEGIN {
use src::gtkdbiUI;
} # End of sub BEGIN
sub app_run {
my ($class) = @_;
$class->load_translations('gtkdbi');
# You can use the line below to load a test .mo file before it is installed in
# the normal place (eg /usr/local/share/locale/C/LC_MESSAGES/gtkdbi.mo)
# $class->load_translations('gtkdbi', 'test', undef, '/home/ivan/gtkdbi/ppo/gtkdbi.mo');
Gtk->init;
my $window = $class->new;
$window->TOPLEVEL->show;
# Put any extra UI initialisation (eg signal_connect) calls here
# Now let Gtk handle signals
Gtk->main;
$window->TOPLEVEL->destroy;
return $window;
} # End of sub app_run
#===============================================================================
#=== Below are the default signal handlers for 'connect_dialog' class
#===============================================================================
sub about_Form {
my ($class) = @_;
my $gtkversion =
Gtk->major_version.".".
Gtk->minor_version.".".
Gtk->micro_version;
my $name = $0;
my $message =
__PACKAGE__." ("._("version")." $VERSION - $DATE)\n".
_("Written by")." $AUTHOR \n\n".
_("No description")." \n\n".
"Gtk ". _("version").": $gtkversion\n".
"Gtk-Perl "._("version").": $Gtk::VERSION\n".
_("run from file").": $name";
__PACKAGE__->message_box($message, _("About")." \u".__PACKAGE__, [_('Dismiss'), _('Quit Program')], 1,
"$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm", 'left' );
} # End of sub about_Form
sub destroy_Form {
my ($class, $data, $object, $instance) = @_;
Gtk->main_quit;
} # End of sub destroy_Form
sub toplevel_hide { shift->get_toplevel->hide }
sub toplevel_close { shift->get_toplevel->close }
sub toplevel_destroy { shift->get_toplevel->destroy }
#==============================================================================
#=== Below are the signal handlers for 'connect_dialog' class
#==============================================================================
sub on_abortconnect_button_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_abortconnect_button_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_abortconnect_button_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_abortconnect_button_clicked
sub on_connect_button_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_connect_button_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_connect_button_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_connect_button_clicked
sub on_datasource_entry_changed {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_datasource_entry_changed";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_datasource_entry_changed." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_datasource_entry_changed
sub on_deletesession_button_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_deletesession_button_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_deletesession_button_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_deletesession_button_clicked
sub on_password_entry_changed {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_password_entry_changed";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_password_entry_changed." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_password_entry_changed
sub on_savesession_button_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_savesession_button_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_savesession_button_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_savesession_button_clicked
sub on_username_entry_changed {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_username_entry_changed";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_username_entry_changed." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_username_entry_changed
#==============================================================================
#=== This is the 'quit_dialog' class
#==============================================================================
package quit_dialog;
require 5.000; use strict 'vars', 'refs', 'subs';
# UI class 'quit_dialog' (version 0.01)
#
# Copyright (c) Date Tue Oct 23 01:49:12 PDT 2001
# Author Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
## Unspecified copying policy, please contact the author\n# Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
#==============================================================================
# This perl source file was automatically generated by
# Glade::PerlGenerate version 0.59 - Wed Jun 20 14:48:25 BST 2001
# Copyright (c) Author Dermot Musgrove <dermot.musgrove\@virgin.net>
#
# from Glade file /home/ivan/gtkdbi/gtkdbi.glade
# Thu Jan 10 08:02:21 PST 2002
#==============================================================================
BEGIN {
use src::gtkdbiUI;
} # End of sub BEGIN
sub app_run {
my ($class) = @_;
$class->load_translations('gtkdbi');
# You can use the line below to load a test .mo file before it is installed in
# the normal place (eg /usr/local/share/locale/C/LC_MESSAGES/gtkdbi.mo)
# $class->load_translations('gtkdbi', 'test', undef, '/home/ivan/gtkdbi/ppo/gtkdbi.mo');
Gtk->init;
my $window = $class->new;
$window->TOPLEVEL->show;
# Put any extra UI initialisation (eg signal_connect) calls here
# Now let Gtk handle signals
Gtk->main;
$window->TOPLEVEL->destroy;
return $window;
} # End of sub app_run
#===============================================================================
#=== Below are the default signal handlers for 'quit_dialog' class
#===============================================================================
sub about_Form {
my ($class) = @_;
my $gtkversion =
Gtk->major_version.".".
Gtk->minor_version.".".
Gtk->micro_version;
my $name = $0;
my $message =
__PACKAGE__." ("._("version")." $VERSION - $DATE)\n".
_("Written by")." $AUTHOR \n\n".
_("No description")." \n\n".
"Gtk ". _("version").": $gtkversion\n".
"Gtk-Perl "._("version").": $Gtk::VERSION\n".
_("run from file").": $name";
__PACKAGE__->message_box($message, _("About")." \u".__PACKAGE__, [_('Dismiss'), _('Quit Program')], 1,
"$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm", 'left' );
} # End of sub about_Form
sub destroy_Form {
my ($class, $data, $object, $instance) = @_;
Gtk->main_quit;
} # End of sub destroy_Form
sub toplevel_hide { shift->get_toplevel->hide }
sub toplevel_close { shift->get_toplevel->close }
sub toplevel_destroy { shift->get_toplevel->destroy }
#==============================================================================
#=== Below are the signal handlers for 'quit_dialog' class
#==============================================================================
sub on_quit_no_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_quit_no_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_quit_no_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_quit_no_clicked
sub on_quit_yes_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_quit_yes_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_quit_yes_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_quit_yes_clicked
#==============================================================================
#=== This is the 'error_dialog' class
#==============================================================================
package error_dialog;
require 5.000; use strict 'vars', 'refs', 'subs';
# UI class 'error_dialog' (version 0.01)
#
# Copyright (c) Date Tue Oct 23 01:49:12 PDT 2001
# Author Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
## Unspecified copying policy, please contact the author\n# Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
#==============================================================================
# This perl source file was automatically generated by
# Glade::PerlGenerate version 0.59 - Wed Jun 20 14:48:25 BST 2001
# Copyright (c) Author Dermot Musgrove <dermot.musgrove\@virgin.net>
#
# from Glade file /home/ivan/gtkdbi/gtkdbi.glade
# Thu Jan 10 08:02:21 PST 2002
#==============================================================================
BEGIN {
use src::gtkdbiUI;
} # End of sub BEGIN
sub app_run {
my ($class) = @_;
$class->load_translations('gtkdbi');
# You can use the line below to load a test .mo file before it is installed in
# the normal place (eg /usr/local/share/locale/C/LC_MESSAGES/gtkdbi.mo)
# $class->load_translations('gtkdbi', 'test', undef, '/home/ivan/gtkdbi/ppo/gtkdbi.mo');
Gtk->init;
my $window = $class->new;
$window->TOPLEVEL->show;
# Put any extra UI initialisation (eg signal_connect) calls here
# Now let Gtk handle signals
Gtk->main;
$window->TOPLEVEL->destroy;
return $window;
} # End of sub app_run
#===============================================================================
#=== Below are the default signal handlers for 'error_dialog' class
#===============================================================================
sub about_Form {
my ($class) = @_;
my $gtkversion =
Gtk->major_version.".".
Gtk->minor_version.".".
Gtk->micro_version;
my $name = $0;
my $message =
__PACKAGE__." ("._("version")." $VERSION - $DATE)\n".
_("Written by")." $AUTHOR \n\n".
_("No description")." \n\n".
"Gtk ". _("version").": $gtkversion\n".
"Gtk-Perl "._("version").": $Gtk::VERSION\n".
_("run from file").": $name";
__PACKAGE__->message_box($message, _("About")." \u".__PACKAGE__, [_('Dismiss'), _('Quit Program')], 1,
"$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm", 'left' );
} # End of sub about_Form
sub destroy_Form {
my ($class, $data, $object, $instance) = @_;
Gtk->main_quit;
} # End of sub destroy_Form
sub toplevel_hide { shift->get_toplevel->hide }
sub toplevel_close { shift->get_toplevel->close }
sub toplevel_destroy { shift->get_toplevel->destroy }
#==============================================================================
#=== Below are the signal handlers for 'error_dialog' class
#==============================================================================
sub on_error_button_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_error_button_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_error_button_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_error_button_clicked
#==============================================================================
#=== This is the 'about_dialog' class
#==============================================================================
package about_dialog;
require 5.000; use strict 'vars', 'refs', 'subs';
# UI class 'about_dialog' (version 0.01)
#
# Copyright (c) Date Tue Oct 23 01:49:12 PDT 2001
# Author Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
## Unspecified copying policy, please contact the author\n# Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
#==============================================================================
# This perl source file was automatically generated by
# Glade::PerlGenerate version 0.59 - Wed Jun 20 14:48:25 BST 2001
# Copyright (c) Author Dermot Musgrove <dermot.musgrove\@virgin.net>
#
# from Glade file /home/ivan/gtkdbi/gtkdbi.glade
# Thu Jan 10 08:02:21 PST 2002
#==============================================================================
BEGIN {
use src::gtkdbiUI;
} # End of sub BEGIN
sub app_run {
my ($class) = @_;
$class->load_translations('gtkdbi');
# You can use the line below to load a test .mo file before it is installed in
# the normal place (eg /usr/local/share/locale/C/LC_MESSAGES/gtkdbi.mo)
# $class->load_translations('gtkdbi', 'test', undef, '/home/ivan/gtkdbi/ppo/gtkdbi.mo');
Gtk->init;
my $window = $class->new;
$window->TOPLEVEL->show;
# Put any extra UI initialisation (eg signal_connect) calls here
# Now let Gtk handle signals
Gtk->main;
$window->TOPLEVEL->destroy;
return $window;
} # End of sub app_run
#===============================================================================
#=== Below are the default signal handlers for 'about_dialog' class
#===============================================================================
sub about_Form {
my ($class) = @_;
my $gtkversion =
Gtk->major_version.".".
Gtk->minor_version.".".
Gtk->micro_version;
my $name = $0;
my $message =
__PACKAGE__." ("._("version")." $VERSION - $DATE)\n".
_("Written by")." $AUTHOR \n\n".
_("No description")." \n\n".
"Gtk ". _("version").": $gtkversion\n".
"Gtk-Perl "._("version").": $Gtk::VERSION\n".
_("run from file").": $name";
__PACKAGE__->message_box($message, _("About")." \u".__PACKAGE__, [_('Dismiss'), _('Quit Program')], 1,
"$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm", 'left' );
} # End of sub about_Form
sub destroy_Form {
my ($class, $data, $object, $instance) = @_;
Gtk->main_quit;
} # End of sub destroy_Form
sub toplevel_hide { shift->get_toplevel->hide }
sub toplevel_close { shift->get_toplevel->close }
sub toplevel_destroy { shift->get_toplevel->destroy }
#==============================================================================
#=== Below are the signal handlers for 'about_dialog' class
#==============================================================================
sub on_about_button_clicked {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_about_button_clicked";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_about_button_clicked." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_about_button_clicked
#==============================================================================
#=== This is the 'window1' class
#==============================================================================
package window1;
require 5.000; use strict 'vars', 'refs', 'subs';
# UI class 'window1' (version 0.01)
#
# Copyright (c) Date Tue Oct 23 01:49:12 PDT 2001
# Author Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
## Unspecified copying policy, please contact the author\n# Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
#
#==============================================================================
# This perl source file was automatically generated by
# Glade::PerlGenerate version 0.59 - Wed Jun 20 14:48:25 BST 2001
# Copyright (c) Author Dermot Musgrove <dermot.musgrove\@virgin.net>
#
# from Glade file /home/ivan/gtkdbi/gtkdbi.glade
# Thu Jan 10 08:02:21 PST 2002
#==============================================================================
BEGIN {
use src::gtkdbiUI;
} # End of sub BEGIN
sub app_run {
my ($class) = @_;
$class->load_translations('gtkdbi');
# You can use the line below to load a test .mo file before it is installed in
# the normal place (eg /usr/local/share/locale/C/LC_MESSAGES/gtkdbi.mo)
# $class->load_translations('gtkdbi', 'test', undef, '/home/ivan/gtkdbi/ppo/gtkdbi.mo');
Gtk->init;
my $window = $class->new;
$window->TOPLEVEL->show;
# Put any extra UI initialisation (eg signal_connect) calls here
# Now let Gtk handle signals
Gtk->main;
$window->TOPLEVEL->destroy;
return $window;
} # End of sub app_run
#===============================================================================
#=== Below are the default signal handlers for 'window1' class
#===============================================================================
sub about_Form {
my ($class) = @_;
my $gtkversion =
Gtk->major_version.".".
Gtk->minor_version.".".
Gtk->micro_version;
my $name = $0;
my $message =
__PACKAGE__." ("._("version")." $VERSION - $DATE)\n".
_("Written by")." $AUTHOR \n\n".
_("No description")." \n\n".
"Gtk ". _("version").": $gtkversion\n".
"Gtk-Perl "._("version").": $Gtk::VERSION\n".
_("run from file").": $name";
__PACKAGE__->message_box($message, _("About")." \u".__PACKAGE__, [_('Dismiss'), _('Quit Program')], 1,
"$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm", 'left' );
} # End of sub about_Form
sub destroy_Form {
my ($class, $data, $object, $instance) = @_;
Gtk->main_quit;
} # End of sub destroy_Form
sub toplevel_hide { shift->get_toplevel->hide }
sub toplevel_close { shift->get_toplevel->close }
sub toplevel_destroy { shift->get_toplevel->destroy }
#==============================================================================
#=== Below are the signal handlers for 'window1' class
#==============================================================================
sub on_about1_activate {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_about1_activate";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_about1_activate." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_about1_activate
sub on_connect1_activate {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_connect1_activate";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_connect1_activate." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_connect1_activate
sub on_quit1_activate {
my ($class, $data, $object, $instance, $event) = @_;
my $me = __PACKAGE__."->on_quit1_activate";
# Get ref to hash of all widgets on our form
my $form = $__PACKAGE__::all_forms->{$instance};
# REPLACE the line below with the actions to be taken when __PACKAGE__."->on_quit1_activate." is called
__PACKAGE__->show_skeleton_message($me, \@_, __PACKAGE__, "$Glade::PerlRun::pixmaps_directory/glade2perl_logo.xpm");
} # End of sub on_quit1_activate
1;
__END__
#===============================================================================
#==== Documentation
#===============================================================================
=pod
=head1 NAME
gtkdbiSIGS - version 0.01 Tue Oct 23 01:49:12 PDT 2001
No description
=head1 SYNOPSIS
use gtkdbiSIGS;
To construct the window object and show it call
Gtk->init;
my $window = window1->new;
$window->TOPLEVEL->show;
Gtk->main;
OR use the shorthand for the above calls
window1->app_run;
=head1 DESCRIPTION
Unfortunately, the author has not yet written any documentation :-(
=head1 AUTHOR
Ivan Kohler,Chess room,888-670-SISD,215-996-0824 <ivan\@rootwood.haze.st>
=cut
|