NavigationMainWindowQt Class

NavigationMainWindowQt provides main window with the navigation bar inherited from QMainWindow. This class should be chosen if you plan to use the regular docking mechanism in the main window together on the navigation bar. Otherwise, use NavigationMainWindow class. More...

Header: #include <NavigationMainWindowQt>
Inherits: QMainWindow

Public Functions

NavigationMainWindowQt(QWidget *parent = Q_NULL, Qt::WindowFlags flags = Qt::WindowFlags())
NavigationBar *navigationBar() const
void setNavigationBar(NavigationBar *navigationBar)
WindowTitleBar *titleBar() const

Detailed Description

Member Function Documentation

Constructor of the class NavigationMainWindowQt. Parameter the parent by default is NULL and flags by default is Qt::WindowFlags().

Returns navigation bar for the main window. This function creates and returns an empty navigation bar if the navigation bar does not exist.

See also setNavigationBar().

void NavigationMainWindowQt::setNavigationBar(NavigationBar *navigationBar)

Sets the navigation bar for the main window to navigationBar. NavigationMainWindowQt takes ownership of the navigationBar pointer and deletes it at the appropriate time.

See also navigationBar().

WindowTitleBar *NavigationMainWindowQt::titleBar() const

Returns title bar for the main window.