X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetToolbox.h;h=28e48c0fce27b20b33ccdd81dbdc47b596ca5dd1;hb=8cd56d486b6e96b8814002f9f0f4acadd6cea11b;hp=b315e5d3a43456efff85b7e904d586c6df2a21ef;hpb=2f86be51c890074b44f82d3ee46e98e9a565f246;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetToolbox.h b/src/ModuleBase/ModuleBase_WidgetToolbox.h index b315e5d3a..28e48c0fc 100644 --- a/src/ModuleBase/ModuleBase_WidgetToolbox.h +++ b/src/ModuleBase/ModuleBase_WidgetToolbox.h @@ -11,34 +11,48 @@ #include #include -#include - 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: + /// Constructor + /// \param theParent the parent object + /// \param theData the widget configuration. The attribute of the model widget is obtained from + /// \param theParentId is Id of a parent of the current attribute ModuleBase_WidgetToolbox(QWidget* theParent, const Config_WidgetAPI* theData, const std::string& theParentId); virtual ~ModuleBase_WidgetToolbox(); /// Defines if it is supported to set the value in this widget - /// It returns false because this is an info widget + /// \return false because this is an info widget virtual bool canSetValue() const { return false; }; - /// Overrides ModuleBase_PagedContainer - int addPage(ModuleBase_PageBase* theWidget, - const QString& theName, const QString& theCaseId); + /// 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 QPixmap& theIcon ); protected: /// Implements ModuleBase_PagedContainer virtual int currentPageIndex() const; + /// Implements ModuleBase_PagedContainer virtual void setCurrentPageIndex(int); private: - QToolBox* myToolBox; + ModuleBase_ToolBox* myToolBox; }; #endif /* MODULEBASE_WIDGETTOOLBOX_H_ */