Salome HOME
Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_17Jan08)
[modules/geom.git] / src / GEOMGUI / GEOMGUI.cxx
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  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 // File   : GEOMGUI.cxx
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24 // 
25
26 #include "GEOMGUI.h"
27 #include "GeometryGUI.h"
28
29 #include <SUIT_Desktop.h>
30 #include <SUIT_ViewWindow.h>
31
32 //=================================================================================
33 // class    : GEOMGUI::GEOMGUI
34 // purpose  : Constructor
35 //=================================================================================
36 GEOMGUI::GEOMGUI( GeometryGUI* parent ) : 
37 QObject ( parent ),
38 myGeometryGUI( parent )
39 {
40 }
41
42 //=================================================================================
43 // class    : GEOMGUI::GEOMGUI
44 // purpose  : Destructor
45 //=================================================================================
46 GEOMGUI::~GEOMGUI()
47 {
48 }
49
50 //=================================================================================
51 // class    : GEOMGUI::OnGUIEvent
52 // purpose  : Main/popup menu events processing
53 //=================================================================================
54 bool GEOMGUI::OnGUIEvent( int /*theCommandID*/, SUIT_Desktop* /*parent*/ )
55 {
56   return TRUE;
57 }
58
59 //=================================================================================
60 // class    : GEOMGUI::OnMousePress
61 // purpose  : Mouse press event processing. Should return FALSE to let the event 
62 //            be processed further.
63 //=================================================================================
64 bool GEOMGUI::OnMousePress( QMouseEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ )
65 {
66   return FALSE;
67 }
68
69 //=================================================================================
70 // class    : GEOMGUI::OnMouseMove
71 // purpose  : Mouse move event processing
72 //=================================================================================
73 bool GEOMGUI::OnMouseMove( QMouseEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ )
74 {
75   return TRUE;
76 }
77
78 //=================================================================================
79 // class    : GEOMGUI::OnKeyPress
80 // purpose  : Key press event processing
81 //=================================================================================
82 bool GEOMGUI::OnKeyPress( QKeyEvent* /*pe*/, SUIT_Desktop* /*parent*/, SUIT_ViewWindow* /*studyFrame*/ )
83 {
84   return TRUE;
85 }
86
87 //=================================================================================
88 // class    : GEOMGUI::SetSettings
89 // purpose  : Called when GEOM component is activated
90 //=================================================================================
91 void GEOMGUI::activate( SUIT_Desktop* /*parent*/ )
92 {
93 }
94
95 //=================================================================================
96 // class    : GEOMGUI::Deactivate
97 // purpose  : Called when GEOM component is deactivated
98 //=================================================================================
99 void GEOMGUI::deactivate()
100 {
101 }
102
103 //=================================================================================
104 // class    : GEOMGUI::Deactivate
105 // purpose  : Called when GEOM component is deactivated
106 //=================================================================================
107 GeometryGUI* GEOMGUI::getGeometryGUI()
108 {
109   return myGeometryGUI;
110 }
111