Salome HOME
PR: merge from tag BR_CCRT2_mergeto_V2_1_0b1
[modules/kernel.git] / src / SALOMEGUI / SALOMEGUI.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
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   : SALOMEGUI.hxx
25 //  Author : Sergey ANIKIN
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef SALOMEGUI_HeaderFile
30 #define SALOMEGUI_HeaderFile
31
32 #include <Standard_Macro.hxx>
33
34 #include <qobject.h>
35 #include <qstring.h>
36
37 class QAD_Desktop;
38 class QAD_ViewFrame;
39 class QAD_StudyFrame;
40 class SALOME_Event;
41
42 class Handle_SALOME_InteractiveObject;
43
44 class QKeyEvent;
45 class QMouseEvent;
46 class QPopupMenu;
47 class QString;
48
49
50 class Standard_EXPORT SALOMEGUI : public QObject
51 {
52   Q_OBJECT
53
54 public:
55   SALOMEGUI( const QString& name = "", QObject* parent = 0 );
56   virtual ~SALOMEGUI();
57
58   virtual bool OnGUIEvent        (int theCommandID, QAD_Desktop* parent);
59   virtual bool OnKeyPress        (QKeyEvent* pe, QAD_Desktop* parent, QAD_StudyFrame* studyFrame);
60   virtual bool OnMousePress      (QMouseEvent* pe, QAD_Desktop* parent, QAD_StudyFrame* studyFrame);
61   virtual bool OnMouseMove       (QMouseEvent* pe, QAD_Desktop* parent, QAD_StudyFrame* studyFrame);
62   virtual bool SetSettings       ( QAD_Desktop* parent );
63   virtual bool SetSettings       ( QAD_Desktop* parent, char* compName );
64   virtual bool CustomPopup       ( QAD_Desktop* parent, QPopupMenu* popup, const QString & theContext,
65                                    const QString & theParent, const QString & theObject );
66   virtual void DefinePopup       ( QString & theContext, QString & theParent, QString & theObject );
67   virtual bool ActiveStudyChanged( QAD_Desktop* parent );
68   virtual void BuildPresentation ( const Handle(SALOME_InteractiveObject)& theIO,
69                                    QAD_ViewFrame*  = 0 );
70   virtual void SupportedViewType (int* buffer, int bufferSize);
71   virtual void Deactivate        ();
72
73 signals:
74   void SignalDeactivateActiveDialog();
75   void SignalCloseAllDialogs       ();  
76
77 private:
78   QString myName;
79 };
80
81 #endif