Salome HOME
Module Supervision migration.
[modules/gui.git] / src / SUPERVGraph / SUPERVGraph_ViewManager.cxx
1 #include "SUPERVGraph_ViewManager.h"
2
3 SUPERVGraph_ViewManager::SUPERVGraph_ViewManager( SUIT_Study* theStudy, 
4                                                   SUIT_Desktop* theDesktop, 
5                                                   SUIT_ViewModel* theViewModel )
6   : SUIT_ViewManager( theStudy, theDesktop, theViewModel )
7 {
8 }
9
10 SUPERVGraph_ViewManager::~SUPERVGraph_ViewManager()
11 {
12 }
13
14 void SUPERVGraph_ViewManager::setViewName(SUIT_ViewWindow* theView)
15 {
16   int aPos = myViews.find(theView);
17   theView->setCaption( QString( "SUPERVISION  - viewer:%1" ).arg(aPos+1));
18 }
19
20 void SUPERVGraph_ViewManager::contextMenuPopup( QPopupMenu* thePopup)
21 {
22   SUIT_ViewManager::contextMenuPopup( thePopup );
23   // to be implemented
24 }