summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-05-18 06:49:38 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-05-18 06:49:38 +0000
commitb8bbf86428f4f174cc4162959c5748cefbf239ca (patch)
tree973d15587c7c2d7393ba36e960ee24bc7ebcbf59 /perl-install/ugtk2.pm
parentf95e78f8c94a963876f6a087db580954f3de1e72 (diff)
downloaddrakx-b8bbf86428f4f174cc4162959c5748cefbf239ca.tar
drakx-b8bbf86428f4f174cc4162959c5748cefbf239ca.tar.gz
drakx-b8bbf86428f4f174cc4162959c5748cefbf239ca.tar.bz2
drakx-b8bbf86428f4f174cc4162959c5748cefbf239ca.tar.xz
drakx-b8bbf86428f4f174cc4162959c5748cefbf239ca.zip
(Gtk2::OptionMenu) transparently replace obsolete OptionMenu widget by
the new ComboBox widget
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm27
1 files changed, 14 insertions, 13 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 6d5bb165f..edf3523ca 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -1555,29 +1555,30 @@ sub toggle_expansion {
# GtkOptionMenu is a much better-implemented widget and also the right UI for
# noneditable sets of choices.)
#
-# GtkCombo isn't deprecated yet in 2.2 but will be in 2.4.x because it still
-# uses deprecated GtkList.
+# GtkCombo is deprecated in 2.4.x because it still uses deprecated
+# GtkList. GtkOption menu is deprecated in order to have an unified widget.
#
-# A replacement widget for both GtkCombo and GtkOption menu is expected in 2.4
-# (currently in libegg). This widget will be themeable to look like either a
-# combo box or the current option menu.
+# GtkComBox widget replaces GtkOption menu whereas GtkComBoxEntry replaces GtkCombo.
#
#
-# This layer try to make OptionMenu look be api compatible with Combo since new
-# widget API seems following the current Combo API.
+# This layer try to make OptionMenu and ComboBox look being api
+# compatible with Combo since its API is quite nice.
package Gtk2::OptionMenu;
+
+sub new { print "toto! !!!\n\n"; Gtk2::ComboBox->new_text }
+
+
+
+package Gtk2::ComboBox;
use common;
# try to get combox <==> option menu mapping
sub set_popdown_strings {
my ($w, @strs) = @_;
- my $menu = Gtk2::Menu->new;
# keep string list around for ->set_text compatibilty helper
$w->{strings} = \@strs;
- #$w->set_menu((ugtk2::create_factory_menu($window, [ "File", (undef) x 3, '<Branch>' ], map { [ "File/" . $_, (undef) x 3, '<Item>' ] } @strs))[0]);
- $menu->append(ugtk2::gtkshow(Gtk2::MenuItem->new_with_label($_))) foreach @strs;
- $w->set_menu($menu);
+ $w->append_text($_) foreach @strs;
$w
}
@@ -1596,14 +1597,14 @@ sub entry {
sub get_text {
my ($w) = @_;
- $w->{strings}[$w->get_history];
+ $w->{strings}[$w->get_active];
}
sub set_text {
my ($w, $val) = @_;
each_index {
if ($_ eq $val) {
- $w->set_history($::i);
+ $w->set_active($::i);
return;
}
} @{$w->{strings}};