Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
1 #ifndef XGUI_SelectionMgr_H
2 #define XGUI_SelectionMgr_H
3
4 #include "XGUI.h"
5 #include <ModuleBase_Definitions.h>
6 #include <QObject>
7 #include <QModelIndexList>
8
9 #include <AIS_ListOfInteractive.hxx>
10 #include <NCollection_List.hxx>
11 #include <TopoDS_Shape.hxx>
12
13 class XGUI_Workshop;
14 class XGUI_ObjectsBrowser;
15 class XGUI_Selection;
16
17 /**\class XGUI_SelectionMgr
18  * \ingroup GUI
19  * \brief Selection manager. Provides selection event on selection in 
20  * Object Browser and Viewer
21  */
22 class XGUI_EXPORT XGUI_SelectionMgr : public QObject
23 {
24 Q_OBJECT
25  public:
26   XGUI_SelectionMgr(XGUI_Workshop* theParent);
27   virtual ~XGUI_SelectionMgr();
28
29   XGUI_Selection* selection() const
30   {
31     return mySelection;
32   }
33
34   //! Connects the manager to all viewers accessible by Workshop
35   void connectViewers();
36
37 signals:
38   //! Emited when selection in a one of viewers was changed
39   void selectionChanged();
40
41  private slots:
42   void onObjectBrowserSelection();
43   void onViewerSelection();
44
45  private:
46   XGUI_Workshop* myWorkshop;
47   XGUI_Selection* mySelection;
48 };
49
50 #endif