1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_CreatePolyhedralVolumeDlg.h
25 // Author : Michael ZORIN
29 #ifndef DIALOGBOX_CREATEPOLYHEDRAL_H
30 #define DIALOGBOX_CREATEPOLYHEDRAL_H
47 class SVTK_ViewWindow;
48 class LightApp_SelectionMgr;
51 struct TPolySimulation;
55 #include <SALOMEconfig.h>
56 #include CORBA_SERVER_HEADER(SMESH_Mesh)
58 //=================================================================================
59 // class : SMESHGUI_CreatePolyhedralVolumeDlg
61 //=================================================================================
62 class SMESHGUI_CreatePolyhedralVolumeDlg : public QDialog
67 SMESHGUI_CreatePolyhedralVolumeDlg( SMESHGUI*, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
68 ~SMESHGUI_CreatePolyhedralVolumeDlg();
73 void closeEvent( QCloseEvent* e ) ;
74 void enterEvent ( QEvent * ) ; /* mouse enter the QWidget */
75 void hideEvent ( QHideEvent * ); /* ESC key */
76 int GetConstructorId();
77 void displaySimulation();
79 int checkEditLine(bool checkLast=true); /*! Checking for indices, return 1 if all ok, esle -1*/
81 SMESHGUI* mySMESHGUI ; /* Current SMESHGUI object */
82 LightApp_SelectionMgr* mySelectionMgr ; /* User shape selection */
83 SVTK_Selector* mySelector;
85 int myNbOkElements ; /* to check when elements are defined */
87 QLineEdit* myEditCurrentArgument;
89 SMESH::SMESH_Mesh_var myMesh;
91 SMESH::TPolySimulation* mySimulation;
93 QButtonGroup* GroupConstructors;
94 QRadioButton* RadioButton1;
95 QRadioButton* RadioButton2;
97 QGroupBox* GroupButtons;
98 QPushButton* buttonOk;
99 QPushButton* buttonCancel;
100 QPushButton* buttonApply;
101 QPushButton* buttonHelp;
102 QGroupBox* GroupContent;
103 QLabel* TextLabelIds;
104 QPushButton* SelectElementsButton;
105 QLineEdit* LineEditElements;
106 QListBox* myFacesByNodes;
107 QLabel* myFacesByNodesLabel;
108 QPushButton* AddButton;
109 QPushButton* RemoveButton;
111 QString myHelpFileName;
120 void ConstructorsClicked(int constructorId);
121 void ClickOnPreview(bool theToggled);
123 void ClickOnCancel();
126 void SetEditCurrentArgument() ;
127 void SelectionIntoArgument() ;
128 void DeactivateActiveDialog() ;
129 void ActivateThisDialog() ;
130 void onTextChange(const QString&);
131 void onListSelectionChanged();
134 QGridLayout* SMESHGUI_CreatePolyhedralVolumeDlgLayout;
135 QGridLayout* GroupConstructorsLayout;
136 QGridLayout* GroupButtonsLayout;
137 QGridLayout* GroupContentLayout;
140 #endif // DIALOGBOX_CREATEPOLYHEDRAL_H