diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-19 13:21:17 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-19 13:21:17 +0000 |
commit | 7b5ed359ef4437302c6f66193b3f8e97ac862753 (patch) | |
tree | 09f3846e34f8abf9ed927b054d68dcef21ca6d86 /perl-install/mygtk2.pm | |
parent | e40d3f8508fa5028d4597790aefa66ac0ece20b6 (diff) | |
download | drakx-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar drakx-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar.gz drakx-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar.bz2 drakx-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar.xz drakx-7b5ed359ef4437302c6f66193b3f8e97ac862753.zip |
(_gtk__Install_Button) factorize new installer style button for further reusage
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r-- | perl-install/mygtk2.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index c13f3966c..cce8ebdb6 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -144,6 +144,19 @@ sub _gtk { $w; } +sub _gtk__Install_Button { + my ($w, $opts, $class) = @_; + local $opts->{widget_name} = 'Banner'; + local $opts->{padding} = [ 20, 0 ]; + local $opts->{child} = gtknew('HBox', spacing => 5, + children_tight => [ + gtknew('Image', file => 'advanced_expander'), + gtknew('Label', text => delete $opts->{text}), + ], + ); + local $opts->{relief} = 'none' if $::isInstall; + _gtk__Button($w, $opts, 'Button'); +} sub _gtk__Button { &_gtk_any_Button } sub _gtk__ToggleButton { &_gtk_any_Button } |