1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // SMESH SMESHGUI : GUI for SMESH component
21 // File : SMESHGUI_ScaleDlg.h
22 // Author : Sergey Kuul, Open CASCADE S.A.S.
24 #ifndef SMESHGUI_SCALEDLG_H
25 #define SMESHGUI_SCALEDLG_H
28 #include "SMESH_SMESHGUI.hxx"
29 #include "SMESHGUI_PreviewDlg.h"
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(SMESH_Mesh)
43 class SMESHGUI_IdValidator;
44 class SMESHGUI_SpinBox;
45 class SMESHGUI_FilterDlg;
48 class LightApp_SelectionMgr;
49 class SMESH_LogicalFilter;
51 //=================================================================================
52 // class : SMESHGUI_ScaleDlg
54 //=================================================================================
55 class SMESHGUI_EXPORT SMESHGUI_ScaleDlg : public SMESHGUI_PreviewDlg
60 SMESHGUI_ScaleDlg( SMESHGUI* );
64 void Init( bool = true );
65 void enterEvent( QEvent* ); /* mouse enter the QWidget */
66 void keyPressEvent( QKeyEvent* );
67 int GetConstructorId();
68 void setNewMeshName();
71 void getScale( SMESH::PointStruct& thePoint,
72 SMESH::double_array_var& theScaleFact);
74 SMESHGUI_IdValidator* myIdValidator;
75 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
77 int myNbOkElements; /* to check when elements are defined */
79 SVTK_Selector* mySelector;
81 QWidget* myEditCurrentArgument;
84 SMESH::SMESH_Mesh_var myMesh;
86 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
88 SMESH::SMESH_IDSource_var mySelectedObject;
90 QGroupBox* ConstructorsBox;
91 QButtonGroup* GroupConstructors;
92 QRadioButton* RadioButton1;
93 QRadioButton* RadioButton2;
94 QGroupBox* GroupButtons;
95 QPushButton* buttonOk;
96 QPushButton* buttonCancel;
97 QPushButton* buttonApply;
98 QPushButton* buttonHelp;
99 QGroupBox* GroupArguments;
100 QLabel* TextLabelElements;
101 QPushButton* SelectElementsButton;
102 QLineEdit* LineEditElements;
103 QCheckBox* CheckBoxMesh;
105 QPushButton* SelectButton1;
106 QLabel* TextLabel1_1;
107 SMESHGUI_SpinBox* SpinBox1_1;
108 QLabel* TextLabel1_2;
109 SMESHGUI_SpinBox* SpinBox1_2;
110 QLabel* TextLabel1_3;
111 SMESHGUI_SpinBox* SpinBox1_3;
113 SMESHGUI_SpinBox* SpinBox_FX;
115 SMESHGUI_SpinBox* SpinBox_FY;
117 SMESHGUI_SpinBox* SpinBox_FZ;
118 QGroupBox* ActionBox;
119 QButtonGroup* ActionGroup;
120 QCheckBox* MakeGroupsCheck;
121 QLineEdit* LineEditNewMesh;
123 QString myHelpFileName;
125 QPushButton* myFilterBtn;
126 SMESHGUI_FilterDlg* myFilterDlg;
130 virtual void onDisplaySimulation( bool );
131 virtual void reject();
134 void ConstructorsClicked( int );
138 void SetEditCurrentArgument();
139 void SelectionIntoArgument();
140 void DeactivateActiveDialog();
141 void ActivateThisDialog();
142 void onTextChange( const QString& );
143 void onSelectMesh( bool );
144 void onActionClicked( int );
148 #endif // SMESHGUI_SCALEDLG_H