GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Gtk2::Widget(3) User Contributed Perl Documentation Gtk2::Widget(3)

Gtk2::Widget - wrapper for GtkWidget

  Glib::Object
  +----Glib::InitiallyUnowned
       +----Gtk2::Object
            +----Gtk2::Widget

  Glib::Object::_Unregistered::AtkImplementorIface
  Gtk2::Buildable

"EVENT_STOP" and "EVENT_PROPAGATE" are designed for the return from widget event signal handlers and similar, being true to stop or false to propagate. The names can help you avoid confusion over which way is true and which is false. (You can also remember the return as meaning "handled", which is the jargon in a few other signal handler types.)

    Gtk2::EVENT_STOP         # true
    Gtk2::EVENT_PROPAGATE    # false

  • $accel_path (string or undef)
  • $accel_group (Gtk2::AccelGroup or undef)

Since: gtk+ 2.10

This function works by emitting an action signal nominated by the various widget subclasses. The signal is normally called "activate", but it doesn't have to be.

Currently if you make a widget subclass in Perl there's no way to nominate a signal to be emitted by "$widget->activate". A signal merely named "activate" is not automatically hooked up.

  • $accel_signal (string)
  • $accel_group (Gtk2::AccelGroup)
  • $accel_key (integer)
  • $accel_mods (Gtk2::Gdk::ModifierType)
  • $flags (Gtk2::AccelFlags)

$events (Gtk2::Gdk::EventMask)

$label (Gtk2::Widget)

Since: gtk+ 2.4

Return the current allocated size and position of $widget within its parent widget. The allocated size is not necessarily the same as the requested size.

The returned rect object points into $widget and can only be used as long as $widget exists.

Since: gtk+ 2.18

$allocation (Gtk2::Gdk::Rectangle)

Since: gtk+ 2.18

$ancestor_package (string)

Since: gtk+ 2.18

$app_paintable (boolean)

$signal_id (integer)

Since: gtk+ 2.4

Since: gtk+ 2.18

$can_default (boolean)

Since: gtk+ 2.18

Since: gtk+ 2.18

$can_focus (boolean)

Since: gtk+ 2.18

$direction (Gtk2::DirectionType)

$child_property (string)

