Salome HOME
Add some comments
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_EdgesConnectivityDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH 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   : SMESHGUI_EdgesConnectivityDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_EDGES_CONNECTIVITY_H
30 #define DIALOGBOX_EDGES_CONNECTIVITY_H
31
32 #include "SALOME_Selection.h"
33
34 // QT Includes
35 #include <qvariant.h>
36 #include <qdialog.h>
37
38 class QVBoxLayout; 
39 class QHBoxLayout; 
40 class QGridLayout; 
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class QCheckBox;
48 class SMESHGUI;
49 class SMESHGUI_SpinBox;
50
51 // IDL Headers
52 #include <SALOMEconfig.h>
53 #include CORBA_SERVER_HEADER(SMESH_Mesh)
54
55 //=================================================================================
56 // class    : SMESHGUI_EdgesConnectivityDlg
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_EdgesConnectivityDlg : public QDialog
60
61     Q_OBJECT
62
63 public:
64     SMESHGUI_EdgesConnectivityDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
65     ~SMESHGUI_EdgesConnectivityDlg();
66
67 private:
68
69     void Init( SALOME_Selection* Sel ) ;
70     void closeEvent( QCloseEvent* e ) ;
71     void enterEvent ( QEvent * ) ;
72
73     SMESHGUI*                     mySMESHGUI ;
74     SALOME_Selection*             mySelection ;
75     bool                          myOkActor ;
76     int                           myConstructorId ; 
77     QLineEdit*                    myEditCurrentArgument; 
78     
79     QButtonGroup* GroupConstructors;
80     QRadioButton* Constructor1;
81     QGroupBox*    GroupButtons;
82     QPushButton*  buttonOk;
83     QPushButton*  buttonCancel;
84     QPushButton*  buttonApply;
85     QGroupBox*    GroupC1;
86     QLabel*       TextLabelC1A1;
87     QPushButton*  SelectButtonC1A1;
88     QLineEdit*    LineEditC1A1;
89
90     QCheckBox*    BoundaryEdges;
91     QCheckBox*    ManifoldEdges;
92     QCheckBox*    NonManifoldEdges;
93     QCheckBox*    FeatureEdges;
94
95     QLabel*       FeatureAngle;
96     SMESHGUI_SpinBox* SpinBox_FeatureAngle ;
97
98 private slots:
99
100     void ConstructorsClicked(int constructorId);
101     void ClickOnOk();
102     void ClickOnCancel();
103     void ClickOnApply();
104     void SetEditCurrentArgument() ;
105     void SelectionIntoArgument() ;
106     void DeactivateActiveDialog() ;
107     void ActivateThisDialog() ;
108
109     void CheckBox( int );
110
111 protected:
112     QGridLayout* SMESHGUI_EdgesConnectivityDlgLayout;
113     QGridLayout* GroupConstructorsLayout;
114     QGridLayout* GroupButtonsLayout;
115     QGridLayout* GroupC1Layout;
116
117     QHBoxLayout* hbox_2;
118     QVBoxLayout* vbox;
119     QVBoxLayout* vbox_2;
120 };
121
122 #endif // DIALOGBOX_EDGES_CONNECTIVITY_H