X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_SelectionMgr.h;h=441b52d6436d825cf512964cee732a08db3dea67;hb=220bd2b37119be1c65abf88a88792445cb9d99f8;hp=b75989abbfb6640bc90ec681c263cc800eb8c4c2;hpb=8396394eba586fc212fe4cb3e1e838a54ebf4ffe;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_SelectionMgr.h b/src/XGUI/XGUI_SelectionMgr.h index b75989abb..441b52d64 100644 --- a/src/XGUI/XGUI_SelectionMgr.h +++ b/src/XGUI/XGUI_SelectionMgr.h @@ -1,17 +1,22 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + #ifndef XGUI_SelectionMgr_H #define XGUI_SelectionMgr_H #include "XGUI.h" -#include "XGUI_Constants.h" +#include +#include #include #include #include #include #include +#include class XGUI_Workshop; class XGUI_ObjectsBrowser; +class XGUI_Selection; /**\class XGUI_SelectionMgr * \ingroup GUI @@ -20,37 +25,56 @@ class XGUI_ObjectsBrowser; */ 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(); - //! Returns list of currently selected data objects - QFeatureList selectedFeatures() const; - - //! Returns list of currently selected QModelIndexes - QModelIndexList selectedIndexes() const; - - //! Returns list of currently selected AIS objects - void selectedAISObjects(AIS_ListOfInteractive& theList) const; - - //! Returns list of currently selected shapes - void selectedShapes(NCollection_List& theList) const; + /// Returns current selection + XGUI_Selection* selection() const + { + return mySelection; + } //! Connects the manager to all viewers accessible by Workshop void connectViewers(); + //! 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); + + //! 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); + + //! Clears selection in Viewer and object Browser + void clearSelection(); + + /// Updates selection, which are depend on the selection in the given place + /// \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(); - void onViewerSelection(); -private: + /// Reaction on selectio0n in Viewer + void onViewerSelection(); + private: + /// Reference to workshop XGUI_Workshop* myWorkshop; + + /// Current selection object + XGUI_Selection* mySelection; }; #endif