]> SALOME platform Git repositories - modules/geom.git/blob - src/MeasureGUI/MeasureGUI_WhatisDlg.h
Salome HOME
Fix issue 0020479: EDF 1116 GEOM: Create a group, "Add" button is inactive but "Selec...
[modules/geom.git] / src / MeasureGUI / MeasureGUI_WhatisDlg.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 //  GEOM GEOMGUI : GUI for Geometry component
23 //  File   : MeasureGUI_WhatisDlg.h
24 //  Author : Nicolas REJNERI
25 //  Module : GEOM
26 //  $Header$
27 //
28 #ifndef DIALOGBOX_WHATIS_H
29 #define DIALOGBOX_WHATIS_H
30
31 #include "GEOM_MeasureGUI.hxx"
32
33 #include "MeasureGUI_Skeleton.h"
34
35 //class MeasureGUI_1Sel1TextView_QTD;
36
37 #include <qvariant.h>
38 #include <qwidget.h>
39 class QVBoxLayout; 
40 class QHBoxLayout; 
41 class QGridLayout; 
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QTextEdit;
47 class QMessageBox;
48
49 class GEOM_MEASUREGUI_EXPORT MeasureGUI_Whatis_QTD : public QWidget
50
51     Q_OBJECT
52
53 public:
54     MeasureGUI_Whatis_QTD( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
55     ~MeasureGUI_Whatis_QTD();
56
57     QGroupBox* GroupBox1;
58
59     QLabel* TextLabel1;
60     QPushButton* PushButton1;
61     QLineEdit* LineEdit1;
62
63     QTextEdit* TextEdit1;
64
65     QLabel* TextLabel2;
66     QLineEdit* LineEdit2;
67     QPushButton* PushButton2;
68
69 protected:
70     QGridLayout* MeasureGUI_Whatis_QTDLayout;
71     QGridLayout* GroupBox1Layout;
72     QGridLayout* Layout1;
73 };
74
75
76 //=================================================================================
77 // class    : MeasureGUI_WhatisDlg
78 // purpose  :
79 //=================================================================================
80 class GEOM_MEASUREGUI_EXPORT MeasureGUI_WhatisDlg : public MeasureGUI_Skeleton
81
82     Q_OBJECT
83
84 public:
85     MeasureGUI_WhatisDlg (GeometryGUI* GUI, QWidget* parent);
86     ~MeasureGUI_WhatisDlg();
87
88 protected:
89     // redefined from GEOMBase_Helper and MeasureGUI_Skeleton
90     virtual void processObject();
91
92 protected slots:
93     virtual void ClickOnProperties();
94
95 private:
96     void         Init();
97     bool         getParameters( QString& );
98     QString      getKindOfShape( QString& );
99
100 private:
101     //MeasureGUI_1Sel1TextView_QTD* myGrp;
102     MeasureGUI_Whatis_QTD* myGrp;
103     //MeasureGUI_Params_Dlg* myParamsDlg;
104     QMessageBox* myParamsDlg;
105 };
106
107 #endif // DIALOGBOX_WHATIS_H