X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_SelectionMgr.h;h=0ca09a167f2c1edc34ee88c026cabc9a2eeb260d;hb=423f6b0a08a86d5e47115b87603cddeae4468b49;hp=93f19284c72f34fdfe66899494b2933a578c6c86;hpb=72ccabc2a906e229fe487dfeae61d38f921927d0;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_SelectionMgr.h b/src/XGUI/XGUI_SelectionMgr.h index 93f19284c..0ca09a167 100644 --- a/src/XGUI/XGUI_SelectionMgr.h +++ b/src/XGUI/XGUI_SelectionMgr.h @@ -1,14 +1,18 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + #ifndef XGUI_SelectionMgr_H #define XGUI_SelectionMgr_H #include "XGUI.h" #include +#include #include #include #include #include #include +#include class XGUI_Workshop; class XGUI_ObjectsBrowser; @@ -21,38 +25,55 @@ class XGUI_Selection; */ class XGUI_EXPORT XGUI_SelectionMgr : public QObject { - Q_OBJECT -public: +Q_OBJECT + public: + /// Constructor + /// \param theParent a parent workshop XGUI_SelectionMgr(XGUI_Workshop* theParent); virtual ~XGUI_SelectionMgr(); - XGUI_Selection* selection() const { return mySelection; } + /// Returns current selection + XGUI_Selection* selection() const + { + return mySelection; + } - //! Returns list of currently selected data objects - //QFeatureList selectedFeatures() const; - - //! Returns list of currently selected QModelIndexes - //QModelIndexList selectedIndexes() const; + //! Connects the manager to all viewers accessible by Workshop + void connectViewers(); - //! Returns list of currently selected AIS objects - //void selectedAISObjects(AIS_ListOfInteractive& theList) const; + //! Selects the owners in the context. + //! \param theSelectedOwners a container of owners + /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly + void setSelectedOwners(const SelectMgr_IndexedMapOfOwner& theSelectedOwners, + bool isUpdateViewer); - //! Returns list of currently selected shapes - //void selectedShapes(NCollection_List& theList) const; + //! Check that the selected owners are valid for the current filters + /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly + void updateSelectedOwners(bool isUpdateViewer); - //! Connects the manager to all viewers accessible by Workshop - void connectViewers(); + //! 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: + private slots: + /// Reaction on selectio0n in Object browser void onObjectBrowserSelection(); + + /// Reaction on selectio0n in Viewer void onViewerSelection(); -private: + private: + /// Reference to workshop XGUI_Workshop* myWorkshop; + + /// Current selection object XGUI_Selection* mySelection; };