Salome HOME
0022101: EDF 2492 SMESH: Update Destination field when "Find closest to destination...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MakeNodeAtPointDlg.h
1 // Copyright (C) 2007-2013  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.
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 // File   : SMESHGUI_MakeNodeAtPointDlg.h
24 // Author : Edward AGAPOV, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_MAKENODEATPOINTDLG_H
27 #define SMESHGUI_MAKENODEATPOINTDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 #include "SMESHGUI_Dialog.h"
33 #include "SMESHGUI_SelectionOp.h"
34
35 class QGroupBox;
36 class QLineEdit;
37 class QPushButton;
38 class QCheckBox;
39 class SMESHGUI_SpinBox;
40 class SMESHGUI_MeshEditPreview;
41 class SMESHGUI_MakeNodeAtPointDlg;
42
43 /*!
44  * \brief Operation to make a mesh pass through a point
45  */
46 class SMESHGUI_EXPORT SMESHGUI_MakeNodeAtPointOp: public SMESHGUI_SelectionOp
47 {
48   Q_OBJECT
49
50 public:
51   SMESHGUI_MakeNodeAtPointOp();
52   virtual ~SMESHGUI_MakeNodeAtPointOp();
53
54   virtual LightApp_Dialog*       dlg() const;  
55
56 protected:
57
58   virtual void                   startOperation();
59   virtual void                   stopOperation();
60
61   virtual void                   activateSelection();
62
63   bool                           isValid( QString& );
64
65 protected slots:
66   virtual bool                   onApply();
67
68 private slots:
69   void                           onSelectionDone();
70   void                           redisplayPreview();
71   void                           onTextChange( const QString& );
72   void                           onUpdateDestination();
73
74 private:
75   SMESHGUI_MakeNodeAtPointDlg*  myDlg;
76
77   SUIT_SelectionFilter*         myFilter;
78   int                           myMeshOldDisplayMode;
79   SMESHGUI_MeshEditPreview*     mySimulation;
80   SMESH_Actor*                  myMeshActor;
81   bool                          myNoPreview;
82   bool                          myUpdateDestination;
83 };
84
85 /*!
86  * \brief Dialog to make a mesh pass through a point
87  */
88
89 class SMESHGUI_EXPORT SMESHGUI_MakeNodeAtPointDlg : public SMESHGUI_Dialog
90 {
91   Q_OBJECT
92
93 public:
94   SMESHGUI_MakeNodeAtPointDlg();
95
96 private:
97   QWidget*                      createMainFrame( QWidget* );
98
99   QPushButton*                  myCoordBtn;
100   QPushButton*                  myUpdateBtn;
101   SMESHGUI_SpinBox*             myX;
102   SMESHGUI_SpinBox*             myY;
103   SMESHGUI_SpinBox*             myZ;
104   QGroupBox*                    myNodeToMoveGrp;
105   QPushButton*                  myIdBtn;
106   QLineEdit*                    myId;
107   SMESHGUI_SpinBox*             myCurrentX;
108   SMESHGUI_SpinBox*             myCurrentY;
109   SMESHGUI_SpinBox*             myCurrentZ;
110   SMESHGUI_SpinBox*             myDX;
111   SMESHGUI_SpinBox*             myDY;
112   SMESHGUI_SpinBox*             myDZ;
113   QCheckBox*                    myAutoSearchChkBox;
114   QCheckBox*                    myPreviewChkBox;
115
116   QString                       myHelpFileName;
117
118   friend class SMESHGUI_MakeNodeAtPointOp;
119
120 private slots:
121   void                          ButtonToggled( bool );
122 };
123
124 #endif // SMESHGUI_MAKENODEATPOINTDLG_H