Salome HOME
INT PAL 0052683: Parameter "Color group" in the "Create Group" dialog box is empty
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_SewingDlg.h
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_SewingDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_SEWINGDLG_H
28 #define SMESHGUI_SEWINGDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Mesh)
39
40 class QButtonGroup;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QCheckBox;
47 class SMESHGUI;
48 class SMESH_Actor;
49 class SVTK_Selector;
50 class LightApp_SelectionMgr;
51
52 //=================================================================================
53 // class    : SMESHGUI_SewingDlg
54 // purpose  :
55 //=================================================================================
56 class SMESHGUI_EXPORT SMESHGUI_SewingDlg : public QDialog
57
58   Q_OBJECT
59
60 public:
61   SMESHGUI_SewingDlg( SMESHGUI* );
62   ~SMESHGUI_SewingDlg();
63
64 private:
65   void                    Init();
66   void                    enterEvent( QEvent* );                /* mouse enter the QWidget */
67   void                    keyPressEvent( QKeyEvent* );
68   int                     GetConstructorId();
69   bool                    IsValid();
70   
71   SMESHGUI*               mySMESHGUI;              /* Current SMESHGUI object */
72   LightApp_SelectionMgr*  mySelectionMgr;          /* User shape selection */
73   int                     myOk1, myOk2, myOk3, myOk4, myOk5, myOk6;    
74   QLineEdit*              myEditCurrentArgument;   /* Current  LineEdit */
75   SVTK_Selector*          mySelector;
76   
77   bool                    myBusy;
78   SMESH::SMESH_Mesh_var   myMesh;
79   SMESH_Actor*            myActor;
80   
81   QGroupBox*              ConstructorsBox;
82   QButtonGroup*           GroupConstructors;
83   QRadioButton*           RadioButton1;
84   QRadioButton*           RadioButton2;
85   QRadioButton*           RadioButton3;
86   QRadioButton*           RadioButton4;
87   QGroupBox*              GroupButtons;
88   QPushButton*            buttonOk;
89   QPushButton*            buttonCancel;
90   QPushButton*            buttonApply;
91   QPushButton*            buttonHelp;
92   QGroupBox*              GroupArguments;
93   QGroupBox*              SubGroup1;
94   QGroupBox*              SubGroup2;
95   QLabel*                 TextLabel1;
96   QLabel*                 TextLabel2;
97   QLabel*                 TextLabel3;
98   QLabel*                 TextLabel4;
99   QLabel*                 TextLabel5;
100   QLabel*                 TextLabel6;
101   QPushButton*            SelectButton1;
102   QPushButton*            SelectButton2;
103   QPushButton*            SelectButton3;
104   QPushButton*            SelectButton4;
105   QPushButton*            SelectButton5;
106   QPushButton*            SelectButton6;
107   QLineEdit*              LineEdit1;
108   QLineEdit*              LineEdit2;
109   QLineEdit*              LineEdit3;
110   QLineEdit*              LineEdit4;
111   QLineEdit*              LineEdit5;
112   QLineEdit*              LineEdit6;
113   QCheckBox*              CheckBoxMerge;
114   QCheckBox*              CheckBoxPolygons;
115   QCheckBox*              CheckBoxPolyedrs;
116
117   QString                 myHelpFileName;
118
119 protected slots:
120   virtual void            reject();
121
122 private slots:
123   void                    ConstructorsClicked( int );
124   void                    ClickOnOk();
125   bool                    ClickOnApply();
126   void                    ClickOnHelp();
127   void                    SetEditCurrentArgument();
128   void                    SelectionIntoArgument( bool = true );
129   void                    DeactivateActiveDialog();
130   void                    ActivateThisDialog();
131   void                    onTextChange( const QString& );
132 };
133
134 #endif // SMESHGUI_SEWINGDLG_H