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::InfoBar(3) User Contributed Perl Documentation Gtk2::InfoBar(3)

Gtk2::InfoBar - wrapper for GtkInfoBar

  Glib::Object
  +----Glib::InitiallyUnowned
       +----Gtk2::Object
            +----Gtk2::Widget
                 +----Gtk2::Container
                      +----Gtk2::Box
                           +----Gtk2::HBox
                                +----Gtk2::InfoBar

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

... (list) of button-text => response-id pairs.

The multi-argument form takes the same list of text => response-id pairs as "$infobar->add_buttons". Do not pack widgets directly into the infobar; add them to "$infobar->get_content_area ()".

Here's a simple example:

 $infobar = Gtk2::InfoBar->new ('gtk-ok'     => 'accept',
                                'gtk-cancel' => 'reject');

... (list) of button-text => response-id pairs.

Alias for the multi-argument version of "Gtk2::InfoBar->new".

  • $child (Gtk2::Widget)
  • $response_id (Gtk2::ResponseType)

  • $button_text (string)
  • $response_id (scalar)

... (list) of button-text => response-id pairs

Like calling "$infobar->add_button" repeatedly, except you don't get the created widgets back. The buttons go from left to right, so the first button added will be the left-most one.

$response_id (Gtk2::ResponseType)

$type (Gtk2::MessageType)

$response_id (Gtk2::ResponseType)

  • $response_id (Gtk2::ResponseType)
  • $setting (boolean)

Enable or disable an action button by its $response_id .

'message-type' (Gtk2::MessageType : default "info" : readable / writable / construct / private / static-nick / static-blurb)
The type of message

'action-area-border' (integer : default 5 : readable / private / static-nick / static-blurb)
Width of border around the action area
'button-spacing' (integer : default 6 : readable / private / static-nick / static-blurb)
Spacing between buttons
'content-area-border' (integer : default 8 : readable / private / static-nick / static-blurb)
Width of border around the content area
'content-area-spacing' (integer : default 16 : readable / private / static-nick / static-blurb)
Spacing between elements of the area

close (Gtk2::InfoBar)
response (Gtk2::InfoBar, integer)

Note that currently in a Perl subclass of "Gtk2::InfoBar" a class closure, ie. class default signal handler, for the "response" signal will be called with the response ID just as an integer, it's not turned into an enum string like "ok" the way a handler setup with "signal_connect" receives.

Hopefully this will change in the future, so don't count on it. In the interim the easiest thing to do is install your default handler in "INIT_INSTANCE" with a "signal_connect". (The subtleties of what order handlers are called in will differ, but often that doesn't matter.)

  • 'info' / 'GTK_MESSAGE_INFO'
  • 'warning' / 'GTK_MESSAGE_WARNING'
  • 'question' / 'GTK_MESSAGE_QUESTION'
  • 'error' / 'GTK_MESSAGE_ERROR'
  • 'other' / 'GTK_MESSAGE_OTHER'

The response type is somewhat abnormal as far as gtk2-perl enums go. In C, this enum lists named, predefined integer values for a field that is other composed of whatever integer values you like. In Perl, we allow this to be either one of the string constants listed here or any positive integer value. For example, 'ok', 'cancel', 4, and 42 are all valid response ids. You cannot use arbitrary string values, they must be integers. Be careful, because unknown string values tend to be mapped to 0.
  • 'none' / 'GTK_RESPONSE_NONE'
  • 'reject' / 'GTK_RESPONSE_REJECT'
  • 'accept' / 'GTK_RESPONSE_ACCEPT'
  • 'delete-event' / 'GTK_RESPONSE_DELETE_EVENT'
  • 'ok' / 'GTK_RESPONSE_OK'
  • 'cancel' / 'GTK_RESPONSE_CANCEL'
  • 'close' / 'GTK_RESPONSE_CLOSE'
  • 'yes' / 'GTK_RESPONSE_YES'
  • 'no' / 'GTK_RESPONSE_NO'
  • 'apply' / 'GTK_RESPONSE_APPLY'
  • 'help' / 'GTK_RESPONSE_HELP'

Gtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Box, Gtk2::HBox

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.