Gtk2::Ex::Units - widget sizes in various units


Gtk2-Ex-WidgetBits documentation Contained in the Gtk2-Ex-WidgetBits distribution.

Index


Code Index:

NAME

Top

Gtk2::Ex::Units -- widget sizes in various units

SYNOPSIS

Top

 use Gtk2::Ex::Units;

 Gtk2::Ex::Units::set_default_size_with_subsizes
     ($dialog, [ $entry, '40 em' ],
               [ $textview, '20 em', '10 lines' ]);

 $pixels = Gtk2::Ex::Units::em($widget);

DESCRIPTION

Top

This is some functions for working with sizes of widgets etc expressed in units like em, line height, millimetres, etc.

The best feature is set_default_size_with_subsizes which helps establish a sensible initial size for a dialog or toplevel window when it includes text entry widgets etc which don't have a desired size, or not when empty.

EXPORTS

Top

Nothing is exported by default, but the functions can be requested individually or with :all in the usual way (see Exporter).

    use Gtk2::Ex::Units qw(em ex);

FUNCTIONS

Top

String Sizes

$pixels = Gtk2::Ex::Units::width ($target, $str)
$pixels = Gtk2::Ex::Units::height ($target, $str)

Return a size in pixels on $target for a string $str like

    10 chars       # width of a average character
    6 ems          # width of an "M" character
    1 digit        # width of an average digit 0 to 9
    2 ex           # height of an "x" character
    1 line         # height of a line (baseline to baseline)
    10 mm          # millimetres, per screen size
    2.5 inches     # inches, per screen size
    5 pixels       # already pixels, just return 5
    100            # no units, just return 100

Either singular like "inch" or plural "inches" can be given. The number part can include decimals, and the return may not be an integer.

"em", "ex", "char", "digit" and "line" follow the basic sizes functions below, for the font in $target. For them $target can be a Gtk2::Widget or a Pango layout Gtk2::Pango::Layout.

"mm" and "inch" are based on the screen size for $target. For them $target can be a Gtk2::Widget, a Gtk2::Gdk::Window, or anything with a get_screen giving a Gtk2::Gdk::Screen. In Gtk 2.0.x there's only one screen and $target is currently ignored in that case.

