1 // Copyright (C) 2007-2021 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, or (at your option) any later version.
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 // File : StdMeshersGUI_FixedPointsParamWdg.h
21 // Author : Open CASCADE S.A.S. (dmv)
23 #ifndef STDMESHERSGUI_FIXEDPOINTSPARAMWGD_H
24 #define STDMESHERSGUI_FIXEDPOINTSPARAMWGD_H
28 #include "SMESH_StdMeshersGUI.hxx"
30 #include <smIdType.hxx>
34 #include <QStringList>
37 class SMESHGUI_SpinBox;
42 class QListWidgetItem;
44 class QTreeWidgetItem;
46 class STDMESHERSGUI_EXPORT StdMeshersGUI_FixedPointsParamWdg : public QWidget
53 StdMeshersGUI_FixedPointsParamWdg( QWidget* parent = 0 );
54 ~StdMeshersGUI_FixedPointsParamWdg();
56 bool eventFilter( QObject*, QEvent* );
58 SMESH::double_array_var GetListOfPoints();
59 void SetListOfPoints( SMESH::double_array_var );
61 SMESH::smIdType_array_var GetListOfSegments();
62 void SetListOfSegments( SMESH::smIdType_array_var );
64 QString GetValue() const { return myParamValue; }
69 void onCheckBoxChanged();
74 void addPoint( double );
76 double point( int ) const;
77 void setNbSegments( int, SMESH::smIdType );
78 smIdType nbSegments( int ) const;
80 static QTreeWidgetItem* newTreeItem( double v1, double v2 );
81 static QListWidgetItem* newListItem( double v1 );
82 static QString treeItemText( double v1, double v2 );
85 QListWidget* myListWidget;
86 QTreeWidget* myTreeWidget;
87 SMESHGUI_SpinBox* mySpinBox;
88 QPushButton* myAddButton;
89 QPushButton* myRemoveButton;
90 QCheckBox* mySameValues;
94 #endif // STDMESHERSGUI_FIXEDPOINTSPARAMWGD_H