X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModuleBase%2FModuleBase_WidgetToolbox.h;h=f92d79f4c2cc706f113825751ba72a488a64cd10;hb=9aeb69897970e21212d6f8926ec33d2eb696f18d;hp=29c52d140400d7396b7a567a24e460b9ccc3f2b5;hpb=41695176c748943485f8844fea6e89cef9a0b6f5;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetToolbox.h b/src/ModuleBase/ModuleBase_WidgetToolbox.h index 29c52d140..f92d79f4c 100644 --- a/src/ModuleBase/ModuleBase_WidgetToolbox.h +++ b/src/ModuleBase/ModuleBase_WidgetToolbox.h @@ -14,27 +14,38 @@ class ModuleBase_PageBase; class ModuleBase_ToolBox; +/** +* \ingroup GUI +* Implements a model widget for switch as a container widget. It can be defined in XML with "toolbox" keyword +*/ class MODULEBASE_EXPORT ModuleBase_WidgetToolbox : public ModuleBase_PagedContainer { Q_OBJECT public: - ModuleBase_WidgetToolbox(QWidget* theParent, const Config_WidgetAPI* theData, - const std::string& theParentId); + /// Constructor + /// \param theParent the parent object + /// \param theData the widget configuration. The attribute of the model widget is obtained from + ModuleBase_WidgetToolbox(QWidget* theParent, const Config_WidgetAPI* theData); virtual ~ModuleBase_WidgetToolbox(); /// Defines if it is supported to set the value in this widget - /// It returns false because this is an info widget - virtual bool canSetValue() const { return false; }; - - /// Overrides ModuleBase_PagedContainer + /// \return false because this is an info widget + virtual bool canAcceptFocus() const { return false; }; + + /// Add a page to the widget + /// \param theWidget a page widget + /// \param theName a name of page + /// \param theCaseId an Id of the page + /// \param theIcon an icon of the page virtual int addPage( ModuleBase_PageBase* theWidget, const QString& theName, const QString& theCaseId, - const QIcon& theIcon ); + const QPixmap& theIcon ); protected: /// Implements ModuleBase_PagedContainer virtual int currentPageIndex() const; + /// Implements ModuleBase_PagedContainer virtual void setCurrentPageIndex(int);