Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/gui.git] / src / Plot2d / Plot2d_ViewModel.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Plot2d_ViewModel.cxx: implementation of the Plot2d_ViewModel class.
20
21 #include "Plot2d_ViewModel.h"
22 #include "Plot2d_ViewWindow.h"
23 #include "Plot2d_ViewManager.h"
24 #include "Plot2d_ViewFrame.h"
25 #include "Plot2d_Prs.h"
26
27 #include <qpopupmenu.h>
28
29 /*!
30   Constructor
31 */
32 Plot2d_Viewer::Plot2d_Viewer(bool theAutoDel)
33 :SUIT_ViewModel() 
34 {
35   myPrs = 0;
36   myAutoDel = theAutoDel;
37 }
38
39 /*!
40   Destructor
41 */
42 Plot2d_Viewer::~Plot2d_Viewer()
43 {
44   if (myPrs)
45     clearPrs();
46 }
47
48 /*!
49   Create new instance of view window on desktop \a theDesktop.
50   \retval SUIT_ViewWindow* - created view window pointer.
51 */
52 SUIT_ViewWindow* Plot2d_Viewer::createView(SUIT_Desktop* theDesktop)
53 {
54   Plot2d_ViewWindow* aPlot2dView = new Plot2d_ViewWindow(theDesktop, this);
55   if (myPrs)
56     aPlot2dView->getViewFrame()->Display(myPrs);
57   return aPlot2dView;
58 }
59
60 /*!
61   Adds custom items to popup menu
62   \param thePopup - popup menu
63 */
64 void Plot2d_Viewer::contextMenuPopup(QPopupMenu* thePopup)
65 {
66   Plot2d_ViewWindow* aView = (Plot2d_ViewWindow*)(myViewManager->getActiveView());
67   if ( aView )
68     aView->contextMenuPopup(thePopup);
69
70   if (thePopup->count() > 0) thePopup->insertSeparator();
71   thePopup->insertItem( tr( "MNU_DUMP_VIEW" ),                this, SLOT(onDumpView()));
72   thePopup->insertItem( tr( "MEN_PLOT2D_CHANGE_BACKGROUND" ), this, SLOT(onChangeBgColor()));
73
74   if ( aView ) {
75     if ( !aView->getToolBar()->isVisible() ) {
76       if (thePopup->count() > 0) thePopup->insertSeparator();
77         thePopup->insertItem("Show toolbar", this, SLOT(onShowToolbar()));
78     }
79     aView->RefreshDumpImage();
80   }
81 }
82
83 /*!
84   Sets presentation of viewer
85   \param thePrs - new presentation
86 */
87 void Plot2d_Viewer::setPrs(Plot2d_Prs* thePrs) 
88 {
89   if (myPrs)
90     clearPrs();
91   myPrs = thePrs;
92   myPrs->setAutoDel(myAutoDel);
93 }
94
95 /*!
96   Updates current viewer
97 */
98 void Plot2d_Viewer::update()
99 {
100   SUIT_ViewManager* aMgr = getViewManager();
101   QPtrVector<SUIT_ViewWindow> aViews = aMgr->getViews();
102   unsigned int aSize = aViews.size();
103   for (uint i = 0; i < aSize; i++) {
104     Plot2d_ViewWindow* aView = (Plot2d_ViewWindow*)aViews[i];
105     if (myPrs && aView)
106       aView->getViewFrame()->Display(myPrs);
107   }
108 }
109
110 /*!
111   Clear viewer presentation
112 */
113 void Plot2d_Viewer::clearPrs()
114 {
115   SUIT_ViewManager* aMgr = getViewManager();
116   QPtrVector<SUIT_ViewWindow> aViews = aMgr->getViews();
117   unsigned int aSize = aViews.size();
118   for (uint i = 0; i < aSize; i++) {
119     Plot2d_ViewWindow* aView = (Plot2d_ViewWindow*)aViews[i];
120     if (myPrs && aView)
121       aView->getViewFrame()->Erase(myPrs);
122   }
123   if (myAutoDel && myPrs) {
124     delete myPrs;
125   }
126   myPrs = 0;
127 }
128
129 /*!
130   Sets "auto delete" state of of presentation
131   \param theDel - new state
132 */
133 void Plot2d_Viewer::setAutoDel(bool theDel)
134 {
135   myAutoDel = theDel;
136   if (myPrs)
137     myPrs->setAutoDel(theDel);
138 }
139
140 /*!
141   SLOT: called when action "Change background" is activated
142 */
143 void Plot2d_Viewer::onChangeBgColor()
144 {
145   Plot2d_ViewWindow* aView = (Plot2d_ViewWindow*)(myViewManager->getActiveView());
146   if( !aView )
147     return;
148   Plot2d_ViewFrame* aViewFrame = aView->getViewFrame();
149   aViewFrame->onChangeBackground();
150 }
151
152 /*!
153   SLOT: called when action "Show toolbar" is activated
154 */
155 void Plot2d_Viewer::onShowToolbar() {
156   Plot2d_ViewWindow* aView = (Plot2d_ViewWindow*)(myViewManager->getActiveView());
157   if ( aView )
158     aView->getToolBar()->show();    
159 }
160
161 /*!
162   SLOT: called when action "Dump view" is activated
163 */
164 void Plot2d_Viewer::onDumpView()
165 {
166   Plot2d_ViewWindow* aView = (Plot2d_ViewWindow*)(myViewManager->getActiveView());
167   if ( aView )
168     aView->onDumpView();    
169 }
170
171 /*!
172   SLOT: called when action "Clone view" is activated
173 */
174 void Plot2d_Viewer::onCloneView( Plot2d_ViewFrame*, Plot2d_ViewFrame* )
175 {
176 }
177
178 /*!
179   Sets view manager
180   \param mgr - new view manager
181 */
182 void Plot2d_Viewer::setViewManager( SUIT_ViewManager* mgr )
183 {
184   SUIT_ViewModel::setViewManager( mgr );
185   if( mgr && mgr->inherits( "Plot2d_ViewManager" ) )
186   {
187     Plot2d_ViewManager* pmgr = ( Plot2d_ViewManager* )mgr;
188     connect( pmgr, SIGNAL( cloneView( Plot2d_ViewFrame*, Plot2d_ViewFrame* ) ),
189              this, SLOT( onCloneView( Plot2d_ViewFrame*, Plot2d_ViewFrame* ) ) );
190   }
191 }