|
NAMEGtk2::AboutDialog - wrapper for GtkAboutDialogHIERARCHYGlib::Object +----Glib::InitiallyUnowned +----Gtk2::Object +----Gtk2::Widget +----Gtk2::Container +----Gtk2::Bin +----Gtk2::Window +----Gtk2::Dialog +----Gtk2::AboutDialog INTERFACESGlib::Object::_Unregistered::AtkImplementorIface Gtk2::Buildable METHODSwidget = Gtk2::AboutDialog->newlist = $about->get_artists$about->set_artists ($artist1, ...)
list = $about->get_authors$about->set_authors ($author1, ...)
string or undef = $about->get_comments$about->set_comments ($comments)
string or undef = $about->get_copyright$about->set_copyright ($copyright)
list = $about->get_documenters$about->set_documenters ($documenter1, ...)
Gtk2::AboutDialog->set_email_hook ($func, $data=undef)
string or undef = $about->get_license$about->set_license ($license)
pixbuf or undef = $about->get_logostring or undef = $about->get_logo_icon_name$about->set_logo_icon_name ($icon_name)
$about->set_logo ($logo)
string or undef = $about->get_program_name$about->set_program_name ($name)
Gtk2->show_about_dialog ($parent, $first_property_name, ...)
A convenience function for showing an application's about box. The constructed dialog is "transient for" $parent and associated with that widget so it's reused for future invocations. The dialog is non-modal and hidden by any response. (This is implemented as a rewrite of "gtk_show_about_dialog" since it's not easy to construct a varargs call to that actual function. The intention is to behave the same though.) string or undef = $about->get_translator_credits$about->set_translator_credits ($translator_credits)
Gtk2::AboutDialog->set_url_hook ($func, $data=undef)
string or undef = $about->get_version$about->set_version ($version)
string or undef = $about->get_websitestring or undef = $about->get_website_label$about->set_website_label ($website_label)
$about->set_website ($website)
boolean = $about->get_wrap_licenseSince: gtk+ 2.8$about->set_wrap_license ($wrap_license)
Since: gtk+ 2.8 URL AND EMAIL HOOKSWhen setting the website and email hooks for the Gtk2::AboutDialog widget, you should remember that the order is important: you should set the hook functions before setting the website and email URL properties, like this:$about_dialog->set_url_hook(\&launch_web_browser); $about_dialog->set_website($app_website); otherwise the AboutDialog will not display the website and the email addresses as clickable. PROPERTIES
SIGNALS
SEE ALSOGtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Bin, Gtk2::Window, Gtk2::DialogCOPYRIGHTCopyright (C) 2003-2011 by the gtk2-perl team.This software is licensed under the LGPL. See Gtk2 for a full notice.
Visit the GSP FreeBSD Man Page Interface. |