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