X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Workbench.h;h=144a23a2d2fe8ffa84965b6b1facfe2f8346e150;hb=d86c77d1c6210bbe04fbc3e5b00f9e212e1ec930;hp=506845adbddbe84bf0016eafe8f98c89bb8803e3;hpb=dcfbdb77dfd1e8f4f5a9f636ff5534d74af3592e;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Workbench.h b/src/XGUI/XGUI_Workbench.h index 506845adb..144a23a2d 100644 --- a/src/XGUI/XGUI_Workbench.h +++ b/src/XGUI/XGUI_Workbench.h @@ -1,48 +1,54 @@ - #ifndef XGUI_Workbench_H #define XGUI_Workbench_H -#include "XGUI_Interfaces.h" - +#include "XGUI.h" #include #include #include -class QHBoxLayout; +class XGUI_Command; class XGUI_MenuGroupPanel; -class QPushButton; class CommandsArea; -class XGUI_Command; +class QHBoxLayout; +class QPushButton; -class XGUI_Workbench : public QWidget, public IWorkbench +class XGUI_EXPORT XGUI_Workbench: public QWidget { - Q_OBJECT +Q_OBJECT public: - XGUI_Workbench(QWidget* theParent); + XGUI_Workbench(QWidget* theParent); + + XGUI_MenuGroupPanel* addGroup(const QString& theId); + XGUI_MenuGroupPanel* findGroup(const QString& theName); - virtual IMenuGroup* addGroup(); + //! Returns already created command by its ID + XGUI_Command* feature(const QString& theId) const; + + //! Returns list of created commands + QList features() const; private slots: - void onLeftScroll(); - void onRightScroll(); + void onLeftScroll(); + void onRightScroll(); protected: - virtual void resizeEvent(QResizeEvent * theEvent); + virtual void resizeEvent(QResizeEvent * theEvent); + virtual bool eventFilter(QObject *theObj, QEvent *theEvent); -private: - void addSeparator(); - bool isExceedsLeft(); - bool isExceedsRight(); +private: + void addSeparator(); + bool isExceedsLeft(); + bool isExceedsRight(); - QWidget* myChildWidget; - QHBoxLayout* myLayout; - QList myGroups; + QWidget* myChildWidget; + QHBoxLayout* myLayout; + QList myGroups; - CommandsArea* myCommandsArea; - QPushButton* myRightButton; - QPushButton* myLeftButton; + CommandsArea* myCommandsArea; + QPushButton* myRightButton; + QPushButton* myLeftButton; }; -#endif; \ No newline at end of file +#endif