Version: 9.12.0
SMESHGUI_SingleEditDlg.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 CEA, EDF, 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 // File : SMESHGUI_SingleEditDlg.h
24 // Author : Sergey LITONIN, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_SINGLEEDITDLG_H
27 #define SMESHGUI_SINGLEEDITDLG_H
28 
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31 
32 // Qt includes
33 #include <QDialog>
34 
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
38 
39 class QLineEdit;
40 class QPushButton;
41 
42 class SMESHGUI;
43 class SMESH_Actor;
44 class SVTK_Selector;
45 class LightApp_SelectionMgr;
46 
53 {
54  Q_OBJECT
55 
56 public:
58  virtual ~SMESHGUI_SingleEditDlg();
59 
60  void Init();
61 
62 protected slots:
63  void onOk();
64  virtual bool onApply();
65  virtual void reject();
66  void onHelp();
67 
68  void onDeactivate();
69 
70  void onSelectionDone();
71  void onTextChange( const QString& );
72 
73 private slots:
74  void onOpenView();
75  void onCloseView();
76 
77 
78 protected:
79  void enterEvent( QEvent* );
80  void keyPressEvent( QKeyEvent* );
81  QWidget* createButtonFrame( QWidget* );
82  QWidget* createMainFrame( QWidget* );
83  bool isValid( const bool ) const;
84  bool getNodeIds( const QString&, int&, int& ) const;
85  virtual bool process( SMESH::SMESH_MeshEditor_ptr, const int, const int ) = 0;
86 
87 protected:
88  bool myBusy;
89  QPushButton* myOkBtn;
90  QPushButton* myApplyBtn;
91  QPushButton* myCloseBtn;
92  QPushButton* myHelpBtn;
93  QLineEdit* myEdge;
95 
96  LightApp_SelectionMgr* mySelectionMgr;
97  SVTK_Selector* mySelector;
99 
100  QString myHelpFileName;
101 };
102 
109 {
110  Q_OBJECT
111 
112 public:
115 
116 protected:
117  virtual bool process( SMESH::SMESH_MeshEditor_ptr, const int, const int );
118 };
119 
126 {
127  Q_OBJECT
128 
129 public:
132 
133 protected:
134  virtual bool process( SMESH::SMESH_MeshEditor_ptr, const int, const int );
135 };
136 
137 #endif // SMESHGUI_SINGLEEDITDLG_H
#define SMESHGUI_EXPORT
Definition: SMESH_SMESHGUI.hxx:36
Class : SMESHGUI_SingleEditDlg Description : Base class for dialogs of diagonal inversion and union o...
Definition: SMESHGUI_SingleEditDlg.h:53
QLineEdit * myEdge
Definition: SMESHGUI_SingleEditDlg.h:93
SMESHGUI * mySMESHGUI
Definition: SMESHGUI_SingleEditDlg.h:98
QPushButton * myHelpBtn
Definition: SMESHGUI_SingleEditDlg.h:92
QString myHelpFileName
Definition: SMESHGUI_SingleEditDlg.h:100
SMESH_Actor * myActor
Definition: SMESHGUI_SingleEditDlg.h:94
bool myBusy
Definition: SMESHGUI_SingleEditDlg.h:88
QPushButton * myOkBtn
Definition: SMESHGUI_SingleEditDlg.h:89
LightApp_SelectionMgr * mySelectionMgr
Definition: SMESHGUI_SingleEditDlg.h:96
SVTK_Selector * mySelector
Definition: SMESHGUI_SingleEditDlg.h:97
virtual bool process(SMESH::SMESH_MeshEditor_ptr, const int, const int)=0
QPushButton * myCloseBtn
Definition: SMESHGUI_SingleEditDlg.h:91
QPushButton * myApplyBtn
Definition: SMESHGUI_SingleEditDlg.h:90
Class : SMESHGUI_TrianglesInversionDlg Description : Inversion of the diagonal of a pseudo-quadrangle...
Definition: SMESHGUI_SingleEditDlg.h:109
virtual bool process(SMESH::SMESH_MeshEditor_ptr, const int, const int)
Definition: SMESHGUI_SingleEditDlg.cxx:570
virtual ~SMESHGUI_TrianglesInversionDlg()
Definition: SMESHGUI_SingleEditDlg.cxx:566
SMESHGUI_TrianglesInversionDlg(SMESHGUI *)
Class : SMESHGUI_TrianglesInversionDlg Description : Inversion of the diagonal of a pseudo-quadrangle...
Definition: SMESHGUI_SingleEditDlg.cxx:559
Class : SMESHGUI_UnionOfTwoTrianglesDlg Description : Construction of a quadrangle by deletion of the...
Definition: SMESHGUI_SingleEditDlg.h:126
virtual bool process(SMESH::SMESH_MeshEditor_ptr, const int, const int)
Definition: SMESHGUI_SingleEditDlg.cxx:594
virtual ~SMESHGUI_UnionOfTwoTrianglesDlg()
Definition: SMESHGUI_SingleEditDlg.cxx:590
SMESHGUI_UnionOfTwoTrianglesDlg(SMESHGUI *)
Class : SMESHGUI_UnionOfTwoTrianglesDlg Description : Construction of a quadrangle by deletion of the...
Definition: SMESHGUI_SingleEditDlg.cxx:583
Definition: SMESHGUI.h:84
Definition: SMESH_Actor.h:55