From c416ed9169a10af34fcbdad2c9f37162b975a835 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sun, 19 Jan 2014 03:20:54 +0100 Subject: drop support for 'Sexy_IconEntry' widget (unused since 2009) --- perl-install/mygtk3.pm | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'perl-install/mygtk3.pm') diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index c9e987a1d..44065baf8 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -476,31 +476,6 @@ sub _gtk__Title2 { _gtk__Title1($w, $opts); } -sub _gtk__Sexy_IconEntry { - my ($w, $opts) = @_; - - require Gtk3::Sexy; - if (!$w) { - $w = Gtk3::Sexy::IconEntry->new; - $w->set_editable(delete $opts->{editable}) if exists $opts->{editable}; - } - - $w->add_clear_button if delete $opts->{clear_button}; - if (my $icon = delete $opts->{primary_icon}) { - $w->set_icon('primary', $icon); - $w->set_icon_highlight('primary', $icon); - } - if (my $icon = delete $opts->{secondary_icon}) { - $w->set_icon('secondary', $icon); - $w->set_icon_highlight('secondary', $icon); - } - - $w->signal_connect('icon-released' => delete $opts->{'icon-released'}) if exists $opts->{'icon-released'}; - $w->signal_connect('icon-pressed' => delete $opts->{'icon-pressed'}) if exists $opts->{'icon-pressed'}; - - _gtk__Entry($w, $opts); -} - sub _gtk__Entry { my ($w, $opts) = @_; -- cgit v1.2.1