#include <ToolbarInterface.hh>
Signals | |
| virtual void | addToolbar (QToolBar *) |
| Adds a Toolbar to the main widget. | |
| virtual void | removeToolbar (QToolBar *) |
| Remove a Toolbar from the main widget. | |
| virtual void | getToolBar (QString, QToolBar *&) |
| Get a pointer to a Toolbar of the given name or 0 if it does not exist. | |
Public Member Functions | |
| virtual | ~ToolbarInterface () |
| Destructor. | |
This Interface should be used by plugins which will provide a toolbar. Each Plugin can create own Toolbars. Emit
Definition at line 65 of file ToolbarInterface.hh.
| virtual void ToolbarInterface::addToolbar | ( | QToolBar * | ) | [inline, virtual, signal] |
Adds a Toolbar to the main widget.
To create your own Toolbar, emit this signal with a pointer to your Toolbar.
| _toolbar | Your Toolbar |
Definition at line 81 of file ToolbarInterface.hh.
| virtual void ToolbarInterface::getToolBar | ( | QString | , | |
| QToolBar *& | ||||
| ) | [inline, virtual, signal] |
Get a pointer to a Toolbar of the given name or 0 if it does not exist.
| _name | Name of the Toolbar | |
| _toolbar | requested Toolbar or 0 |
Definition at line 96 of file ToolbarInterface.hh.
| virtual void ToolbarInterface::removeToolbar | ( | QToolBar * | ) | [inline, virtual, signal] |
Remove a Toolbar from the main widget.
| _toolbar | Toolbar to be removed |
Definition at line 88 of file ToolbarInterface.hh.