summaryrefslogtreecommitdiffstats
path: root/perl-install/mygtk2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-01-11 11:40:32 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-01-11 11:40:32 +0000
commit585ad36263ff6e0348b45b9b3c3256533203cde8 (patch)
treeae7c2d3e835a25d3a99a56eaef04728c09faf6cc /perl-install/mygtk2.pm
parent90de368da31f50044709794eea758178c5f00ece (diff)
downloaddrakx-585ad36263ff6e0348b45b9b3c3256533203cde8.tar
drakx-585ad36263ff6e0348b45b9b3c3256533203cde8.tar.gz
drakx-585ad36263ff6e0348b45b9b3c3256533203cde8.tar.bz2
drakx-585ad36263ff6e0348b45b9b3c3256533203cde8.tar.xz
drakx-585ad36263ff6e0348b45b9b3c3256533203cde8.zip
- create mygtk2::main()
- get rid of setting {destroyed}, use a local variable instead
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r--perl-install/mygtk2.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm
index bfb565170..1e6dbfa87 100644
--- a/perl-install/mygtk2.pm
+++ b/perl-install/mygtk2.pm
@@ -646,6 +646,16 @@ sub _icon_paths() {
"/usr/lib/libDrakX/icons", "pixmaps", 'standalone/icons', '/usr/share/rpmdrake/icons');
}
+sub main {
+ my ($window, $o_verif) = @_;
+ my $destroyed;
+ $window->signal_connect(destroy => sub { $destroyed = 1 });
+ $window->show;
+ do { Gtk2->main } while (!$destroyed && $o_verif && !$o_verif->());
+ may_destroy($window);
+ flush();
+}
+
sub sync {
my ($window) = @_;
$window->show;