|
roviz
0.7
Code Documentation of roviz
|
#include <QObject>#include <QMainWindow>#include <functional>#include "appcore.h"#include "helper/singleton.h"

Go to the source code of this file.
Classes | |
| class | GuiManager |
| The GuiManager class handels widgets and actions on the main window. More... | |
Enumerations | |
| enum | WidgetType { WidgetType::DockWidget, WidgetType::ToolBar, WidgetType::CentralWidget, WidgetType::MenuBar, WidgetType::StatusBar } |
| Information about the type of a widget. More... | |
| enum | WidgetArea { WidgetArea::NoArea = 0, WidgetArea::Left = 0x1, WidgetArea::Right = 0x2, WidgetArea::Top = 0x4, WidgetArea::Bottom = 0x8, WidgetArea::AllAreas = 0xf } |
| Information about the area where a widget should be placed, Compatible with Qt::DockWidgetArea and Qt::ToolBarArea. More... | |
| enum | GuiMode { GuiMode::ShowGui = 0, GuiMode::Headless } |
|
strong |
|
strong |
|
strong |
Information about the type of a widget.
| Enumerator | |
|---|---|
| DockWidget | Widget that can be casted to a QDockwidget. |
| ToolBar | Widget that can be casted into a Toolbar. |
| CentralWidget | Widget that is placed in the center, only one can exist within a QMainWindow. |
| MenuBar | Widget that can be casted into a QMenuBar, only one can exist within a QMainWindow. |
| StatusBar | Widget that can be casted into a QStatusBar, only one can exist within a QMainWindow. |
1.8.13