Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::imageview::tool(3pm) [debian man page]

Gtk2::ImageView::Tool(3pm)				User Contributed Perl Documentation				Gtk2::ImageView::Tool(3pm)

NAME
Gtk2::ImageView::Tool - Interface for objects capable of being used as tools by Gtk2::ImageView DESCRIPTION
Gtk2::ImageView::Tool is an interface that defines how Gtk2::ImageView interacts with objects that acts as tools. Gtk2::ImageView delegates many of its most important tasks (such as drawing) to its tool which carries out all the hard work. The Gtk2::ImageView package comes with two tools; Gtk2::ImageView::Tool::Dragger and Gtk2::ImageView::Tool::Selector, but by implementing your own tool it is possible to extend Gtk2::ImageView to do stuff its author didn't imagine. Gtk2::ImageView uses Gtk2::ImageView::Tool::Dragger by default, as that tool is he most generally useful one. However, it is trivial to make it use another tool. my $view = Gtk2::ImageView->new; my $tool = Gtk2::ImageView::Tool::Selector ($view); $view->set_tool ($tool); Using the above code makes the view use the selector tool instead of the default dragger tool. HIERARCHY
Glib::Interface +----Gtk2::ImageView::Tool METHODS
boolean = $tool->button_press ($ev) o $ev (Gtk2::Gdk::Event) boolean = $tool->button_release ($ev) o $ev (Gtk2::Gdk::Event) cursor = $tool->cursor_at_point ($x, $y) o $x (integer) o $y (integer) Returns the cursor to display at the given coordinates. boolean = $tool->motion_notify ($ev) o $ev (Gtk2::Gdk::Event) $tool->paint_image ($opts, $drawable) o $opts (Gtk2::Gdk::Pixbuf::Draw::Opts) o $drawable (Gtk2::Gdk::Drawable) Called whenever the image view decides that any part of the image it shows needs to be redrawn. $tool->pixbuf_changed ($reset_fit, $rect) o $reset_fit (boolean) o $rect (Gtk2::Gdk::Rectangle) Indicate to the tool that either a part of, or the whole pixbuf that the image view shows has changed. This method is called by the view whenever its pixbuf or its tool changes. That is, when any of the following methods are used: Gtk2::ImageView::set_pixbuf() Gtk2::ImageView::set_tool() Gtk2::ImageView::damage_pixels() If the reset_fit parameter is TRUE, it means that a new pixbuf has been loaded into the view. tool : the tool reset_fit : whether the view is resetting its fit mode or not rect : rectangle containing the changed area or NULL SEE ALSO
Gtk2::ImageView, Glib::Interface COPYRIGHT
Copyright (C) 2007 by Jeffrey Ratcliffe. This software is licensed under the GPL-3; see Gtk2::ImageView for a full notice. perl v5.14.2 2011-11-16 Gtk2::ImageView::Tool(3pm)

Check Out this Related Man Page

Gtk2::Gdk::Region(3)					User Contributed Perl Documentation				      Gtk2::Gdk::Region(3)

NAME
Gtk2::Gdk::Region HIERARCHY
Glib::Boxed +----Gtk2::Gdk::Region METHODS
region = Gtk2::Gdk::Region->new rectangle = $region->get_clipbox boolean = $region->empty boolean = $region1->equal ($region2) o $region2 (Gtk2::Gdk::Region) $source1->intersect ($source2) o $source2 (Gtk2::Gdk::Region) $region->offset ($dx, $dy) o $dx (integer) o $dy (integer) boolean = $region->point_in ($x, $y) o $x (integer) o $y (integer) region = Gtk2::Gdk::Region->polygon ($points_ref, $fill_rule) o $points_ref (scalar) o $fill_rule (Gtk2::Gdk::FillRule) overlaptype = $region->rect_in ($rect) o $rect (Gtk2::Gdk::Rectangle) region = Gtk2::Gdk::Region->rectangle ($rectangle) o $rectangle (Gtk2::Gdk::Rectangle) list = $region->get_rectangles Returns a list of rectangles (Gtk2::Gdk::Rectangle's), the area covered by the region. $region->shrink ($dx, $dy) o $dx (integer) o $dy (integer) $region->spans_intersect_foreach ($spans_ref, $sorted, $func, $data=undef) o $spans_ref (scalar) o $sorted (boolean) o $func (scalar) o $data (scalar) $source1->subtract ($source2) o $source2 (Gtk2::Gdk::Region) $source1->union ($source2) o $source2 (Gtk2::Gdk::Region) $region->union_with_rect ($rect) o $rect (Gtk2::Gdk::Rectangle) $source1->xor ($source2) o $source2 (Gtk2::Gdk::Region) ENUMS AND FLAGS
enum Gtk2::Gdk::FillRule o 'even-odd-rule' / 'GDK_EVEN_ODD_RULE' o 'winding-rule' / 'GDK_WINDING_RULE' enum Gtk2::Gdk::OverlapType o 'in' / 'GDK_OVERLAP_RECTANGLE_IN' o 'out' / 'GDK_OVERLAP_RECTANGLE_OUT' o 'part' / 'GDK_OVERLAP_RECTANGLE_PART' SEE ALSO
Gtk2, Glib::Boxed COPYRIGHT
Copyright (C) 2003-2008 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.12.1 2010-07-05 Gtk2::Gdk::Region(3)
Man Page