X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_SelectionMgr.h;h=a38546fa0d88a36ff03d6f9b75cf0715abab1b2e;hb=1be01557bbce2ce45f8f7e1cfce412005aa8e349;hp=61fb70aff19e7df51150ba01479cc4b50e879004;hpb=1b6e67870beeeb667864eaff5b1bb9c1570b7259;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_SelectionMgr.h b/src/XGUI/XGUI_SelectionMgr.h index 61fb70aff..a38546fa0 100644 --- a/src/XGUI/XGUI_SelectionMgr.h +++ b/src/XGUI/XGUI_SelectionMgr.h @@ -1,42 +1,75 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + #ifndef XGUI_SelectionMgr_H #define XGUI_SelectionMgr_H -#include "XGUI_Constants.h" +#include "XGUI.h" +#include #include +#include + +#include +#include +#include +#include class XGUI_Workshop; class XGUI_ObjectsBrowser; +class XGUI_Selection; /**\class XGUI_SelectionMgr * \ingroup GUI * \brief Selection manager. Provides selection event on selection in * Object Browser and Viewer */ -class XGUI_SelectionMgr : public QObject +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 objects - QFeatureList selectedData() const { return mySelectedData; } + /// Returns current selection + XGUI_Selection* selection() const + { + return mySelection; + } + + //! Connects the manager to all viewers accessible by Workshop + void connectViewers(); - void connectObjectBrowser(XGUI_ObjectsBrowser* theOB); + //! 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(); signals: //! Emited when selection in a one of viewers was changed void selectionChanged(); -public slots: - void onSelectionChanged(); + 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; - XGUI_ObjectsBrowser* myObjectBrowser; - //! List of selected features - QFeatureList mySelectedData; + /// Current selection object + XGUI_Selection* mySelection; }; #endif