Version: 9.16.0
SMESHGUI_RemoveNodesDlg.h
Go to the documentation of this file.
1// Copyright (C) 2007-2026 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// SMESH SMESHGUI : GUI for SMESH component
24// File : SMESHGUI_RemoveNodesDlg.h
25// Author : Nicolas REJNERI, Open CASCADE S.A.S.
26//
27#ifndef SMESHGUI_REMOVENODESDLG_H
28#define SMESHGUI_REMOVENODESDLG_H
29
30// SMESH includes
31#include "SMESH_SMESHGUI.hxx"
32
33// Qt includes
34#include <QDialog>
35
36// IDL includes
37#include <SALOMEconfig.h>
38#include CORBA_SERVER_HEADER(SMESH_Mesh)
39
40class QGroupBox;
41class QLabel;
42class QLineEdit;
43class QPushButton;
44class QRadioButton;
45
46class SMESHGUI;
48class SMESH_Actor;
49class SVTK_Selector;
50class LightApp_SelectionMgr;
51
52//=================================================================================
53// class : SMESHGUI_RemoveNodesDlg
54// purpose :
55//=================================================================================
57{
58 Q_OBJECT
59
60public:
63
64private:
65 void Init();
66 void enterEvent( QEvent* ); /* mouse enter the QWidget */
67 void keyPressEvent( QKeyEvent* );
68
69 LightApp_SelectionMgr* mySelectionMgr;
70 SVTK_Selector* mySelector;
72
73 int myNbOkNodes; /* to check when arguments is defined */
74 int myConstructorId; /* Current constructor id = radio button id */
75 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
76
77 bool myBusy;
78 SMESH::SMESH_Mesh_var myMesh;
80
82 QRadioButton* Constructor1;
84 QPushButton* buttonOk;
85 QPushButton* buttonCancel;
86 QPushButton* buttonApply;
87 QPushButton* buttonHelp;
90 QPushButton* SelectButtonC1A1;
91 QLineEdit* LineEditC1A1;
92
94
96
97protected slots:
98 virtual void reject();
99
100private slots:
101 void ClickOnOk();
102 void ClickOnApply();
103 void ClickOnHelp();
104 void SetEditCurrentArgument();
105 void SelectionIntoArgument();
106 void DeactivateActiveDialog();
107 void ActivateThisDialog();
108 void onTextChange( const QString& );
109 void onOpenView();
110 void onCloseView();
111 void setFilters();
112 void updateButtons();
113};
114
115#endif // SMESHGUI_REMOVENODESDLG_H
#define SMESHGUI_EXPORT
Definition: SMESH_SMESHGUI.hxx:36
Class : SMESHGUI_FilterDlg Description : Dialog to specify filters for VTK viewer.
Definition: SMESHGUI_FilterDlg.h:217
Definition: SMESHGUI_RemoveNodesDlg.h:57
QPushButton * buttonHelp
Definition: SMESHGUI_RemoveNodesDlg.h:87
SMESHGUI * mySMESHGUI
Definition: SMESHGUI_RemoveNodesDlg.h:71
QPushButton * buttonOk
Definition: SMESHGUI_RemoveNodesDlg.h:84
bool myBusy
Definition: SMESHGUI_RemoveNodesDlg.h:77
LightApp_SelectionMgr * mySelectionMgr
Definition: SMESHGUI_RemoveNodesDlg.h:69
SVTK_Selector * mySelector
Definition: SMESHGUI_RemoveNodesDlg.h:70
QLineEdit * LineEditC1A1
Definition: SMESHGUI_RemoveNodesDlg.h:91
QLabel * TextLabelC1A1
Definition: SMESHGUI_RemoveNodesDlg.h:89
QGroupBox * GroupC1
Definition: SMESHGUI_RemoveNodesDlg.h:88
QPushButton * SelectButtonC1A1
Definition: SMESHGUI_RemoveNodesDlg.h:90
QRadioButton * Constructor1
Definition: SMESHGUI_RemoveNodesDlg.h:82
QString myHelpFileName
Definition: SMESHGUI_RemoveNodesDlg.h:93
int myConstructorId
Definition: SMESHGUI_RemoveNodesDlg.h:74
QPushButton * buttonApply
Definition: SMESHGUI_RemoveNodesDlg.h:86
SMESHGUI_FilterDlg * myFilterDlg
Definition: SMESHGUI_RemoveNodesDlg.h:95
int myNbOkNodes
Definition: SMESHGUI_RemoveNodesDlg.h:73
QGroupBox * GroupButtons
Definition: SMESHGUI_RemoveNodesDlg.h:83
QLineEdit * myEditCurrentArgument
Definition: SMESHGUI_RemoveNodesDlg.h:75
QGroupBox * GroupConstructors
Definition: SMESHGUI_RemoveNodesDlg.h:81
SMESH_Actor * myActor
Definition: SMESHGUI_RemoveNodesDlg.h:79
QPushButton * buttonCancel
Definition: SMESHGUI_RemoveNodesDlg.h:85
SMESH::SMESH_Mesh_var myMesh
Definition: SMESHGUI_RemoveNodesDlg.h:78
Definition: SMESHGUI.h:84
Definition: SMESH_Actor.h:56