Salome HOME
SMH: Add again in binary mode
[modules/gui.git] / src / SUPERVGraph / SUPERVGraph_ViewManager.h
1 #ifndef SUPERVGRAPH_VIEWMANAGER_H
2 #define SUPERVGRAPH_VIEWMANAGER_H
3
4 #include "SUPERVGraph_ViewModel.h"
5
6 #include "SUIT_ViewManager.h"
7
8 class SUIT_Desktop;
9
10 class /*SUPERVGRAPH_EXPORT*/ SUPERVGraph_ViewManager : public SUIT_ViewManager
11 {
12   Q_OBJECT
13
14 public:
15   SUPERVGraph_ViewManager( SUIT_Study* theStudy, SUIT_Desktop* theDesktop, SUIT_ViewModel* theViewModel = 0 );
16   ~SUPERVGraph_ViewManager();
17
18   virtual void      contextMenuPopup( QPopupMenu* thePopup );
19
20 protected:
21   void              setViewName(SUIT_ViewWindow* theView);
22
23 private:
24   static int        myMaxId;
25   int               myId;
26
27 };
28
29 #endif