Package: gtk
Class gtk-statusbar
Superclassesgtk-box, gtk-container, gtk-widget, gtk-buildable, gtk-orientable, g-object, common-lisp:standard-object, common-lisp:t Documented Subclasses
None
Direct Slots
None
Details A gtk-statusbar widget is usually placed along the bottom of the main gtk-window widget of the application. It may provide a regular
commentary of the status of the application 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 in an FTP client, for example. Statusbars in GTK maintain a stack of messages. The message at the top of the stack of the statusbar is the one that will currently be displayed. Any messages added to the stack of the statusbar must specify a context ID that is used to uniquely identify the source of a message. This context ID can be generated by the gtk-statusbar-context-id function, 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. 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). Statusbars are created using the gtk-statusbar-new function. Messages are added to the stack of the statusbar with the gtk-statusbar-push function. The message at the top of the stack can be removed using the gtk-statusbar-pop function. 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 the gtk-statusbar-remove function. CSS nodeStyle Property Details
Signal DetailsThe "text-popped" signallambda (statusbar context text) :run-lastIs emitted whenever a new message is popped off the stack of the status bar.
The "text-pushed" signallambda (statusbar context text) :run-lastIs emitted whenever a new message gets pushed onto the stack of the status bar.
| Inherited Slot Access Functions |
*2021-12-22