]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_EvolutionDlg.h
Salome HOME
bf86a0bbf678de2493de2e3db012ec3893ec991d
[modules/visu.git] / src / VISUGUI / VisuGUI_EvolutionDlg.h
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 //  File   : VisuGUI_EvolutionDlg.h
23 //  Author : Oleg UVAROV
24 //  Module : VISU
25 //
26 #ifndef VISUGUI_EVOLUTIONDLG_H
27 #define VISUGUI_EVOLUTIONDLG_H
28
29 #include <QtxDialog.h>
30
31 #include <SALOMEDSClient_Study.hxx>
32
33 #include <SVTK_Selection.h>
34
35 class QComboBox;
36 class QIntValidator;
37 class QKeyEvent;
38 class QLineEdit;
39
40 class SALOME_Actor;
41 class SVTK_ViewWindow;
42
43 class VisuGUI;
44 class VISU_Evolution;
45
46 class VisuGUI_EvolutionDlg: public QtxDialog
47 {
48   Q_OBJECT
49
50 public:
51   VisuGUI_EvolutionDlg( VisuGUI* theModule, _PTR(Study) theStudy );
52   ~VisuGUI_EvolutionDlg();
53
54 public:
55   bool                      setField( _PTR(SObject) theField );
56
57   void                      restoreFromStudy( _PTR(SObject) theEvolution );
58
59 protected:
60   virtual void              setVisible( bool theIsVisible );
61   virtual void              keyPressEvent( QKeyEvent* theEvent );
62
63 protected slots:
64   virtual void              accept();
65
66 private:
67   void                      updateFromEngine();
68
69 private slots:
70   void                      onPointEdited( const QString& );
71   void                      onSelectionEvent();
72   void                      onViewWindowClosed();
73   void                      onHelp();
74
75 private:
76   VisuGUI*                  myModule;
77   VISU_Evolution*           myEngine;
78
79   QLineEdit*                myFieldLE;
80   QLineEdit*                myPointLE;
81   QComboBox*                myComponentCB;
82
83   QIntValidator*            myPointValidator;
84
85   SVTK_ViewWindow*          myViewWindow;
86   SALOME_Actor*             myPreviewActor;
87   Selection_Mode            myStoredSelectionMode;
88 };
89
90 #endif //VISUGUI_EVOLUTIONDLG_H