X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_SelectionMgr.h;h=0ca09a167f2c1edc34ee88c026cabc9a2eeb260d;hb=423f6b0a08a86d5e47115b87603cddeae4468b49;hp=6503f175d93b27fa53d1f694b89d6929837d4b5f;hpb=72cb66f9c09b0f8fa224f6f8ab43548658015b49;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_SelectionMgr.h b/src/XGUI/XGUI_SelectionMgr.h index 6503f175d..0ca09a167 100644 --- a/src/XGUI/XGUI_SelectionMgr.h +++ b/src/XGUI/XGUI_SelectionMgr.h @@ -5,6 +5,7 @@ #include "XGUI.h" #include +#include #include #include @@ -26,9 +27,12 @@ class XGUI_EXPORT XGUI_SelectionMgr : public QObject { Q_OBJECT public: + /// Constructor + /// \param theParent a parent workshop XGUI_SelectionMgr(XGUI_Workshop* theParent); virtual ~XGUI_SelectionMgr(); + /// Returns current selection XGUI_Selection* selection() const { return mySelection; @@ -47,16 +51,29 @@ Q_OBJECT /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly void updateSelectedOwners(bool isUpdateViewer); + //! Clears selection in Viewer and object Browser + void clearSelection(); + + /// Updates selection, which are depend on the selection in the given place + /// \param thePlace a widget where selection has happened. + void updateSelectionBy(const ModuleBase_ISelection::SelectionPlace& thePlace); + signals: //! Emited when selection in a one of viewers was changed void selectionChanged(); private slots: + /// Reaction on selectio0n in Object browser void onObjectBrowserSelection(); + + /// Reaction on selectio0n in Viewer void onViewerSelection(); private: + /// Reference to workshop XGUI_Workshop* myWorkshop; + + /// Current selection object XGUI_Selection* mySelection; };