Developer Documentation
|
Control OpenFlippers status bar. More...
#include <OpenFlipper/BasePlugin/StatusbarInterface.hh>
Signals | |
virtual void | showStatusMessage (QString _message, int _timeout=0) |
Show a message in the status bar. More... | |
Public Member Functions | |
virtual | ~StatusbarInterface () |
Destructor. | |
void | setStatus (ApplicationStatus::applicationStatus _status) |
Sets the status icon of the StatusBar. More... | |
void | clearStatusMessage () |
Removes the current message from the statusBar. More... | |
void | addWidgetToStatusbar (QWidget *_widget) |
Add a widget on the right side of the statusBar. More... | |
Control OpenFlippers status bar.
Detailed description
This interface can be used to send messages to OpenFlippers statusbar. It is also possible to add your own widget to the bar.
Definition at line 81 of file StatusbarInterface.hh.
|
inline |
Add a widget on the right side of the statusBar.
Use this function if you want to add an additional widget to the statusbar. It will be added on the right side.
_widget | The widget that should be added to the statusbar |
Definition at line 121 of file StatusbarInterface.hh.
|
inline |
Removes the current message from the statusBar.
Definition at line 112 of file StatusbarInterface.hh.
|
inline |
Sets the status icon of the StatusBar.
OpenFlipper statusbar contains a small icon in the statusbar which can be used to indicate the current status of the application. The valid values are defined in the enum ApplicationStatus::applicationStatus.
_status | New status |
Definition at line 107 of file StatusbarInterface.hh.
|
inlinevirtualsignal |
Show a message in the status bar.
You can specify a timeout if the message should be removed after _timeout milliseconds
Definition at line 97 of file StatusbarInterface.hh.