Salome HOME
Merge with version on tag OCC-V2_1_0d
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GEOMGUI.cxx
25 //  Author : Vadim SANDLER
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GEOMGUI.h"
30
31 #include "QAD_Desktop.h"
32 #include "QAD_StudyFrame.h"
33 #include "QAD_Application.h"
34 #include <qevent.h>
35
36 //=================================================================================
37 // class    : GEOMGUI::GEOMGUI
38 // purpose  : Constructor
39 //=================================================================================
40 GEOMGUI::GEOMGUI( QObject* parent ) : 
41   QObject ( parent )
42 {
43 }
44
45 //=================================================================================
46 // class    : GEOMGUI::GEOMGUI
47 // purpose  : Destructor
48 //=================================================================================
49 GEOMGUI::~GEOMGUI()
50 {
51 }
52
53 //=================================================================================
54 // class    : GEOMGUI::OnGUIEvent
55 // purpose  : Main/popup menu events processing
56 //=================================================================================
57 bool GEOMGUI::OnGUIEvent( int /*theCommandID*/, QAD_Desktop* /*parent*/ )
58 {
59   return TRUE;
60 }
61
62 //=================================================================================
63 // class    : GEOMGUI::OnMousePress
64 // purpose  : Mouse press event processing. Should return FALSE to let the event 
65 //            be processed further.
66 //=================================================================================
67 bool GEOMGUI::OnMousePress( QMouseEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyFrame* /*studyFrame*/ )
68 {
69   return FALSE;
70 }
71
72 //=================================================================================
73 // class    : GEOMGUI::OnMouseMove
74 // purpose  : Mouse move event processing
75 //=================================================================================
76 bool GEOMGUI::OnMouseMove( QMouseEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyFrame* /*studyFrame*/ )
77 {
78   return TRUE;
79 }
80
81 //=================================================================================
82 // class    : GEOMGUI::OnKeyPress
83 // purpose  : Key press event processing
84 //=================================================================================
85 bool GEOMGUI::OnKeyPress( QKeyEvent* /*pe*/, QAD_Desktop* /*parent*/, QAD_StudyFrame* /*studyFrame*/ )
86 {
87   return TRUE;
88 }
89
90 //=================================================================================
91 // class    : GEOMGUI::SetSettings
92 // purpose  : Called when GEOM component is activated
93 //=================================================================================
94 bool GEOMGUI::SetSettings( QAD_Desktop* /*parent*/ )
95 {
96   return TRUE;
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::ActiveStudyChanged
109 // purpose  : Called when active study changed
110 //=================================================================================
111 bool GEOMGUI::ActiveStudyChanged( QAD_Desktop* /*parent*/ )
112 {
113   return TRUE;
114 }
115