Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::gdk::rectangle(3) [suse man page]

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

NAME
Gtk2::Gdk::Rectangle HIERARCHY
Glib::Boxed +----Gtk2::Gdk::Rectangle METHODS
rectangle = Gtk2::Gdk::Rectangle->new ($x, $y, $width, $height) o $x (integer) o $y (integer) o $width (integer) o $height (integer) integer = $rectangle->height oldvalue = $rectangle->height ($newvalue) o $newvalue (integer) rectangle = $src1->intersect ($src2) o $src2 (Gtk2::Gdk::Rectangle) rectangle = $src1->union ($src2) o $src2 (Gtk2::Gdk::Rectangle) (x, y, width, height) = $rectangle->values integer = $rectangle->width oldvalue = $rectangle->width ($newvalue) o $newvalue (integer) integer = $rectangle->x oldvalue = $rectangle->x ($newvalue) o $newvalue (integer) integer = $rectangle->y oldvalue = $rectangle->y ($newvalue) o $newvalue (integer) 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::Rectangle(3)

Check Out this Related Man Page

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

NAME
Gtk2::Gdk::Region - wrapper for GdkRegion 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) boolean = $region->rect_equal ($rectangle) o $rectangle (Gtk2::Gdk::Rectangle) Since: gtk+ 2.18 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) arrayref of triples [$x1,$y1,$width1, $x2,$y2,$width2, ...] o $sorted (boolean) o $func (scalar) o $data (scalar) Call $function for horizontal lines which intersect $region. $spans_ref is an arrayref of x,y,width horizontal lines. If $sorted is true then they're assumed to be sorted by increasing y coordinate (allowing a single pass across the region rectangles). $function is called &$function ($x, $y, $width, $data) for each portion of a span which intersects $region. $function must not change $region. $region->spans_intersect_foreach ([ 0,0,50, 20,20,100, 0,10,50 ], 0, # spans not sorted by y &my_callback, 'hello'); # userdata sub my_callback { my ($x, $y, $width, $userdata) = @_; print "$userdata: $x, $y, $width "; } $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-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::Gdk::Region(3pm)
Man Page