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