Salome HOME
76d0bfd3d77982a9eef460b775532120931399ba
[modules/gui.git] / src / SPlot2d / SPlot2d_ViewWindow.cxx
1 // Copyright (C) 2007-2022  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, or (at your option) any later version.
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
23 #include "SPlot2d_ViewWindow.h"
24
25 #include "Plot2d_ViewFrame.h"
26
27 #include "SUIT_Accel.h"
28
29 /*!
30   Constructor
31 */
32 SPlot2d_ViewWindow
33 ::SPlot2d_ViewWindow( SUIT_Desktop* theDesktop, 
34                       Plot2d_Viewer* theModel)
35   : Plot2d_ViewWindow( theDesktop, theModel )
36 {
37 }
38
39 /*!
40   Destructor
41 */
42 SPlot2d_ViewWindow
43 ::~SPlot2d_ViewWindow()
44 {
45 }
46
47 /*!
48   Performs action
49   \param theAction - type of action
50 */
51 bool 
52 SPlot2d_ViewWindow
53 ::action( const int theAction  )
54 {
55   switch ( theAction ) {
56   case SUIT_Accel::PanLeft: 
57     getViewFrame()->onPanLeft();
58     break;
59   case SUIT_Accel::PanRight: 
60     getViewFrame()->onPanRight();
61     break;
62   case SUIT_Accel::PanUp: 
63     getViewFrame()->onPanUp();
64     break;
65   case SUIT_Accel::PanDown: 
66     getViewFrame()->onPanDown();
67     break;
68   case SUIT_Accel::ZoomIn: 
69     getViewFrame()->onZoomIn();
70     break;
71   case SUIT_Accel::ZoomOut: 
72     getViewFrame()->onZoomOut();
73     break;
74   case SUIT_Accel::ZoomFit:
75     getViewFrame()->fitAll();
76     break;
77   }
78   return true;
79 }