#include <iostream>
#include <vector>
#include <gtk/gtk.h>
#include <libgnomeui/libgnomeui.h>
Data Structures | |
struct | StatusBar |
A GnomeAppBar widget to show messages to the user. More... | |
Functions | |
StatusBar * | openldev_status_bar_new () |
void | openldev_status_bar_set_message (StatusBar *bar, gchar *message) |
void | openldev_status_bar_lock_message (StatusBar *bar, gchar *message) |
void | openldev_status_bar_unlock_message (StatusBar *bar) |
|
Set the current message on the status bar. This message is locked, so other parts of the application cannot edit it. Make sure to unlock the message when you are done! This will append a message on the stack, so when you unlock the message, it will revert to the prior.
|
|
Create a new StatusBar object. This is useful if you want a generic GnomeAppBar widget somewhere else in the application.
|
|
Set the current message on the status bar. This is not locked, so it can be changed by other parts of the application.
|
|
Unlock the status bar message and revert to the prior message. Make sure you do this when locking is no longer necessary!
|