Currently "em" and "digit" are only for use as a width, and ex and line only for a height. In the future they may be supported on the opposite axis, perhaps based on what rotated text would look like. (The same pixels, or scaled if pixels aren't square?)

Gtk2::Ex::Units::set_default_size_with_subsizes ($toplevel, $subsize, ...)
$requisition = Gtk2::Ex::Units::size_request_with_subsizes ($widget, $subsize, ...)

Establish a widget size based on temporary forced sizes for some of its children. Generally the child widgets will be things like Gtk2::TreeView or Gtk2::Viewport which don't have a size while empty but where you want to allow room for likely contents.

Each $subsize argument is an arrayref

    [ $widget, $width, $height ]

$width and $height are put through the width and height functions above, so they can be either a count of pixels, or a string like "6 ems" or "10 lines". -1 means the widget's desired size in that axis (as usual for set_size_request), and undef means the current size request setting of that axis (ie. no change to it).

set_default_size_with_subsizes is for use on Gtk2::Window toplevel or dialog widgets and applies the size to $toplevel->set_default_size. This gives a good initial size for $toplevel, but allows the user to expand or shrink later.

    Gtk2::Ex::Units::set_default_size_with_subsizes
        ($dialog, [ $textview, '40 ems', '10 lines' ]);

size_request_with_subsizes is for use on any container widget and just returns a new Gtk2::Requisition with the size determined.

Basic Sizes

In the following functions $target can be a Gtk2::Widget or a Pango::Layout.

$pixels = Gtk2::Ex::Units::em ($target)
$pixels = Gtk2::Ex::Units::ex ($target)

Return the width of an "M", or the height of an "x", in pixels, for $target.

Currently an em includes inter-character spacing, so that "3 ems" makes room for "MMM", but an ex is just the inked height of that character.

$pixels = Gtk2::Ex::Units::char_width ($target)
$pixels = Gtk2::Ex::Units::digit_width ($target)

Return the average width in pixels of a character or just a digit (0-9), for $target.

Currently these are per Pango's get_approximate_char_width and get_approximate_digit_width. In a proportional font some characters or some of the digits may be wider than the average.

$pixels = Gtk2::Ex::Units::line_height ($target)

Return the height of a line, in pixels, for $target. This the height of the glyphs in the target font, plus any Pango line spacing per ($layout->set_spacing).

SEE ALSO

Top

Gtk2::Gdk::Screen, for screen size in pixels and millimetres (or Gtk2::Gdk for the Gtk 2.0.x single-screen sizes).

Math::Units

HOME PAGE

Top

http://user42.tuxfamily.org/gtk2-ex-widgetbits/index.html

LICENSE

Top

Copyright 2007, 2008, 2009, 2010, 2011 Kevin Ryde

Gtk2-Ex-WidgetBits is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.

Gtk2-Ex-WidgetBits is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Gtk2-Ex-WidgetBits. If not, see http://www.gnu.org/licenses/.


Gtk2-Ex-WidgetBits documentation Contained in the Gtk2-Ex-WidgetBits distribution.

# Copyright 2007, 2008, 2009, 2010, 2011 Kevin Ryde

# This file is part of Gtk2-Ex-WidgetBits.
#
# Gtk2-Ex-WidgetBits is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3, or (at your option) any later
# version.
#
# Gtk2-Ex-WidgetBits is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with Gtk2-Ex-WidgetBits.  If not, see <http://www.gnu.org/licenses/>.

package Gtk2::Ex::Units;
use 5.008;
use strict;
use warnings;
use Carp;
use Gtk2::Pango; # for PANGO_SCALE

use Exporter;
our @ISA = ('Exporter');
our @EXPORT_OK = qw(em ex char_width digit_width line_height
                    width height
                    set_default_size_with_subsizes
                    size_request_with_subsizes);
our %EXPORT_TAGS = (all => \@EXPORT_OK);

our $VERSION = 43;

# uncomment this to run the ### lines
#use Smart::Comments;


#------------------------------------------------------------------------------

if (Gtk2::Gdk::Screen->can('get_width')) {
  eval "#line ".(__LINE__+1)." \"".__FILE__."\"\n" . <<'HERE' or die;
  ### _to_screen() using target->screen

sub _to_screen {
  my ($target) = @_;
  if (my $func = $target->can('get_screen')) {
    $target = &$func ($target);
  }
  return ($target
          || croak "No screen for target $target");
}
1

HERE
} else {
  eval "#line ".(__LINE__+1)." \"".__FILE__."\"\n" . <<'HERE' or die;
  ### _to_screen() using Gtk 2.0.x single-screen

{
  package Gtk2::Ex::Units::DummyScreen;
  sub get_width  { return Gtk2::Gdk->screen_width }
  sub get_height { return Gtk2::Gdk->screen_height }
  sub get_width_mm  { return Gtk2::Gdk->screen_width_mm }
  sub get_height_mm { return Gtk2::Gdk->screen_height_mm }
}
{
  my $dummy_screen = bless {}, 'Gtk2::Ex::Units::DummyScreen';
  ### $dummy_screen
  sub _to_screen {
    return $dummy_screen;
  }
}
1
HERE
}

sub _pango_rect {
  my ($target, $str, $want_logical) = @_;
  ### _pango_rect(): [$target, $str]

  if ($target->can('create_pango_layout')) {
    # if widget instead of layout
    $target = $target->create_pango_layout ($str);
  } else {
    $target->set_text ($str);
  }
  # get_extents() returns ($ink_rect,$logical_rect)
  return ($target->get_extents)[$want_logical||0];
}
sub _pango_metrics {
  my ($target) = @_;
  my $context = ($target->can('pango_context')
                 ? $target->pango_context       # Pango::Layout
                 : $target->get_pango_context); # Gtk2::Widget

  my $fontdesc = (($target->can('get_font_description')  # Pango::Layout
                   && $target->get_font_description)
                  || ($target->can('style')              # Gtk2::Widget
                      && $target->style->font_desc)
                  || $context->get_font_description);    # if unset
  return $context->get_metrics ($fontdesc, $context->get_language);
}

#------------------------------------------------------------------------------

sub em {
  my ($target) = @_;
  # logical rect to include inter-char spacing, so that "3 em" is roughly
  # the width needed for "MMM"
  return _pango_rect($target,'M',1)->{'width'} / Gtk2::Pango::PANGO_SCALE;
}
sub ex {
  my ($target) = @_;
  return _pango_rect($target,'x')->{'height'} / Gtk2::Pango::PANGO_SCALE;
}
sub line_height {
  my ($target) = @_;
  # ink rect of newline is the line height plus line spacing
  # (whereas log rect of empty is line height without line spacing,
  # or log rect of newline is two line heights plus one line spacing)
  return _pango_rect($target,"\n",0)->{'height'} / Gtk2::Pango::PANGO_SCALE;
}
sub char_width {
  my ($target) = @_;
  return _pango_metrics($target)->get_approximate_char_width
    / Gtk2::Pango::PANGO_SCALE;
}
sub digit_width {
  my ($target) = @_;
  return _pango_metrics($target)->get_approximate_digit_width
    / Gtk2::Pango::PANGO_SCALE;
}

#------------------------------------------------------------------------------
# width

use constant { _pixel => 1,
               _MILLIMETRES_PER_INCH => 25.4 };

sub _mm_width {
  my ($target) = @_;
  my $screen = _to_screen($target);
  return $screen->get_width / $screen->get_width_mm;
}
sub _inch_width {
  my ($target) = @_;
  return _MILLIMETRES_PER_INCH * _mm_width($target);
}
sub _screen_width {
  my ($target) = @_;
  return _to_screen($target)->get_width;
}
my %width = (pixel   => \&_pixel,
             pixels  => \&_pixel,
             char    => \&char_width,
             chars   => \&char_width,
             em      => \&em,
             ems     => \&em,
             digit   => \&digit_width,
             digits  => \&digit_width,
             mm      => \&_mm_width,
             inch    => \&_inch_width,
             inches  => \&_inch_width,
             screen  => \&_screen_width,
             screens => \&_screen_width,
            );

#------------------------------------------------------------------------------
# height

sub _mm_height {
  my ($target) = @_;
  my $screen = _to_screen($target);
  return $screen->get_height / $screen->get_height_mm;
}
sub _inch_height {
  my ($target) = @_;
  return _MILLIMETRES_PER_INCH * _mm_height($target);
}
sub _screen_height {
  my ($target) = @_;
  return _to_screen($target)->get_height;
}

my %height = (pixel   => \&_pixel,
              pixels  => \&_pixel,
              ex      => \&ex,
              exes    => \&ex,
              line    => \&line_height,
              lines   => \&line_height,
              mm      => \&_mm_height,
              inch    => \&_inch_height,
              inches  => \&_inch_height,
              screen  => \&_screen_height,
              screens => \&_screen_height,
             );

#------------------------------------------------------------------------------
# shared

sub width {
  push @_, \%width, \%height;
  goto \&_units;
}
sub height {
  push @_, \%height, \%width;
  goto \&_units;
}
sub _units {
  my ($target, $str, $h, $other) = @_;
  ### _units str: $str

  # it's easy to forget the $target arg, so check
  @_ == 4 or croak 'Units width()/height() expects 2 arguments';

  my ($amount,$unit) = ($str =~ /(.*?)\s*([[:alpha:]_]+)$/s)
    or return $str;

  if (my $func = $h->{$unit}) {
    return $amount * &$func ($target);
  }
  croak "Unrecognised unit \"$unit\"";
}


#-----------------------------------------------------------------------------

sub set_default_size_with_subsizes {
  my $window = $_[0];
  my $req = size_request_with_subsizes (@_);
  $window->set_default_size ($req->width, $req->height);
}

sub size_request_with_subsizes {
  my ($widget, @elems) = @_;

  # Each change is guarded as it's made, in case the action on a subsequent
  # $widget provokes an error, eg. if not a Gtk2::Widget.  A guard object
  # for each widget is a little less code than say an array of saved
  # settings and a loop to undo them.

  require Scope::Guard;
  my @guard;

  foreach my $elem (@elems) {
    my ($subwidget, $width, $height) = @$elem;
    my ($save_width, $save_height) = $subwidget->get_size_request;
    my $width_pixels = (defined $width
                        ? Gtk2::Ex::Units::width($subwidget,$width)
                        : $save_width);
    my $height_pixels = (defined $height
                        ? Gtk2::Ex::Units::height($subwidget,$height)
                        : $save_height);
    push @guard, Scope::Guard->new
      (sub { $subwidget->set_size_request ($save_width, $save_height) });
    $subwidget->set_size_request ($width_pixels, $height_pixels);
  }

  return $widget->size_request;
}

1;
__END__

#-----------------------------------------------------------------------------
# unused bits

# sub _to_pango_layout {
#   my ($target) = @_;
#   if ($target->can ('create_pango_layout')) {
#     return $target->create_pango_layout ($str);
#   } else {
#     return $target;
#   }
# }

#   if (my $func = $other->{$unit}) {
#     my $factor = $h->{'_factor_other'};
#     return $amount * &$factor($target) * &$func($target);
#   }
# sub _factor_width_to_height {
#   my ($target) = @_;
#   return 1 / _factor_height_to_width($target);
# }
# sub _factor_height_to_width {
#   my ($target) = @_;
#   my $screen = _to_screen($target);
#   return ($screen->get_height_mm * $screen->get_width)
#     / ($screen->get_height * $screen->get_width_mm);
# }
#              _factor_other => \&_factor_width_to_height
#              _factor_other => \&_factor_height_to_width

# For the subsizes really have to dig out the actual child to set the size
# on, so as to correctly incorporate any container border-width etc.
#
# For unit sizes as such looking into the label child of a menuitem is handy
# though ...
#
#   while (my $func = $target->can('Gtk2_Ex_Units_target')) {
#     $target = (&$func($target) || last);
#   }
# *Gtk2::Bin::Gtk2_Ex_Units_target = \&Gtk2::Bin::get_child;

# Subclass for new units is handy and needs no explicit setup.  Choose a
# name for width/height functions down there.  Maybe distinguish not-found
# from cannot-load using Module::Find or Module::Plugin, as long as funcs in
# @INC still worked.
#
#   require Module::Load;
#   foreach my $suffix ('', 's', 'es') {
#     my $unitclass = lc($unit);
#     $unitclass =~ s/$suffix$// or next;
#     $unitclass = "Gtk2::Ex::Units::$unitclass";
#     eval { Module::Load::load ($unitclass) }
#       || do {
#         #### cannot load: "$unitclass -- $@"
#       };
#
#     if (my $func = $unitclass->can($method)) {
#       ### use: "$unitclass->$method"
#       return &$func ($unitclass, $target, $amount);
#     }
#   }


#-----------------------------------------------------------------------------