]> SALOME platform Git repositories - modules/kernel.git/blob - src/SALOMEGUI/QAD_ViewFrame.h
Salome HOME
DCQ : Update msg File.
[modules/kernel.git] / src / SALOMEGUI / QAD_ViewFrame.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   : QAD_ViewFrame.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef QAD_ViewFrame_H
30 #define QAD_ViewFrame_H
31
32 #include "QAD.h"
33 #include "QAD_Application.h"
34 #include "QAD_StudyFrame.h"
35 #include "SALOME_InteractiveObject.hxx"
36 #include "SALOME_Selection.h"
37
38 // QT Include
39 #include <qmainwindow.h>
40
41 //class vtkRenderer;
42
43 class QAD_EXPORT QAD_ViewFrame : public QMainWindow
44 {
45   Q_OBJECT
46
47 public:
48   QAD_ViewFrame(QWidget* parent, const QString& title);
49   QAD_ViewFrame(QWidget* parent = 0);
50   virtual ~QAD_ViewFrame();
51
52   void                   cleanup();
53
54   virtual ViewType       getTypeView() const = 0; 
55   virtual QWidget*       getViewWidget() = 0;
56 //  virtual vtkRenderer*   getRenderer();
57
58   virtual void           setBackgroundColor( const QColor& ) = 0;
59   virtual QColor         backgroundColor() const = 0;
60
61   virtual void           SetSelectionMode( Selection_Mode mode ) = 0;
62   
63   virtual void           onAdjustTrihedron() = 0; 
64
65   /*  popup management */
66   virtual void           setPopupServer( QAD_Application* ) = 0;
67
68   /*  interactive object management */
69   virtual void           highlight( const Handle(SALOME_InteractiveObject)& IObject, 
70                                     bool highlight, bool immediatly = true ) = 0;
71   virtual void           unHighlightAll() = 0;
72   virtual void           rename( const Handle(SALOME_InteractiveObject)& IObject,
73                                  QString newName ) = 0;
74   virtual bool           isInViewer( const Handle(SALOME_InteractiveObject)& IObject ) = 0;
75   virtual bool           isVisible( const Handle(SALOME_InteractiveObject)& IObject ) = 0;
76
77   /*  undo/redo management */
78   virtual void           undo(SALOMEDS::Study_var aStudy,
79                               const char* StudyFrameEntry) = 0;
80   virtual void           redo(SALOMEDS::Study_var aStudy,
81                               const char* StudyFrameEntry) = 0;
82
83   static bool            isInViewer(SALOMEDS::Study_var aStudy,
84                                     const char* anEntry,
85                                     const char* StudyFrameEntry);
86
87   /* selection */
88   virtual Handle(SALOME_InteractiveObject)   FindIObject(const char* Entry) = 0;
89
90   /* display */         
91   virtual void           Display(const Handle(SALOME_InteractiveObject)& IObject, bool immediatly = true) = 0;
92   virtual void           DisplayOnly(const Handle(SALOME_InteractiveObject)& IObject) = 0;
93   virtual void           Erase(const Handle(SALOME_InteractiveObject)& IObject, bool immediatly = true) = 0;
94   virtual void           DisplayAll() = 0;
95   virtual void           EraseAll() = 0;
96   virtual void           Repaint() = 0;
97
98 protected slots:
99   virtual void           onViewPan() = 0; 
100   virtual void           onViewZoom() = 0;
101   virtual void           onViewFitAll() = 0;
102   virtual void           onViewFitArea() = 0;
103   virtual void           onViewGlobalPan() = 0; 
104   virtual void           onViewRotate() = 0;
105   virtual void           onViewReset() = 0;     
106   virtual void           onViewFront() = 0; 
107   virtual void           onViewBack() = 0; 
108   virtual void           onViewRight() = 0; 
109   virtual void           onViewLeft() = 0;     
110   virtual void           onViewBottom() = 0;
111   virtual void           onViewTop() = 0;
112   virtual void           onViewTrihedron() = 0; 
113   virtual void           onViewDump();
114
115 };
116
117 #endif
118