Salome HOME
#19765 EDF 21730 - long time to load med file file with huge amount of groups
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AddMeshElementDlg.h
1 // Copyright (C) 2007-2020  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_AddMeshElementDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_ADDMESHELEMENTDLG_H
28 #define SMESHGUI_ADDMESHELEMENTDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include <SMDSAbs_ElementType.hxx>
34
35 // Qt includes
36 #include <QDialog>
37
38 // IDL includes
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41
42 class QComboBox;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class SMESHGUI;
50 class SMESH_Actor;
51 class SVTK_Selector;
52 class LightApp_SelectionMgr;
53 class SMESHGUI_SpinBox;
54
55 namespace SMESH
56 {
57   struct TElementSimulation;
58 }
59
60 //=================================================================================
61 // class    : SMESHGUI_AddMeshElementDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_AddMeshElementDlg : public QDialog
65
66   Q_OBJECT
67 public:
68   SMESHGUI_AddMeshElementDlg( SMESHGUI*, SMDSAbs_EntityType = SMDSEntity_Edge );
69   ~SMESHGUI_AddMeshElementDlg();
70   
71 private:
72   void                        Init();
73   void                        enterEvent( QEvent* );        /* mouse enter the QWidget */
74   void                        keyPressEvent( QKeyEvent* );
75   void                        displaySimulation();
76   
77   bool                        isValid();
78   
79   typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
80   
81   SMESHGUI*                   mySMESHGUI;              /* Current SMESHGUI object */
82   LightApp_SelectionMgr*      mySelectionMgr;          /* User shape selection */
83   int                         myNbOkNodes;             /* to check when arguments is defined */
84   bool                        myBusy;
85   SVTK_Selector*              mySelector;
86   
87   QLineEdit*                  myEditCurrentArgument;   /* Current  LineEdit */
88   
89   SMDSAbs_EntityType          myGeomType;
90   int                         myElementType;
91   int                         myNbNodes;
92   bool                        myIsPoly;
93   
94   SMESH::SMESH_Mesh_var       myMesh;
95   SMESH_Actor*                myActor;
96   SMESH::TElementSimulation*  mySimulation;
97   QString                     myEntry;
98   GrpList                     myGroups;
99   
100   QGroupBox*                  GroupConstructors;
101   QRadioButton*               Constructor1;
102   QGroupBox*                  GroupGroups;
103   QLabel*                     TextLabel_GroupName;
104   QComboBox*                  ComboBox_GroupName;
105   QGroupBox*                  GroupButtons;
106   QPushButton*                buttonOk;
107   QPushButton*                buttonCancel;
108   QPushButton*                buttonApply;
109   QPushButton*                buttonHelp;
110   QGroupBox*                  GroupC1;
111   QLabel*                     TextLabelC1A1;
112   QPushButton*                SelectButtonC1A1;
113   QLineEdit*                  LineEditC1A1;
114   QCheckBox*                  ReverseOrDulicate;
115   SMESHGUI_SpinBox*           DiameterSpinBox;
116   
117   QString                     myHelpFileName;
118   
119 protected slots:
120   virtual void                reject();
121           void                onDiameterChanged();
122
123 private slots:
124   void                        ClickOnOk();
125   void                        ClickOnApply();
126   void                        ClickOnHelp();
127   void                        SetEditCurrentArgument();
128   void                        SelectionIntoArgument();
129   void                        DeactivateActiveDialog();
130   void                        ActivateThisDialog();
131   void                        CheckBox( int );
132   void                        onTextChange( const QString& );
133   void                        onOpenView();
134   void                        onCloseView();
135 };
136
137 #endif // SMESHGUI_ADDMESHELEMENTDLG_H