Salome HOME
yfr : merge 1.2
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddEdgeDlg.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_AddEdgeDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_ADD_EDGE_H
30 #define DIALOGBOX_ADD_EDGE_H
31
32 #include "SALOME_Selection.h"
33
34 // QT Includes
35 #include <qvariant.h>
36 #include <qdialog.h>
37
38 // Open CASCADE Includes
39 #include <TColStd_MapOfInteger.hxx>
40
41 class QVBoxLayout; 
42 class QHBoxLayout; 
43 class QGridLayout; 
44 class QButtonGroup;
45 class QGroupBox;
46 class QLabel;
47 class QLineEdit;
48 class QPushButton;
49 class QRadioButton;
50 class QCheckBox;
51 class SMESHGUI;
52
53 // IDL Headers
54 #include <SALOMEconfig.h>
55 #include CORBA_SERVER_HEADER(SMESH_Mesh)
56
57 //=================================================================================
58 // class    : SMESHGUI_AddEdgeDlg
59 // purpose  :
60 //=================================================================================
61 class SMESHGUI_AddEdgeDlg : public QDialog
62
63     Q_OBJECT
64
65 public:
66     SMESHGUI_AddEdgeDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
67     ~SMESHGUI_AddEdgeDlg();
68
69 private:
70
71     void Init( SALOME_Selection* Sel ) ;
72     void closeEvent( QCloseEvent* e ) ;
73     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
74
75     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
76     SALOME_Selection*             mySelection ;             /* User shape selection */
77     bool                          myOkNodes ;               /* to check when arguments is defined */
78
79     int                           myNodes ;
80     int                           myConstructorId ;         /* Current constructor id = radio button id */
81     QLineEdit*                    myEditCurrentArgument;    /* Current  LineEdit */
82
83     SMESH::SMESH_Mesh_var         myMesh;
84     TColStd_MapOfInteger          myMapIndex;
85     
86     QButtonGroup* GroupConstructors;
87     QRadioButton* Constructor1;
88     QGroupBox* GroupButtons;
89     QPushButton* buttonOk;
90     QPushButton* buttonCancel;
91     QPushButton* buttonApply;
92     QGroupBox* GroupC1;
93     QLabel* TextLabelC1A1;
94     QPushButton* SelectButtonC1A1;
95     QLineEdit* LineEditC1A1;
96
97 private slots:
98
99     void ConstructorsClicked(int constructorId);
100     void ClickOnOk();
101     void ClickOnCancel();
102     void ClickOnApply();
103     void SetEditCurrentArgument() ;
104     void SelectionIntoArgument() ;
105     void DeactivateActiveDialog() ;
106     void ActivateThisDialog() ;
107
108 protected:
109     QGridLayout* SMESHGUI_AddEdgeDlgLayout;
110     QGridLayout* GroupConstructorsLayout;
111     QGridLayout* GroupButtonsLayout;
112     QGridLayout* GroupC1Layout;
113 };
114
115 #endif // DIALOGBOX_ADD_EDGE_H