Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[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   void             setFileName( const QString& theFileName );
58
59 protected slots:
60   void             done( int );
61
62   void             onStart();
63   void             onClose();
64
65   bool             onBrowseFile();
66   void             onTimer();
67
68   void             onBuildCheckBoxClicked();
69
70 private:
71   void             updateButton( QPushButton*, bool );
72
73 private:
74   VISU::Result_var myResult;
75   VISU::VISU_Gen_i* myGenerator;
76
77   QString          myFileName;
78   QTime            myTime;
79   QTimer*          myTimer;
80
81   QGroupBox*       mySettingsBox;
82
83   QLineEdit*       myFileNameLineEdit;
84   QCheckBox*       myBuildAllCheckBox;
85   QCheckBox*       myBuildAtOnceCheckBox;
86
87   QGroupBox*       myProgressBox;
88
89   QCheckBox*       myBuildEntitiesCheckBox;
90   QPushButton*     myBuildEntitiesButton;
91
92   QCheckBox*       myBuildFieldsCheckBox;
93   QPushButton*     myBuildFieldsButton;
94
95   QCheckBox*       myBuildMinMaxCheckBox;
96   QPushButton*     myBuildMinMaxButton;
97
98   QCheckBox*       myBuildGroupsCheckBox;
99   QPushButton*     myBuildGroupsButton;
100
101   QGroupBox*       myTimeBox;
102   QLCDNumber*      myTimeLCDNumber;
103
104   QCheckBox*       myCloseCheckBox;
105
106   QPushButton*     myStartButton;
107
108   double           myCurrentTime;
109   bool             myIsRaiseColor;
110 };
111
112 #endif