Next: Gnome2::AuthenticationManager | Previous: Gnome2::AppBar | [Gtk2-Perl - Table of Contents] | [Gtk2-Perl - Index] |
Gnome2::AppHelper
In Gnome2 GnomeUIInfo's are often used as a convenient way to create GUI's. In Perl, GnomeUIInfo's are always references to arrays of items. Items can either be references to hashs or references to arrays:
{ type => "item", label => "Quit", callback => sub { exit(0); } }
For the list of valid keys, see below.
type, label, hint, moreinfo, pixmap_type, pixmap_info, accelerator_key and modifiers.
The example from above would become:
[ "item", "Item", undef, sub { exit(0); }, undef, undef, undef, undef ]
To create multi-level structures, you use the "subtree" type and the "subtree" key, as in the following example:
{ type => "subtree", label => "Radio Items", subtree => [ { type => "radioitems", moreinfo => [ { type => "item", label => "A" }, { type => "item", label => "B" }, { type => "item", label => "C" }, { type => "item", label => "D" }, { type => "item", label => "E" } ] } ] }
Returns the GtkWidget and the position associated with the path.
Copyright (C) 2003-2004 by the gtk2-perl team.
This software is licensed under the LGPL. See Gnome2 for a full notice.