parametersettableui.h
49 ParameterSettableUIViewer( QWidget* viewer, QString menuText, QString iconFilename=QString(), QString tooltip=QString() )
50 : viewer(viewer), menuText(menuText), iconFilename(iconFilename), tooltip(tooltip) { /*nothing to do*/ };
80 virtual QList<ParameterSettableUIViewer> getViewers( QWidget* /*parent*/, Qt::WindowFlags /*flags*/ ) {
virtual void fillActionsMenu(QMenu *)
fill the menu "Actions" of Total99 with the actions of the ParameterSettable
Definition: parametersettableui.h:74
This file contains the common type defitions used on the whole framework.
Definition: configurationhelper.cpp:24
Helper class for storing information about a viewer for a ParameterSettable.
Definition: parametersettableui.h:44
The ParameterSettableUI is the base (abstract) class that manage/create the graphic user interface fo...
Definition: parametersettableui.h:67
QString menuText
the name to display on the views menu for this viewer
Definition: parametersettableui.h:54
virtual QList< ParameterSettableUIViewer > getViewers(QWidget *, Qt::WindowFlags)
Return the list of all viewers for the ParameterSettable with corresponding informations for fill the...
Definition: parametersettableui.h:80
QString iconFilename
the icon filename to display on the toolbar for this viewer
Definition: parametersettableui.h:56
virtual void addAdditionalMenus(QMenuBar *)
add additional menus to the menu bar of Total99 is needed by the ParameterSettable ...
Definition: parametersettableui.h:87
ParameterSettableUIViewer(QWidget *viewer, QString menuText, QString iconFilename=QString(), QString tooltip=QString())
Constructor - initialize all data.
Definition: parametersettableui.h:49