Salome HOME
Merge from OCC_development_generic_2006
[modules/visu.git] / src / VISUGUI / VisuGUI_BuildProgressDlg.h
1 //  VISU VISUGUI : GUI of VISU 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   : 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.h>
35 #include <qdialog.h>
36
37 class QCheckBox;
38 class QGroupBox;
39 class QLCDNumber;
40 class QLineEdit;
41 class QPushButton;
42 class QTimer;
43
44 //! Build Progress Dialog.
45 class VisuGUI_BuildProgressDlg : public QDialog
46 {
47   Q_OBJECT
48
49 public:
50   VisuGUI_BuildProgressDlg( QWidget* );
51   ~VisuGUI_BuildProgressDlg();
52
53   virtual void     setGenerator( VISU::VISU_Gen_i* theGenerator ) { myGenerator = theGenerator; }
54   virtual void     show();
55
56   QString          fileName() const { return myFileName; }
57
58 protected slots:
59   void             done( int );
60
61   void             onStart();
62   void             onClose();
63
64   bool             onBrowseFile();
65   void             onTimer();
66
67   void             onBuildCheckBoxClicked();
68
69 private:
70   void             updateButton( QPushButton*, bool );
71
72 private:
73   VISU::Result_var myResult;
74   VISU::VISU_Gen_i* myGenerator;
75
76   QString          myFileName;
77   QTime            myTime;
78   QTimer*          myTimer;
79
80   QGroupBox*       mySettingsBox;
81
82   QLineEdit*       myFileNameLineEdit;
83   QCheckBox*       myBuildAllCheckBox;
84   QCheckBox*       myBuildAtOnceCheckBox;
85
86   QGroupBox*       myProgressBox;
87
88   QCheckBox*       myBuildEntitiesCheckBox;
89   QPushButton*     myBuildEntitiesButton;
90
91   QCheckBox*       myBuildFieldsCheckBox;
92   QPushButton*     myBuildFieldsButton;
93
94   QCheckBox*       myBuildMinMaxCheckBox;
95   QPushButton*     myBuildMinMaxButton;
96
97   QCheckBox*       myBuildGroupsCheckBox;
98   QPushButton*     myBuildGroupsButton;
99
100   QGroupBox*       myTimeBox;
101   QLCDNumber*      myTimeLCDNumber;
102
103   QCheckBox*       myCloseCheckBox;
104
105   QPushButton*     myStartButton;
106
107   double           myCurrentTime;
108   bool             myIsRaiseColor;
109 };
110
111 #endif