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