Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / SPlot2d / SPlot2d_ViewWindow.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #include "SPlot2d_ViewWindow.h"
23
24 #include "Plot2d_ViewFrame.h"
25
26 #include "SUIT_Accel.h"
27
28 /*!
29   Constructor
30 */
31 SPlot2d_ViewWindow
32 ::SPlot2d_ViewWindow( SUIT_Desktop* theDesktop, 
33                       Plot2d_Viewer* theModel)
34   : Plot2d_ViewWindow( theDesktop, theModel )
35 {
36 }
37
38 /*!
39   Destructor
40 */
41 SPlot2d_ViewWindow
42 ::~SPlot2d_ViewWindow()
43 {
44 }
45
46 /*!
47   Performs action
48   \param theAction - type of action
49 */
50 bool 
51 SPlot2d_ViewWindow
52 ::action( const int theAction  )
53 {
54   switch ( theAction ) {
55   case SUIT_Accel::PanLeft: 
56     getViewFrame()->onPanLeft();
57     break;
58   case SUIT_Accel::PanRight: 
59     getViewFrame()->onPanRight();
60     break;
61   case SUIT_Accel::PanUp: 
62     getViewFrame()->onPanUp();
63     break;
64   case SUIT_Accel::PanDown: 
65     getViewFrame()->onPanDown();
66     break;
67   case SUIT_Accel::ZoomIn: 
68     getViewFrame()->onZoomIn();
69     break;
70   case SUIT_Accel::ZoomOut: 
71     getViewFrame()->onZoomOut();
72     break;
73   case SUIT_Accel::ZoomFit:
74     getViewFrame()->fitAll();
75     break;
76   }
77   return true;
78 }