NAME
Gtk2::Ex::WidgetBits - miscellaneous Gtk widget helpers
SYNOPSIS
use Gtk2::Ex::WidgetBits;
FUNCTIONS
Widget Position
($x,$y) = Gtk2::Ex::WidgetBits::get_root_position ($widget)-
Return the position of the top left corner of
$widgetin root window coordinates. If$widgetis unrealized the return is an empty list().This uses
Gtk2::Ex::GdkBits::window_get_root_positionso takes the most recently recorded window positions rather than making an X server round-trip. Gtk2::Ex::WidgetBits::warp_pointer ($widget, $x, $y)-
Warp, ie. forcibly move, the mouse pointer to
$x,$yin$widgetcoordinates (ie. relative to the widget's top-left corner).$widgetmust be realized, since otherwise it doesn't have a screen position.See Gtk2::Gdk::Display for the basic
warp_pointerin root window coordinates. The code here converts usingget_root_positionabove, so there's no server round-trip. Warping is available in Gtk 2.2 up.The underlying
XWarpPointeroperates relative to any window, not just the root, but Gdk doesn't make that feature available. ($x,$y) = Gtk2::Ex::WidgetBits::xy_root_to_widget ($widget, $root_x,$root_y)-
Convert a root window X,Y position to widget coordinates. If
$widgetis not realized then it doesn't have a screen position and the return is an empty list.if (my ($x,$y) = Gtk2::Ex::WidgetBits::xy_root_to_widget ($widget, $x_root, $y_root)) { # widget $x,$y } else { # $widget is not realized, no values }
Widget Distance
$mm = Gtk2::Ex::WidgetBits::xy_distance_mm ($widget, $x1,$y1, $x2,$y2)-
Return the distance in millimetres between pixel points
$x1,$y1and$x2,$y2in$widget.Pixels are converted to millimetres using the screen size from
Gtk2::Gdk::Screen. If$widgetisn't yet under a toplevelGtk2::Window(ie.$widget->has_screenfalse) then currently an error is thrown. In Gtk 2.0.x there's only ever one screen so it's always used.
SEE ALSO
Gtk2::Ex::EntryBits, Gtk2::Ex::GdkBits, Gtk2::Ex::MenuBits, Gtk2::Ex::TextBufferBits, Gtk2::Ex::TreeModelBits, Gtk2::Ex::TreeModel::ImplBits, Gtk2::Ex::TreeViewBits, Gtk2::Ex::Units
Gtk2::Ex::ActionTooltips, Gtk2::Ex::KeySnooper, Gtk2::Ex::SyncCall, Gtk2::Ex::Statusbar::MessageUntilKey, Gtk2::Ex::TreeModelFilter::Change, Test::Weaken::Gtk2
Gtk2::Widget, Gtk2::Ex::WidgetCursor.
HOME PAGE
http://user42.tuxfamily.org/gtk2-ex-widgetbits/index.html
LICENSE
Copyright 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/.