Next: Gtk2::Gdk::Geometry | Previous: Gtk2::Gdk::Event::WindowState | [Gtk2-Perl - Table of Contents] | [Gtk2-Perl - Index] |
Gtk2::Gdk::GC
Glib::Object +----Gtk2::Gdk::GC
Create and return a new GC.
$drawable
is used for the depth and the display
(Gtk2::Gdk::Display
) for the GC. The GC can then be used with any
drawable of the same depth on that display.
$values
is a hashref containing some of the following keys,
foreground Gtk2::Gdk::Color background Gtk2::Gdk::Color font Gtk2::Gdk::Font function Gtk2::Gdk::Function enum fill Gtk2::Gdk::Fill enum tile Gtk2::Gdk::Pixmap stipple Gtk2::Gdk::Pixmap clip_mask Gtk2::Gdk::Pixmap subwindow_mode Gtk2::Gdk::SubwindowMode enum ts_x_origin integer ts_y_origin integer clip_x_origin integer clip_y_origin integer graphics_exposures boolean integer 1 or 0 line_width integer line_style Gtk2::Gdk::LineStyle enum cap_style Gtk2::Gdk::CapStyle enum join_style Gtk2::Gdk::JoinStyle enum
Keys not given get default values. For the foreground
and
background
colour objects only the pixel
field is used; the red,
green and blue are ignored. For example
my $pixel = 0x123456; my $color = Gtk2::Gdk::Color->new (0,0,0, $pixel); my $gc = Gtk2::Gdk::GC->new_with_values ($win, { foreground => $color, line_style => 'on_off_dash' });
Sets the way dashed-lines are drawn. Lines will be drawn with alternating on and off segments of the lengths specified in list of dashes. The manner in which the on and off segments are drawn is determined by the line_style value of the GC.
$line_width (integer)
$line_style (Gtk2::Gdk::LineStyle)
$cap_style (Gtk2::Gdk::CapStyle)
$join_style (Gtk2::Gdk::JoinStyle)
Since: gtk+ 2.2
Return the attributes of $gc
in the form of a hashref with keys and
values as described with new
above.
In the foreground
and background
colour objects returned only
the pixel
fields are set; the red, green and blue fields are
garbage.
Set some of the attributes of $gc
. $values
is a hashref of keys
and values as described for new
and new_with_values
above.
Fields not present in $values
are left unchanged.
'not-last' / 'GDK_CAP_NOT_LAST'
'butt' / 'GDK_CAP_BUTT'
'round' / 'GDK_CAP_ROUND'
'projecting' / 'GDK_CAP_PROJECTING'
'solid' / 'GDK_SOLID'
'tiled' / 'GDK_TILED'
'stippled' / 'GDK_STIPPLED'
'opaque-stippled' / 'GDK_OPAQUE_STIPPLED'
'copy' / 'GDK_COPY'
'invert' / 'GDK_INVERT'
'xor' / 'GDK_XOR'
'clear' / 'GDK_CLEAR'
'and' / 'GDK_AND'
'and-reverse' / 'GDK_AND_REVERSE'
'and-invert' / 'GDK_AND_INVERT'
'noop' / 'GDK_NOOP'
'or' / 'GDK_OR'
'equiv' / 'GDK_EQUIV'
'or-reverse' / 'GDK_OR_REVERSE'
'copy-invert' / 'GDK_COPY_INVERT'
'or-invert' / 'GDK_OR_INVERT'
'nand' / 'GDK_NAND'
'nor' / 'GDK_NOR'
'set' / 'GDK_SET'
'solid' / 'GDK_LINE_SOLID'
'on-off-dash' / 'GDK_LINE_ON_OFF_DASH'
'double-dash' / 'GDK_LINE_DOUBLE_DASH'
Copyright (C) 2003-2008 by the gtk2-perl team.
This software is licensed under the LGPL. See Gtk2 for a full notice.