Salome HOME
merge V7_7_BR
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RotationDlg.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_RotationDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_ROTATIONDLG_H
28 #define SMESHGUI_ROTATIONDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMESHGUI_PreviewDlg.h"
33
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class SMESHGUI;
47 class SMESH_Actor;
48 class SMESHGUI_IdValidator;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI_FilterDlg;
51 class SVTK_Selector;
52 class LightApp_SelectionMgr;
53 class SMESH_LogicalFilter;
54
55 //=================================================================================
56 // class    : SMESHGUI_RotationDlg
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_EXPORT SMESHGUI_RotationDlg : public SMESHGUI_MultiPreviewDlg
60
61   Q_OBJECT
62
63 public:
64   SMESHGUI_RotationDlg( SMESHGUI* );
65   ~SMESHGUI_RotationDlg();
66
67 private:
68   void                   Init( bool = true );
69   void                   enterEvent( QEvent* );         /* mouse enter the QWidget */
70   void                   keyPressEvent( QKeyEvent* );
71   bool                   IsAxisOk();
72   void                   setNewMeshName();
73   
74   bool                   isValid();
75
76   SMESHGUI_IdValidator*  myIdValidator;
77   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
78   int                    myNbOkElements;          /* to check when elements are defined */
79   QString                myElementsId;
80   SVTK_Selector*         mySelector;
81   
82   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
83   int                    myConstructorId;
84   bool                   myBusy;
85   SMESH_Actor*           myActor;
86   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
87   QList<SMESH::SMESH_IDSource_var> myObjects;
88   QList<QString>                   myObjectsNames;
89   QList<SMESH::SMESH_Mesh_var>     myMeshes;
90   
91   QGroupBox*             GroupConstructors;
92   QRadioButton*          RadioButton1;
93   QGroupBox*             GroupButtons;
94   QPushButton*           buttonOk;
95   QPushButton*           buttonCancel;
96   QPushButton*           buttonApply;
97   QPushButton*           buttonHelp;
98   QGroupBox*             GroupArguments;
99   QGroupBox*             GroupAxis;
100   QLabel*                TextLabelElements;
101   QPushButton*           SelectElementsButton;
102   QLineEdit*             LineEditElements;
103   QCheckBox*             CheckBoxMesh;
104   
105   QLabel*                TextLabelPoint;
106   QPushButton*           SelectPointButton;
107   QLabel*                TextLabelX;
108   SMESHGUI_SpinBox*      SpinBox_X;
109   QLabel*                TextLabelY;
110   SMESHGUI_SpinBox*      SpinBox_Y;
111   QLabel*                TextLabelZ;
112   SMESHGUI_SpinBox*      SpinBox_Z;
113   QLabel*                TextLabelVector;
114   QPushButton*           SelectVectorButton;
115   QLabel*                TextLabelDX;
116   SMESHGUI_SpinBox*      SpinBox_DX;
117   QLabel*                TextLabelDY;
118   SMESHGUI_SpinBox*      SpinBox_DY;
119   QLabel*                TextLabelDZ;
120   SMESHGUI_SpinBox*      SpinBox_DZ;
121
122   QLabel*                TextLabelAngle;
123   SMESHGUI_SpinBox*      SpinBox_Angle;
124   //QCheckBox* CheckBoxCopy;
125   QGroupBox*             ActionBox;
126   QButtonGroup*          ActionGroup;
127   QCheckBox*             MakeGroupsCheck;
128   QLineEdit*             LineEditNewMesh;
129
130   QString                myHelpFileName;
131
132   QPushButton*           myFilterBtn;
133   SMESHGUI_FilterDlg*    myFilterDlg;
134
135 protected slots:
136   virtual void           onDisplaySimulation( bool );
137   virtual void           reject();
138  
139 private slots:
140   void                   ClickOnOk();
141   bool                   ClickOnApply();
142   void                   ClickOnHelp();
143   void                   SetEditCurrentArgument();
144   void                   SelectionIntoArgument();
145   void                   DeactivateActiveDialog();
146   void                   ActivateThisDialog();
147   void                   onTextChange( const QString& );
148   void                   onSelectMesh( bool );
149   void                   onVectorChanged();
150   void                   onActionClicked( int );
151   void                   onOpenView();
152   void                   onCloseView();
153   void                   setFilters();
154 };
155
156 #endif // SMESHGUI_ROTATIONDLG_H