Salome HOME
c02c27c7d7ceed7be3974ed7795f3b1af20537ed
[modules/visu.git] / src / VISUGUI / VisuGUI_BuildProgressDlg.h
1 // Copyright (C) 2007-2011  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 //  VISU VISUGUI : GUI of VISU component
24 //  File   : VisuGUI_BuildProgressDlg.h
25 //  Author : Oleg UVAROV
26 //  Module : VISU
27 //  $Header$
28 //
29 #ifndef VISUGUI_BUILDPROGRESSDLG_H
30 #define VISUGUI_BUILDPROGRESSDLG_H
31
32 #include "VISU_Gen_i.hh"
33
34 #include <QDateTime>
35 #include <QDialog>
36
37 class QCheckBox;
38 class QGroupBox;
39 class QLCDNumber;
40 class QLineEdit;
41 class QPushButton;
42 class QTimer;
43
44
45 //! Build Progress Dialog.
46 class VisuGUI_BuildProgressDlg : public QDialog
47 {
48   Q_OBJECT
49
50 public:
51   VisuGUI_BuildProgressDlg( QWidget* );
52   ~VisuGUI_BuildProgressDlg();
53
54   virtual void     setGenerator( VISU::VISU_Gen_i* theGenerator ) { myGenerator = theGenerator; }
55   virtual void     show();
56
57   QString          fileName() const { return myFileName; }
58   void             setFileName( const QString& theFileName );
59
60 private:
61   void             keyPressEvent( QKeyEvent* e );
62
63 protected slots:
64   void             done( int );
65
66   void             onStart();
67   void             onClose();
68   void             onHelp();
69
70   bool             onBrowseFile();
71   void             onTimer();
72
73   void             onBuildCheckBoxClicked();
74
75 private:
76   void             updateButton( QPushButton*, bool );
77
78 private:
79   VISU::Result_var myResult;
80   VISU::VISU_Gen_i* myGenerator;
81
82   QString          myFileName;
83   QTime            myTime;
84   QTimer*          myTimer;
85
86   QGroupBox*       mySettingsBox;
87
88   QLineEdit*       myFileNameLineEdit;
89   QCheckBox*       myBuildAllCheckBox;
90   QCheckBox*       myBuildAtOnceCheckBox;
91
92   QGroupBox*       myProgressBox;
93
94   QPushButton*  myBuildEntitiesButton;
95
96   QCheckBox*       myBuildFieldsCheckBox;
97   QPushButton*     myBuildFieldsButton;
98
99   QCheckBox*       myBuildMinMaxCheckBox;
100   QPushButton*     myBuildMinMaxButton;
101
102   QCheckBox*       myBuildGroupsCheckBox;
103   QPushButton*     myBuildGroupsButton;
104
105   QGroupBox*       myTimeBox;
106   QLCDNumber*      myTimeLCDNumber;
107
108   QCheckBox*       myCloseCheckBox;
109
110   QPushButton*     myStartButton;
111
112   double           myCurrentTime;
113   bool             myIsRaiseColor;
114 };
115
116 #endif