summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk3.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2012-08-01 17:26:31 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-11-24 21:28:33 +0100
commit602108d3f37701dcecdeb9697c05c3b9d76eb67a (patch)
treeab635ba0aebbd2dba969c86160eb26423c53c25d /perl-install/ugtk3.pm
parent504f6c89db28716c7038153fb7838565b4ba0583 (diff)
downloaddrakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar
drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar.gz
drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar.bz2
drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar.xz
drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.zip
Gtk2::Pango -> Pango
Diffstat (limited to 'perl-install/ugtk3.pm')
-rw-r--r--perl-install/ugtk3.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index d1db5ed79..9ad1cc2cb 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -310,9 +310,9 @@ sub markup_to_TextView_format {
foreach (@$l) {
my ($_txt, $attrs) = @$_;
if ($attrs) {
- $attrs->{weight} eq 'bold' and $attrs->{weight} = do { require Gtk2::Pango; Gtk2::Pango->PANGO_WEIGHT_BOLD };
+ $attrs->{weight} eq 'bold' and $attrs->{weight} = do { require Pango; Pango->PANGO_WEIGHT_BOLD };
$attrs->{size} eq 'larger' and do {
- $attrs->{scale} = Gtk2::Pango->scale_x_large; # equivalent to Label's size => 'larger'
+ $attrs->{scale} = Pango->scale_x_large; # equivalent to Label's size => 'larger'
delete $attrs->{size};
};
}
@@ -349,7 +349,7 @@ sub create_box_with_title {
my $scroll = gtknew('ScrolledWindow', child => $wtext, width => $width, height => 200);
$scroll->signal_connect(realize => sub {
my $layout = $wtext->create_pango_layout($text);
- $layout->set_width(($width - 10) * Gtk2::Pango->scale);
+ $layout->set_width(($width - 10) * Pango->scale);
$wtext->set_size_request($width, min(200, second($layout->get_pixel_size) + 10));
$scroll->set_size_request($width, min(200, second($layout->get_pixel_size) + 10));
$o->{rwindow}->queue_resize;
@@ -653,14 +653,14 @@ sub gtkfontinfo {
foreach (qw(ascent descent approximate_char_width approximate_digit_width)) {
no strict;
my $func = "get_$_";
- $fontinfo{$_} = Gtk2::Pango->pixels($metrics->$func);
+ $fontinfo{$_} = Pango->pixels($metrics->$func);
}
%fontinfo;
}
sub gtkmodify_font {
my ($w, $arg) = @_;
- $w->modify_font(ref($arg) ? $arg : Gtk2::Pango::FontDescription->from_string($arg));
+ $w->modify_font(ref($arg) ? $arg : Pango::FontDescription->from_string($arg));
$w;
}
@@ -1446,7 +1446,7 @@ sub new {
$darea->{back_pixbuf} = gtknew('Pixbuf', file => 'banner-background');
my $d_height = $darea->{back_pixbuf}->get_height;
$darea->set_size_request(-1, $d_height);
- $darea->modify_font(Gtk2::Pango::FontDescription->from_string("13"));
+ $darea->modify_font(Pango::FontDescription->from_string("13"));
eval { $darea->{icon} = ugtk3::gtkcreate_pixbuf($icon) };
$darea->{icon} ||= ugtk3::gtkcreate_pixbuf(ugtk3::wm_icon());
my $blue_part = eval { gtknew('Pixbuf', file => 'banner-blue-part', flip => mygtk3::text_direction_rtl()) };