1999-08-16 18:51:52 +00:00
|
|
|
<!-- ##### SECTION Title ##### -->
|
|
|
|
GtkStatusbar
|
|
|
|
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
2004-10-11 18:08:35 +00:00
|
|
|
Report messages of minor importance to the user
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
|
|
<para>
|
|
|
|
A #GtkStatusbar is usually placed along the bottom of an application's main
|
|
|
|
#GtkWindow. It may provide a regular commentary of the application's status
|
|
|
|
(as is usually the case in a web browser, for example), or may be used to
|
|
|
|
simply output a message when the status changes, (when an upload is complete
|
2001-10-10 21:52:42 +00:00
|
|
|
in an FTP client, for example).
|
Mass fixing of trivial doc bugs. (#63544, #57007, #64141, #63472, #57108,
* gtk/gtkiconfactory.c, gtk/gtktextbuffer.c, gtk/gtktreemodel.c,
gtk/gtkwindow.c, gtk/gtknotebook.c, gtk/gtkradiobutton.c,
gtk/gtktextiter.c, gtk/gtkdialog.c: Mass fixing of trivial doc bugs.
(#63544, #57007, #64141, #63472, #57108, #60818, #61562)
* gtk/tmpl/gtkaccellabel.sgml, gtk/tmpl/gtkcombo.sgml,
gtk/tmpl/gtkentry.sgml, gtk/tmpl/gtkhscrollbar.sgml,
gtk/tmpl/gtkvscrollbar.sgml, gtk/tmpl/gtktoolbar.sgml,
gtk/tmpl/gtkdialog.sgml, gtk/tmpl/gtkstatusbar.sgml:
Mass fixing of trivial doc bugs. (#55579, #56760, #58769, #55918,
#64154, #60422, #54697)
2001-11-10 22:06:44 +00:00
|
|
|
It may also have a resize grip (a triangular area in the lower right corner)
|
2001-10-10 21:52:42 +00:00
|
|
|
which can be clicked on to resize the window containing the statusbar.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2007-07-12 00:48:10 +00:00
|
|
|
Status bars in GTK+ maintain a stack of messages. The message at
|
1999-08-16 18:51:52 +00:00
|
|
|
the top of the each bar's stack is the one that will currently be displayed.
|
|
|
|
</para>
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
Any messages added to a statusbar's stack must specify a <emphasis>context
|
|
|
|
id</emphasis> that is used to uniquely identify the source of a message.
|
|
|
|
This context id can be generated by gtk_statusbar_get_context_id(), given a
|
|
|
|
message and the statusbar that it will be added to. Note that messages are
|
|
|
|
stored in a stack, and when choosing which message to display, the stack
|
|
|
|
structure is adhered to, regardless of the context identifier of a message.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
One could say that a statusbar maintains one stack of messages for display
|
|
|
|
purposes, but allows multiple message producers to maintain sub-stacks of
|
|
|
|
the messages they produced (via context ids).
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Status bars are created using gtk_statusbar_new().
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Messages are added to the bar's stack with gtk_statusbar_push().
|
|
|
|
</para>
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
The message at the top of the stack can be removed using gtk_statusbar_pop().
|
|
|
|
A message can be removed from anywhere in the stack if its message_id was
|
|
|
|
recorded at the time it was added. This is done using gtk_statusbar_remove().
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
|
|
|
2007-05-24 05:51:56 +00:00
|
|
|
|
2005-06-20 22:06:27 +00:00
|
|
|
<!-- ##### SECTION Stability_Level ##### -->
|
|
|
|
|
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
<!-- ##### STRUCT GtkStatusbar ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
Contains private data that should be modified with the functions described
|
|
|
|
below.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
|
2004-07-20 02:26:06 +00:00
|
|
|
<!-- ##### SIGNAL GtkStatusbar::text-popped ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
2004-07-20 02:26:06 +00:00
|
|
|
</para>
|
|
|
|
|
2007-05-24 05:51:56 +00:00
|
|
|
@statusbar:
|
|
|
|
@context_id:
|
2007-01-07 05:34:40 +00:00
|
|
|
@text:
|
2004-07-20 02:26:06 +00:00
|
|
|
|
|
|
|
<!-- ##### SIGNAL GtkStatusbar::text-pushed ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
2004-07-20 02:26:06 +00:00
|
|
|
</para>
|
|
|
|
|
2007-01-07 05:34:40 +00:00
|
|
|
@statusbar:
|
2007-05-24 05:51:56 +00:00
|
|
|
@context_id:
|
2007-01-07 05:34:40 +00:00
|
|
|
@text:
|
2004-07-20 02:26:06 +00:00
|
|
|
|
|
|
|
<!-- ##### ARG GtkStatusbar:has-resize-grip ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<!-- ##### ARG GtkStatusbar:shadow-type ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
<!-- ##### FUNCTION gtk_statusbar_new ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2007-01-07 05:34:40 +00:00
|
|
|
@Returns:
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_statusbar_get_context_id ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2007-01-07 05:34:40 +00:00
|
|
|
@statusbar:
|
2007-05-24 05:51:56 +00:00
|
|
|
@context_description:
|
2007-01-07 05:34:40 +00:00
|
|
|
@Returns:
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_statusbar_push ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2007-05-24 05:51:56 +00:00
|
|
|
@statusbar:
|
|
|
|
@context_id:
|
|
|
|
@text:
|
|
|
|
@Returns:
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_statusbar_pop ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2007-01-07 05:34:40 +00:00
|
|
|
@statusbar:
|
2007-05-24 05:51:56 +00:00
|
|
|
@context_id:
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_statusbar_remove ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</para>
|
|
|
|
|
2007-05-24 05:51:56 +00:00
|
|
|
@statusbar:
|
|
|
|
@context_id:
|
|
|
|
@message_id:
|
1999-08-16 18:51:52 +00:00
|
|
|
|
|
|
|
|
2001-04-17 18:12:46 +00:00
|
|
|
<!-- ##### FUNCTION gtk_statusbar_set_has_resize_grip ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
2001-04-17 18:12:46 +00:00
|
|
|
</para>
|
|
|
|
|
2007-05-24 05:51:56 +00:00
|
|
|
@statusbar:
|
2007-01-07 05:34:40 +00:00
|
|
|
@setting:
|
2001-04-17 18:12:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_statusbar_get_has_resize_grip ##### -->
|
|
|
|
<para>
|
2007-01-07 05:34:40 +00:00
|
|
|
|
2001-04-17 18:12:46 +00:00
|
|
|
</para>
|
|
|
|
|
2007-05-24 05:51:56 +00:00
|
|
|
@statusbar:
|
|
|
|
@Returns:
|
2001-04-17 18:12:46 +00:00
|
|
|
|
|
|
|
|
2010-01-11 18:57:21 +00:00
|
|
|
<!-- ##### FUNCTION gtk_statusbar_get_message_area ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@statusbar:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|