Functions | |
UICORE_API_EXPORT void | addEventHandler (UID _windowUID, aWindowEventHandler *_eventHandler) |
Will add the provided event handler to the window. | |
UICORE_API_EXPORT void | close (UID _windowUID) |
Will close the provided window. | |
UICORE_API_EXPORT void | removeEventHandler (UID _windowUID, aWindowEventHandler *_eventHandler) |
Will remove the provided event handler from the window. | |
UICORE_API_EXPORT void | setStatusLabelVisible (UID _windowUID, bool _visible=true, bool _delayed=true) |
Will set the visible state of the status label of the provided window. | |
UICORE_API_EXPORT void | setStatusProgressVisible (UID _windowUID, bool _visible=true, bool _delayed=true) |
Will set the visible state of the status progress bar of the provided window. | |
UICORE_API_EXPORT void | setStatusLabelText (UID _windowUID, const QString &_text) |
Will set the status label text at the provided window. | |
UICORE_API_EXPORT void | setStatusProgressValue (UID _windowUID, int _value) |
Will set the value of the status progress bar at the provided window. | |
UICORE_API_EXPORT void | setStatusProgressContinuous (UID _windowUID, bool _continuous=true) |
Will set the continuous option of the status progress bar at the provided window. | |
UICORE_API_EXPORT void | setTabToolBarVisible (UID _windowUID, bool _visible=true) |
Will set the visible state of the tabToolbar in the specified window. | |
UICORE_API_EXPORT void | setTabToolbarDoubleClickEnabled (UID _windowUID, bool _isEnabled) |
Will set the enabled state of double click event in the tab toolbar. | |
UICORE_API_EXPORT ID | getCurrentTabToolBarTab (UID _windowUID) |
Will return the current tab of the tab tool bar at the specified window. | |
UICORE_API_EXPORT std::string | getCurrentToolBarTabText (UID _windowUID) |
UICORE_API_EXPORT int | getTabToolBarTabCount (UID _windowUID) |
Will return the tab count of the tab tool bar at the specified window. | |
UICORE_API_EXPORT void | enableTabToolBar (UID _windowUID, bool _enable) |
Will enable or disable the tab tool bar at the specified window. | |
UICORE_API_EXPORT void | setCurrentTabToolBarTab (UID _windowUID, ID _tabID) |
Will set the specified tab toolbar tab as current at the specified window. | |
UICORE_API_EXPORT void | setCurrentTabToolBarTab (UID _windowUID, const QString &_tabName) |
UICORE_API_EXPORT void | setTitle (UID _windowUID, const QString &_title) |
Will set the title at the specified window. | |
UICORE_API_EXPORT void | setWindowIcon (UID _windowUID, const QIcon &_icon) |
Will set the icon at the specified window. | |
UICORE_API_EXPORT bool | getStatusLabelVisible (UID _windowUID) |
Will return true if the status label is visible at the provided window. | |
UICORE_API_EXPORT bool | getStatusProgressVisible (UID _windowUID) |
Will return true if the status progress bar is visible at the provided window. | |
UICORE_API_EXPORT QString | getStatusLabelText (UID _windowUID) |
Will return the status label text at the provided window. | |
UICORE_API_EXPORT int | getStatusProgressValue (UID _windowUID) |
Will return the status progress bar value at the provided window. | |
UICORE_API_EXPORT bool | getStatusProgressContinuous (UID _windowUID) |
Will return the continuous option of the status progress bar at the provided window. | |
UICORE_API_EXPORT void | setCentralWidget (UID _windowUID, UID _widgetUID) |
Will set the windows central widget (The widget will be added to a container, the actual central widget differs) | |
UICORE_API_EXPORT void | setCentralWidget (UID _windowUID, QWidget *_widget) |
Will set the windows central widget (The widget will be added to a container, the actual central widget differs) | |
UICORE_API_EXPORT void | showMaximized (UID _windowUID) |
Will show the window as maximized. | |
UICORE_API_EXPORT void | showNormal (UID _windowUID) |
Will show the window. | |
UICORE_API_EXPORT void | showMinimized (UID _windowUID) |
Will show the window as minimized. | |
UICORE_API_EXPORT QSize | size (UID _windowUID) |
Will return the size of the window. | |
UICORE_API_EXPORT QPoint | position (UID _windowUID) |
Will return the position of the window. | |
UICORE_API_EXPORT void | setWaitingAnimationVisible (UID _windowUID, bool _visible=true) |
Will set the visible state of the waiting animation. | |
UICORE_API_EXPORT void | setWaitingAnimation (UID _windowUID, QMovie *_movie) |
Will set the movie as waiting animation in the window. | |
UICORE_API_EXPORT void | setWaitingAnimation (UID _windowUID, const QString &_animationName) |
Will set the animation as waiting animation in the window. | |
UICORE_API_EXPORT void | setCentralWidgetMinimumSize (UID _windowUID, int _width, int _height) |
Will set the central widget minimum size. | |
UICORE_API_EXPORT double | devicePixelRatio (void) |
Will return the device pixel ratio of the currently used device. | |
UICORE_API_EXPORT void | resize (UID _windowUID, int _width, int _height) |
Will resize the window. | |
UICORE_API_EXPORT std::string | saveState (UID _windowUID, std::string _currentState="") |
Will return the state of the window so it can be restored. | |
UICORE_API_EXPORT bool | restoreState (UID _windowUID, const std::string &_state, bool _setPositionAndSize=true) |
Will return the state of the window so it can be restored. | |
UICORE_API_EXPORT void | setTabToolBarTabOrder (UID _windowUID, const QStringList &_list) |
UICORE_API_EXPORT void | activateToolBarTab (UID _windowUID, const QString &_tabName) |
void ak::uiAPI::window::activateToolBarTab | ( | UID | _windowUID, |
const QString & | _tabName ) |
void ak::uiAPI::window::addEventHandler | ( | UID | _windowUID, |
aWindowEventHandler * | _eventHandler ) |
Will add the provided event handler to the window.
_windowUID | The UID of the window |
_eventHandler | The event handler to add |
void ak::uiAPI::window::close | ( | UID | _windowUID | ) |
Will close the provided window.
_windowUID | The UID of the uiManager to close |
double ak::uiAPI::window::devicePixelRatio | ( | void | ) |
Will return the device pixel ratio of the currently used device.
void ak::uiAPI::window::enableTabToolBar | ( | UID | _windowUID, |
bool | _enable ) |
Will enable or disable the tab tool bar at the specified window.
_windowUID | The UID of the window |
_enable | A flag indicating whetehr the toolbar shall be enabled or disabled |
Will return the current tab of the tab tool bar at the specified window.
_windowUID | The UID of the window |
std::string ak::uiAPI::window::getCurrentToolBarTabText | ( | UID | _windowUID | ) |
QString ak::uiAPI::window::getStatusLabelText | ( | UID | _windowUID | ) |
Will return the status label text at the provided window.
_windowUID | The UID of the window |
bool ak::uiAPI::window::getStatusLabelVisible | ( | UID | _windowUID | ) |
Will return true if the status label is visible at the provided window.
_windowUID | The UID of the window |
bool ak::uiAPI::window::getStatusProgressContinuous | ( | UID | _windowUID | ) |
Will return the continuous option of the status progress bar at the provided window.
_windowUID | The UID of the window |
int ak::uiAPI::window::getStatusProgressValue | ( | UID | _windowUID | ) |
Will return the status progress bar value at the provided window.
_windowUID | The UID of the window |
bool ak::uiAPI::window::getStatusProgressVisible | ( | UID | _windowUID | ) |
Will return true if the status progress bar is visible at the provided window.
_windowUID | The UID of the window |
int ak::uiAPI::window::getTabToolBarTabCount | ( | UID | _windowUID | ) |
Will return the tab count of the tab tool bar at the specified window.
_windowUID | The UID of the window |
QPoint ak::uiAPI::window::position | ( | UID | _windowUID | ) |
Will return the position of the window.
_windowUID | The UID of the window |
void ak::uiAPI::window::removeEventHandler | ( | UID | _windowUID, |
aWindowEventHandler * | _eventHandler ) |
Will remove the provided event handler from the window.
_windowUID | The UID of the window |
_eventHandler | The event handler to remove |
void ak::uiAPI::window::resize | ( | UID | _windowUID, |
int | _width, | ||
int | _height ) |
Will resize the window.
bool ak::uiAPI::window::restoreState | ( | UID | _windowUID, |
const std::string & | _state, | ||
bool | _setPositionAndSize = true ) |
Will return the state of the window so it can be restored.
std::string ak::uiAPI::window::saveState | ( | UID | _windowUID, |
std::string | _currentState = "" ) |
Will return the state of the window so it can be restored.
void ak::uiAPI::window::setCentralWidget | ( | UID | _windowUID, |
QWidget * | _widget ) |
Will set the windows central widget (The widget will be added to a container, the actual central widget differs)
_windowUID | The UID of the window |
_widget | The widget to set as central widget |
Will set the windows central widget (The widget will be added to a container, the actual central widget differs)
_windowUID | The UID of the window |
_widgetUID | The widget UID of the widget to set as central widget |
void ak::uiAPI::window::setCentralWidgetMinimumSize | ( | UID | _windowUID, |
int | _width, | ||
int | _height ) |
Will set the central widget minimum size.
_windowUID | The UID of the window |
_width | The width to set |
_height | The height to set |
void ak::uiAPI::window::setCurrentTabToolBarTab | ( | UID | _windowUID, |
const QString & | _tabName ) |
Will set the specified tab toolbar tab as current at the specified window.
_windowUID | The UID of the window |
_tabID | The tab to set as current |
void ak::uiAPI::window::setStatusLabelText | ( | UID | _windowUID, |
const QString & | _text ) |
Will set the status label text at the provided window.
_windowUID | The UID of the window |
_text | The text to set |
void ak::uiAPI::window::setStatusLabelVisible | ( | UID | _windowUID, |
bool | _visible = true, | ||
bool | _delayed = true ) |
Will set the visible state of the status label of the provided window.
_windowUID | The UID of the window |
_visible | If true the status label will be visible |
void ak::uiAPI::window::setStatusProgressContinuous | ( | UID | _windowUID, |
bool | _continuous = true ) |
Will set the continuous option of the status progress bar at the provided window.
_windowUID | The UID of the window |
_continuous | If true the status progress bar will be displayed as a continuous bar |
void ak::uiAPI::window::setStatusProgressValue | ( | UID | _windowUID, |
int | _value ) |
Will set the value of the status progress bar at the provided window.
_windowUID | The UID of the window |
_value | The value to set (0 - 100) |
void ak::uiAPI::window::setStatusProgressVisible | ( | UID | _windowUID, |
bool | _visible = true, | ||
bool | _delayed = true ) |
Will set the visible state of the status progress bar of the provided window.
_windowUID | The UID of the window |
_visible | If true the status progress bar will be visible |
void ak::uiAPI::window::setTabToolbarDoubleClickEnabled | ( | UID | _windowUID, |
bool | _isEnabled ) |
Will set the enabled state of double click event in the tab toolbar.
void ak::uiAPI::window::setTabToolBarTabOrder | ( | UID | _windowUID, |
const QStringList & | _list ) |
void ak::uiAPI::window::setTabToolBarVisible | ( | UID | _windowUID, |
bool | _visible = true ) |
Will set the visible state of the tabToolbar in the specified window.
_windowUID | The UID of the window |
_visible | If true the tabToolbar will be visible |
void ak::uiAPI::window::setTitle | ( | UID | _windowUID, |
const QString & | _title ) |
Will set the title at the specified window.
_windowUID | The UID of the window |
_title | The title to set |
void ak::uiAPI::window::setWaitingAnimation | ( | UID | _windowUID, |
const QString & | _animationName ) |
Will set the animation as waiting animation in the window.
_windowUID | The UID of the window |
_animationName | The name of the animation |
void ak::uiAPI::window::setWaitingAnimation | ( | UID | _windowUID, |
QMovie * | _movie ) |
Will set the movie as waiting animation in the window.
_windowUID | The UID of the window |
_movie | The movie to set |
void ak::uiAPI::window::setWaitingAnimationVisible | ( | UID | _windowUID, |
bool | _visible = true ) |
Will set the visible state of the waiting animation.
_windowUID | The UID of the window |
_visible | The visible state to set |
void ak::uiAPI::window::setWindowIcon | ( | UID | _windowUID, |
const QIcon & | _icon ) |
Will set the icon at the specified window.
_windowUID | The UID of the window |
_icon | The icon to set |
void ak::uiAPI::window::showMaximized | ( | UID | _windowUID | ) |
Will show the window as maximized.
_windowUID | The UID of the window |
void ak::uiAPI::window::showMinimized | ( | UID | _windowUID | ) |
Will show the window as minimized.
_windowUID | The UID of the window |
void ak::uiAPI::window::showNormal | ( | UID | _windowUID | ) |
Will show the window.
_windowUID | The UID of the window |
QSize ak::uiAPI::window::size | ( | UID | _windowUID | ) |
Will return the size of the window.
_windowUID | The UID of the window |