Salome HOME
6d8cd608fa742420df01bbb79bb465bfc4ff5b01
[modules/paravis.git] / src / PVGUI / PVGUI_ViewWindow.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 // File   : PVGUI_ViewWindow.cxx
20 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
21 //
22
23 #include "PVGUI_ViewWindow.h"
24
25 #include <SUIT_ViewManager.h>
26 #include <SUIT_ResourceMgr.h>
27 #include <SUIT_Session.h>
28 #include <SUIT_Desktop.h>
29
30 #include <pqViewManager.h>
31
32
33 /*!
34   \class PVGUI_ViewWindow
35   \brief PVGUI view window.
36 */
37
38 /*!
39   \brief Constructor.
40   \param theDesktop parent desktop window
41   \param theModel plt2d view model
42 */
43 PVGUI_ViewWindow::PVGUI_ViewWindow( SUIT_Desktop* theDesktop, PVGUI_Viewer* theModel )
44   : SUIT_ViewWindow( theDesktop ), myPVMgr( 0 )
45 {
46   myModel = theModel;
47   myPVMgr = new pqViewManager( this );
48
49   setCentralWidget( myPVMgr );
50
51   myPVMgr->installEventFilter( this );
52 }
53
54 /*!
55   \brief Destructor.
56 */
57 PVGUI_ViewWindow::~PVGUI_ViewWindow()
58 {
59 }
60
61 /*!
62   \brief Custom event filter.
63   \param watched event receiver object
64   \param e event
65   \return \c true if further event processing should be stopped
66 */
67 bool PVGUI_ViewWindow::eventFilter( QObject* watched, QEvent* e )
68 {
69   return SUIT_ViewWindow::eventFilter( watched, e );
70 }
71
72
73 /*!
74   \brief Get the visual parameters of the view window.
75   \return visual parameters of this view window formatted to the string
76 */
77 QString PVGUI_ViewWindow::getVisualParameters()
78 {
79   return SUIT_ViewWindow::getVisualParameters();
80 }
81
82 /*!
83   \brief Restore visual parameters of the view window from the formated string
84   \param parameters view window visual parameters
85 */
86 void PVGUI_ViewWindow::setVisualParameters( const QString& parameters )
87 {
88   SUIT_ViewWindow::setVisualParameters( parameters );
89 }