This function is only for use in widget implementations. Obtains "$widget->requisition", unless someone has forced a particular geometry on the widget (e.g., with "set_usize()", in which case it returns that geometry instead of the widget's requisition.

This function differs from size_request() in that it retrieves the last size request value from "$widget->requisition", while "size_request()" actually calls the "size_request" virtual method (that is, emits the "size-request" signal) on the $widget to compute the size request and fill in "$widget->requisition", and only then returns "$widget->requisition".

Because this function does not call the "size_request" method, it can only be used when you know that "$widget->requisition" is up-to-date. In general, only container implementations have this information; applications should use "size_request ()".

$is_visible (boolean)

$selection (Gtk2::Gdk::Atom)

Since: gtk+ 2.2

$colormap (Gtk2::Gdk::Colormap)

$name (string)

$text (string or undef)

$colormap (Gtk2::Gdk::Colormap)

$dir (Gtk2::TextDirection)

$dir (Gtk2::TextDirection)

Since: gtk+ 2.2

Since: gtk+ 2.18

$double_buffered (boolean)

  • $targets (Gtk2::TargetList)
  • $actions (Gtk2::Gdk::DragAction)
  • $button (integer)
  • $event (Gtk2::Gdk::Event)

  • $start_x (integer)
  • $start_y (integer)
  • $current_x (integer)
  • $current_y (integer)

Since: gtk+ 2.6

Since: gtk+ 2.6

Since: gtk+ 2.6

  • $context (Gtk2::Gdk::DragContext)
  • $target_list (Gtk2::TargetList or undef)

Since: gtk+ 2.10

  • $flags (Gtk2::DestDefaults)
  • $actions (Gtk2::Gdk::DragAction)
  • ... (list) of Gtk2::TargetEntry's

  • $proxy_window (Gtk2::Gdk::Window)
  • $protocol (Gtk2::Gdk::DragProtocol)
  • $use_coordinates (boolean)

$target_list (Gtk2::TargetList or undef)

$track_motion (boolean)

Since: gtk+ 2.10

  • $context (Gtk2::Gdk::DragContext)
  • $target (Gtk2::Gdk::Atom)
  • $time_ (unsigned)

Since: gtk+ 2.6

Since: gtk+ 2.6

Since: gtk+ 2.6

Since: gtk+ 2.4

  • $start_button_mask (Gtk2::Gdk::ModifierType)
  • $actions (Gtk2::Gdk::DragAction)
  • ... (list) of Gtk2::TargetEntry's

  • $colormap (Gtk2::Gdk::Colormap or undef)
  • $pixmap (Gtk2::Gdk::Pixmap or undef)
  • $mask (Gtk2::Gdk::Bitmap or undef)

$icon_name (string)

Since: gtk+ 2.8

$pixbuf (Gtk2::Gdk::Pixbuf or undef)

$stock_id (string)

$target_list (Gtk2::TargetList or undef)

Since: gtk+ 2.4

Since: gtk+ 2.12

$event (Gtk2::Gdk::Event)

This rarely-used function emits an event signal on $widget. Don't use this to synthesize events; use "Gtk2->main_do_event" instead. Don't synthesize expose events; use "$gdkwindow->invalidate_rect" instead. Basically, the main use for this in gtk2-perl will be to pass motion notify events to rulers from other widgets.

$events (Gtk2::Gdk::EventMask)

$mode (Gtk2::Gdk::ExtensionMode)

$name (string)

Return a "Glib::ParamSpec" for style property $name on widget $widget_or_class_name. If there's no property $name then return "undef". See Glib::Object "list_properties" for the fields in a ParamSpec.

Since: gtk+ 2.2

$flags (Gtk2::WidgetFlags)

Since: gtk+ 2.20

Since: gtk+ 2.2

Since: gtk+ 2.12

$has_tooltip (boolean)

Since: gtk+ 2.12

Since: gtk+ 2.18

$has_window (boolean)

Since: gtk+ 2.18

  • $widget (Gtk2::Widget)
  • ... (list) other arguments ignored (event etc)

This is a helper function intended to be used as the callback for the "delete-event" signal:

  $wiget->signal_connect (
    delete_event => \&Gtk2::Widget::hide_on_delete);

  • $shape_mask (Gtk2::Gdk::Bitmap or undef)
  • $offset_x (integer)
  • $offset_y (integer)

Since: gtk+ 2.10

$area (Gtk2::Gdk::Rectangle)

Returns undef if $widget and $area do not intersect.

$ancestor (Gtk2::Widget)

Since: gtk+ 2.10

Since: gtk+ 2.18

Since: gtk+ 2.18

$direction (Gtk2::DirectionType)

Since: gtk+ 2.12

Since: gtk+ 2.4

Return a list of "Glib::ParamSpec" objects which are the style properties available on $widget_or_class_name. See Glib::Object "list_properties" for the fields in a ParamSpec.

Since: gtk+ 2.2

Since: gtk+ 2.20

$mapped (boolean)

Since: gtk+ 2.20

$group_cycling (boolean)

  • $state (Gtk2::StateType)
  • $color (Gtk2::Gdk::Color or undef)

  • $state (Gtk2::StateType)
  • $color (Gtk2::Gdk::Color or undef)

  • $primary (Gtk2::Gdk::Color or undef)
  • $secondary (Gtk2::Gdk::Color or undef)

Since: gtk+ 2.12

  • $state (Gtk2::StateType)
  • $color (Gtk2::Gdk::Color or undef)

$font_desc (Pango::FontDescription or undef)

$style (Gtk2::RcStyle)

  • $state (Gtk2::StateType)
  • $color (Gtk2::Gdk::Color or undef)

$name (string)

Since: gtk+ 2.4

$no_show_all (boolean)

Since: gtk+ 2.4

$parent (Gtk2::Widget)

$parent_window (Gtk2::Gdk::Window)

$event (Gtk2::Gdk::Event)

From gtk+'s API documentation:

You most likely don't want to use any of these functions; synthesizing events is rarely needed. Consider asking on the mailing list for better ways to achieve your goals. For example, use Gtk2::Gdk::invalidate_rect or Gtk2::Widget::queue_draw instead of making up expose events.

$cmap (Gtk2::Gdk::Colormap)

  • $x (integer)
  • $y (integer)
  • $width (integer)
  • $height (integer)

Since: gtk+ 2.4

Since: gtk+ 2.20

$realized (boolean)

Since: gtk+ 2.20

Since: gtk+ 2.18

$receives_default (boolean)

Since: gtk+ 2.18

$redraw_on_allocate (boolean)

$region (Gtk2::Gdk::Region)

  • $accel_group (Gtk2::AccelGroup)
  • $accel_key (integer)
  • $accel_mods (Gtk2::Gdk::ModifierType)

$label (Gtk2::Widget)

Since: gtk+ 2.4

  • $stock_id (string)
  • $size (Gtk2::IconSize)
  • $detail (string)

$new_parent (Gtk2::Widget)

Return the currently desired width and height of $widget. Basically this is the result from the last "size_request" call on $widget, and therefore may not be up-to-date if $widget has asked for a resize but its container parent has not yet called "size_request".

The returned requisition object points into $widget and can only be used as long as $widget exists.

Since: gtk+ 2.20

Since: gtk+ 2.2

Since: gtk+ 2.2

  • $hadjustment (Gtk2::Adjustment or undef)
  • $vadjustment (Gtk2::Adjustment or undef)

This function works by emitting a setter signal nominated by the various widget types which have "native" scrolling. The signal is normally called "set-scroll-adjustments", but it doesn't have to be.

If you make a widget subclass in Perl and create a signal in it called "set-scroll-adjustments" taking two Gtk2::Adjustment parameters then the subclassing automatically hooks that up to be emitted by "$widget->set_scroll_adjustments". (Your "class closure" default handler code should then store the adjustment objects somewhere.)

  • $selection (Gtk2::Gdk::Atom)
  • $target (Gtk2::Gdk::Atom)
  • $info (integer)

  • $selection (Gtk2::Gdk::Atom)
  • ... (list) of Gtk2::TargetEntry's

$selection (Gtk2::Gdk::Atom)

  • $selection (Gtk2::Gdk::Atom)
  • $target (Gtk2::Gdk::Atom)
  • $time_ (unsigned)

$event (Gtk2::Gdk::Event)

Since: gtk+ 2.22

Since: gtk+ 2.18

$sensitive (boolean)

  • $shape_mask (Gtk2::Gdk::Bitmap or undef)
  • $offset_x (integer)
  • $offset_y (integer)

$allocation (Gtk2::Gdk::Rectangle)

This function is typically used when implementing a GtkContainer subclass. Obtains the preferred size of a widget. The container uses this information to arrange its child widgets and decide what size allocations to give them with size_allocate ().

You can also call this function from an application, with some caveats. Most notably, getting a size request requires the widget to be associated with a screen, because font information may be needed. Multihead-aware applications should keep this in mind.

Also remember that the size request is not necessarily the size a widget will actually be allocated.

See also get_child_requisition ()

Gets the size request that was explicitly set for the widget using "set_size_request()". A value of -1 for width or height indicates that the dimension has not been explicitly set and the natural requisition of the widget will be used instead. See set_size_request(). To get the size a widget will actually use, call size_request() instead of this function.

  • $width (integer)
  • $height (integer)

$clip_rect (Gtk2::Gdk::Rectangle or undef)

Since: gtk+ 2.14

Since: gtk+ 2.18

$state (Gtk2::StateType)

Since: gtk+ 2.20

  • $first_property_name (string)
  • ... (list) 0 or more additional property names

Returns the values of the requested style properties.

Since: gtk+ 2.2

  • $first_property_name (string)
  • ... (list) 0 or more additional property names

An alias for style_get.

Since: gtk+ 2.2

$style (Gtk2::Style or undef)

Since: gtk+ 2.12

$markup (string or undef)

Since: gtk+ 2.12

Since: gtk+ 2.12

$text (string or undef)

Since: gtk+ 2.12

Since: gtk+ 2.12

$custom_window (Gtk2::Window or undef)

Since: gtk+ 2.12

  • $dest_widget (Gtk2::Widget)
  • $src_x (integer)
  • $src_y (integer)

Returns an empty list if either widget is not realized or if they do not share a common ancestor.

Since: gtk+ 2.12

$flags (Gtk2::WidgetFlags)

Since: gtk+ 2.18

$visible (boolean)

Since: gtk+ 2.18

$new (Gtk2::Gdk::Window or undef)

Since: gtk+ 2.14

$window (Gtk2::Gdk::Window)

Since: gtk+ 2.18

'app-paintable' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the application will paint directly on the widget
'can-default' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the widget can be the default widget
'can-focus' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the widget can accept the input focus
'composite-child' (boolean : default false : readable / private / static-nick / static-blurb)
Whether the widget is part of a composite widget
'double-buffered' (boolean : default true : readable / writable / private / static-nick / static-blurb)
Whether or not the widget is double buffered
'events' (Gtk2::Gdk::EventMask : default structure-mask : readable / writable / private / static-nick / static-blurb)
The event mask that decides what kind of GdkEvents this widget gets
'extension-events' (Gtk2::Gdk::ExtensionMode : default "none" : readable / writable / private / static-nick / static-blurb)
The mask that decides what kind of extension events this widget gets
'has-default' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the widget is the default widget
'has-focus' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the widget has the input focus
'has-tooltip' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether this widget has a tooltip
'height-request' (integer : default -1 : readable / writable / private / static-nick / static-blurb)
Override for height request of the widget, or -1 if natural request should be used
'is-focus' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the widget is the focus widget within the toplevel
'name' (string : default undef : readable / writable / private / static-nick / static-blurb)
The name of the widget
'no-show-all' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether gtk_widget_show_all() should not affect this widget
'parent' (Gtk2::Container : default undef : readable / writable / private / static-nick / static-blurb)
The parent widget of this widget. Must be a Container widget
'receives-default' (boolean : default false : readable / writable / private / static-nick / static-blurb)
If TRUE, the widget will receive the default action when it is focused
'sensitive' (boolean : default true : readable / writable / private / static-nick / static-blurb)
Whether the widget responds to input
'style' (Gtk2::Style : default undef : readable / writable / private / static-nick / static-blurb)
The style of the widget, which contains information about how it will look (colors etc)
'tooltip-markup' (string : default undef : readable / writable / private / static-nick / static-blurb)
The contents of the tooltip for this widget
'tooltip-text' (string : default undef : readable / writable / private / static-nick / static-blurb)
The contents of the tooltip for this widget
'visible' (boolean : default false : readable / writable / private / static-nick / static-blurb)
Whether the widget is visible
'width-request' (integer : default -1 : readable / writable / private / static-nick / static-blurb)
Override for width request of the widget, or -1 if natural request should be used
'window' (Gtk2::Gdk::Window : default undef : readable / private / static-nick / static-blurb)
The widget's window if it is realized

'cursor-aspect-ratio' (float : default 0.04 : readable / private / static-nick / static-blurb)
Aspect ratio with which to draw insertion cursor
'cursor-color' (Gtk2::Gdk::Color : default undef : readable / private / static-nick / static-blurb)
Color with which to draw insertion cursor
'draw-border' (Gtk2::Border : default undef : readable / private / static-nick / static-blurb)
Size of areas outside the widget's allocation to draw
'focus-line-pattern' (string : default "\1\1" : readable / private / static-nick / static-blurb)
Dash pattern used to draw the focus indicator
'focus-line-width' (integer : default 1 : readable / private / static-nick / static-blurb)
Width, in pixels, of the focus indicator line
'focus-padding' (integer : default 1 : readable / private / static-nick / static-blurb)
Width, in pixels, between focus indicator and the widget 'box'
'interior-focus' (boolean : default true : readable / private / static-nick / static-blurb)
Whether to draw the focus indicator inside widgets
'link-color' (Gtk2::Gdk::Color : default undef : readable / private / static-nick / static-blurb)
Color of unvisited links
'scroll-arrow-hlength' (integer : default 16 : readable / private / static-nick / static-blurb)
The length of horizontal scroll arrows
'scroll-arrow-vlength' (integer : default 16 : readable / private / static-nick / static-blurb)
The length of vertical scroll arrows
'secondary-cursor-color' (Gtk2::Gdk::Color : default undef : readable / private / static-nick / static-blurb)
Color with which to draw the secondary insertion cursor when editing mixed right-to-left and left-to-right text
'separator-height' (integer : default 0 : readable / private / static-nick / static-blurb)
The height of separators if "wide-separators" is TRUE
'separator-width' (integer : default 0 : readable / private / static-nick / static-blurb)
The width of separators if wide-separators is TRUE
'tooltip-alpha' (Glib::UChar : default 255 : readable / private / static-nick / static-blurb)
The opacity to be used when drawing tooltips
'tooltip-radius' (Glib::UInt : default 0 : readable / private / static-nick / static-blurb)
The radius to be used when drawing tooltips
'visited-link-color' (Gtk2::Gdk::Color : default undef : readable / private / static-nick / static-blurb)
Color of visited links
'wide-separators' (boolean : default false : readable / private / static-nick / static-blurb)
Whether separators have configurable width and should be drawn using a box instead of a line

accel-closures-changed (Gtk2::Widget)
boolean = button-press-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = button-release-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = can-activate-accel (Gtk2::Widget, Glib::UInt)
child-notify (Gtk2::Widget, Glib::ParamSpec)
boolean = client-event (Gtk2::Widget, Gtk2::Gdk::Event)
composited-changed (Gtk2::Widget)
boolean = configure-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = damage-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = delete-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = destroy-event (Gtk2::Widget, Gtk2::Gdk::Event)
direction-changed (Gtk2::Widget, Gtk2::TextDirection)
drag-begin (Gtk2::Widget, Gtk2::Gdk::DragContext)
drag-data-delete (Gtk2::Widget, Gtk2::Gdk::DragContext)
drag-data-get (Gtk2::Widget, Gtk2::Gdk::DragContext, Gtk2::SelectionData, Glib::UInt, Glib::UInt)
drag-data-received (Gtk2::Widget, Gtk2::Gdk::DragContext, integer, integer, Gtk2::SelectionData, Glib::UInt, Glib::UInt)
boolean = drag-drop (Gtk2::Widget, Gtk2::Gdk::DragContext, integer, integer, Glib::UInt)
drag-end (Gtk2::Widget, Gtk2::Gdk::DragContext)
boolean = drag-failed (Gtk2::Widget, Gtk2::Gdk::DragContext, Gtk2::DragResult)
drag-leave (Gtk2::Widget, Gtk2::Gdk::DragContext, Glib::UInt)
boolean = drag-motion (Gtk2::Widget, Gtk2::Gdk::DragContext, integer, integer, Glib::UInt)
boolean = enter-notify-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = event (Gtk2::Widget, Gtk2::Gdk::Event)
event-after (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = expose-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = focus (Gtk2::Widget, Gtk2::DirectionType)
boolean = focus-in-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = focus-out-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = grab-broken-event (Gtk2::Widget, Gtk2::Gdk::Event)
grab-focus (Gtk2::Widget)
grab-notify (Gtk2::Widget, boolean)
hide (Gtk2::Widget)
hierarchy-changed (Gtk2::Widget, Gtk2::Widget)
boolean = key-press-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = key-release-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = keynav-failed (Gtk2::Widget, Gtk2::DirectionType)
boolean = leave-notify-event (Gtk2::Widget, Gtk2::Gdk::Event)
map (Gtk2::Widget)
boolean = map-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = mnemonic-activate (Gtk2::Widget, boolean)
boolean = motion-notify-event (Gtk2::Widget, Gtk2::Gdk::Event)
move-focus (Gtk2::Widget, Gtk2::DirectionType)
boolean = no-expose-event (Gtk2::Widget, Gtk2::Gdk::Event)
parent-set (Gtk2::Widget, Gtk2::Widget)
boolean = popup-menu (Gtk2::Widget)
boolean = property-notify-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = proximity-in-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = proximity-out-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = query-tooltip (Gtk2::Widget, integer, integer, boolean, Gtk2::Tooltip)
realize (Gtk2::Widget)
screen-changed (Gtk2::Widget, Gtk2::Gdk::Screen)
boolean = scroll-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = selection-clear-event (Gtk2::Widget, Gtk2::Gdk::Event)
selection-get (Gtk2::Widget, Gtk2::SelectionData, Glib::UInt, Glib::UInt)
boolean = selection-notify-event (Gtk2::Widget, Gtk2::Gdk::Event)
selection-received (Gtk2::Widget, Gtk2::SelectionData, Glib::UInt)
boolean = selection-request-event (Gtk2::Widget, Gtk2::Gdk::Event)
show (Gtk2::Widget)
boolean = show-help (Gtk2::Widget, Gtk2::WidgetHelpType)
size-allocate (Gtk2::Widget, Gtk2::Gdk::Rectangle)
size-request (Gtk2::Widget, Gtk2::Requisition)
state-changed (Gtk2::Widget, Gtk2::StateType)
style-set (Gtk2::Widget, Gtk2::Style)
unmap (Gtk2::Widget)
boolean = unmap-event (Gtk2::Widget, Gtk2::Gdk::Event)
unrealize (Gtk2::Widget)
boolean = visibility-notify-event (Gtk2::Widget, Gtk2::Gdk::Event)
boolean = window-state-event (Gtk2::Widget, Gtk2::Gdk::Event)

  • 'visible' / 'GTK_ACCEL_VISIBLE'
  • 'locked' / 'GTK_ACCEL_LOCKED'
  • 'mask' / 'GTK_ACCEL_MASK'

  • 'motion' / 'GTK_DEST_DEFAULT_MOTION'
  • 'highlight' / 'GTK_DEST_DEFAULT_HIGHLIGHT'
  • 'drop' / 'GTK_DEST_DEFAULT_DROP'
  • 'all' / 'GTK_DEST_DEFAULT_ALL'

  • 'tab-forward' / 'GTK_DIR_TAB_FORWARD'
  • 'tab-backward' / 'GTK_DIR_TAB_BACKWARD'
  • 'up' / 'GTK_DIR_UP'
  • 'down' / 'GTK_DIR_DOWN'
  • 'left' / 'GTK_DIR_LEFT'
  • 'right' / 'GTK_DIR_RIGHT'

  • 'success' / 'GTK_DRAG_RESULT_SUCCESS'
  • 'no-target' / 'GTK_DRAG_RESULT_NO_TARGET'
  • 'user-cancelled' / 'GTK_DRAG_RESULT_USER_CANCELLED'
  • 'timeout-expired' / 'GTK_DRAG_RESULT_TIMEOUT_EXPIRED'
  • 'grab-broken' / 'GTK_DRAG_RESULT_GRAB_BROKEN'
  • 'error' / 'GTK_DRAG_RESULT_ERROR'

  • 'default' / 'GDK_ACTION_DEFAULT'
  • 'copy' / 'GDK_ACTION_COPY'
  • 'move' / 'GDK_ACTION_MOVE'
  • 'link' / 'GDK_ACTION_LINK'
  • 'private' / 'GDK_ACTION_PRIVATE'
  • 'ask' / 'GDK_ACTION_ASK'

  • 'motif' / 'GDK_DRAG_PROTO_MOTIF'
  • 'xdnd' / 'GDK_DRAG_PROTO_XDND'
  • 'rootwin' / 'GDK_DRAG_PROTO_ROOTWIN'
  • 'none' / 'GDK_DRAG_PROTO_NONE'
  • 'win32-dropfiles' / 'GDK_DRAG_PROTO_WIN32_DROPFILES'
  • 'ole2' / 'GDK_DRAG_PROTO_OLE2'
  • 'local' / 'GDK_DRAG_PROTO_LOCAL'

  • 'exposure-mask' / 'GDK_EXPOSURE_MASK'
  • 'pointer-motion-mask' / 'GDK_POINTER_MOTION_MASK'
  • 'pointer-motion-hint-mask' / 'GDK_POINTER_MOTION_HINT_MASK'
  • 'button-motion-mask' / 'GDK_BUTTON_MOTION_MASK'
  • 'button1-motion-mask' / 'GDK_BUTTON1_MOTION_MASK'
  • 'button2-motion-mask' / 'GDK_BUTTON2_MOTION_MASK'
  • 'button3-motion-mask' / 'GDK_BUTTON3_MOTION_MASK'
  • 'button-press-mask' / 'GDK_BUTTON_PRESS_MASK'
  • 'button-release-mask' / 'GDK_BUTTON_RELEASE_MASK'
  • 'key-press-mask' / 'GDK_KEY_PRESS_MASK'
  • 'key-release-mask' / 'GDK_KEY_RELEASE_MASK'
  • 'enter-notify-mask' / 'GDK_ENTER_NOTIFY_MASK'
  • 'leave-notify-mask' / 'GDK_LEAVE_NOTIFY_MASK'
  • 'focus-change-mask' / 'GDK_FOCUS_CHANGE_MASK'
  • 'structure-mask' / 'GDK_STRUCTURE_MASK'
  • 'property-change-mask' / 'GDK_PROPERTY_CHANGE_MASK'
  • 'visibility-notify-mask' / 'GDK_VISIBILITY_NOTIFY_MASK'
  • 'proximity-in-mask' / 'GDK_PROXIMITY_IN_MASK'
  • 'proximity-out-mask' / 'GDK_PROXIMITY_OUT_MASK'
  • 'substructure-mask' / 'GDK_SUBSTRUCTURE_MASK'
  • 'scroll-mask' / 'GDK_SCROLL_MASK'
  • 'all-events-mask' / 'GDK_ALL_EVENTS_MASK'

  • 'none' / 'GDK_EXTENSION_EVENTS_NONE'
  • 'all' / 'GDK_EXTENSION_EVENTS_ALL'
  • 'cursor' / 'GDK_EXTENSION_EVENTS_CURSOR'

  • 'shift-mask' / 'GDK_SHIFT_MASK'
  • 'lock-mask' / 'GDK_LOCK_MASK'
  • 'control-mask' / 'GDK_CONTROL_MASK'
  • 'mod1-mask' / 'GDK_MOD1_MASK'
  • 'mod2-mask' / 'GDK_MOD2_MASK'
  • 'mod3-mask' / 'GDK_MOD3_MASK'
  • 'mod4-mask' / 'GDK_MOD4_MASK'
  • 'mod5-mask' / 'GDK_MOD5_MASK'
  • 'button1-mask' / 'GDK_BUTTON1_MASK'
  • 'button2-mask' / 'GDK_BUTTON2_MASK'
  • 'button3-mask' / 'GDK_BUTTON3_MASK'
  • 'button4-mask' / 'GDK_BUTTON4_MASK'
  • 'button5-mask' / 'GDK_BUTTON5_MASK'
  • 'super-mask' / 'GDK_SUPER_MASK'
  • 'hyper-mask' / 'GDK_HYPER_MASK'
  • 'meta-mask' / 'GDK_META_MASK'
  • 'release-mask' / 'GDK_RELEASE_MASK'
  • 'modifier-mask' / 'GDK_MODIFIER_MASK'

  • 'invalid' / 'GTK_ICON_SIZE_INVALID'
  • 'menu' / 'GTK_ICON_SIZE_MENU'
  • 'small-toolbar' / 'GTK_ICON_SIZE_SMALL_TOOLBAR'
  • 'large-toolbar' / 'GTK_ICON_SIZE_LARGE_TOOLBAR'
  • 'button' / 'GTK_ICON_SIZE_BUTTON'
  • 'dnd' / 'GTK_ICON_SIZE_DND'
  • 'dialog' / 'GTK_ICON_SIZE_DIALOG'

  • 'normal' / 'GTK_STATE_NORMAL'
  • 'active' / 'GTK_STATE_ACTIVE'
  • 'prelight' / 'GTK_STATE_PRELIGHT'
  • 'selected' / 'GTK_STATE_SELECTED'
  • 'insensitive' / 'GTK_STATE_INSENSITIVE'

  • 'none' / 'GTK_TEXT_DIR_NONE'
  • 'ltr' / 'GTK_TEXT_DIR_LTR'
  • 'rtl' / 'GTK_TEXT_DIR_RTL'

  • 'toplevel' / 'GTK_TOPLEVEL'
  • 'no-window' / 'GTK_NO_WINDOW'
  • 'realized' / 'GTK_REALIZED'
  • 'mapped' / 'GTK_MAPPED'
  • 'visible' / 'GTK_VISIBLE'
  • 'sensitive' / 'GTK_SENSITIVE'
  • 'parent-sensitive' / 'GTK_PARENT_SENSITIVE'
  • 'can-focus' / 'GTK_CAN_FOCUS'
  • 'has-focus' / 'GTK_HAS_FOCUS'
  • 'can-default' / 'GTK_CAN_DEFAULT'
  • 'has-default' / 'GTK_HAS_DEFAULT'
  • 'has-grab' / 'GTK_HAS_GRAB'
  • 'rc-style' / 'GTK_RC_STYLE'
  • 'composite-child' / 'GTK_COMPOSITE_CHILD'
  • 'no-reparent' / 'GTK_NO_REPARENT'
  • 'app-paintable' / 'GTK_APP_PAINTABLE'
  • 'receives-default' / 'GTK_RECEIVES_DEFAULT'
  • 'double-buffered' / 'GTK_DOUBLE_BUFFERED'
  • 'no-show-all' / 'GTK_NO_SHOW_ALL'

  • 'tooltip' / 'GTK_WIDGET_HELP_TOOLTIP'
  • 'whats-this' / 'GTK_WIDGET_HELP_WHATS_THIS'

Gtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::TargetEntry

Copyright (C) 2003-2011 by the gtk2-perl team.

This software is licensed under the LGPL. See Gtk2 for a full notice.

2022-06-07 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.