Salome HOME
309a0c1dd9dfee50e44c172edce9290f32ba100c
[modules/geom.git] / src / CurveCreator / CurveCreator_NewSectionDlg.h
1 // Copyright (C) 2013-2020  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef CURVECREATOR_NEWSECTION_H
21 #define CURVECREATOR_NEWSECTION_H
22
23 #include "CurveCreator.hxx"
24 #include "CurveCreator_ICurve.hxx"
25
26 #include <QDockWidget>
27
28 //class CurveCreator_Curve;
29
30 class QLineEdit;
31 class QComboBox;
32 class QCheckBox;
33 class QPushButton;
34 class QAbstractButton;
35 class QDialogButtonBox;
36 class QFrame;
37
38 class CurveCreator_NewSectionDlg : public QWidget
39 {
40   Q_OBJECT
41 public:
42   explicit CurveCreator_NewSectionDlg(QWidget *parent = 0, bool enableClosed = true );
43
44   QString getName() const;
45   bool    isClosed() const;
46   CurveCreator::SectionType getSectionType() const;
47
48   void    setSectionParameters( const QString& theName, bool isClosed, CurveCreator::SectionType theType );
49   void    setSectionName(const QString& theName );
50   void    clear();
51   void    setEditMode( bool isEdit );
52   bool    isEnableClosed() const { return myIsEnableClosed; }
53
54 signals:
55   void    addSection();
56   void    modifySection();
57   void    cancelSection();
58 public slots:
59 protected slots:
60 protected:
61   void    updateTitle();
62 private:
63   QFrame*             myBtnFrame;
64   QLineEdit*          myName;
65   QComboBox*          myLineType;
66   QCheckBox*          myIsClosed;
67   bool                myIsEdit;
68   bool                myIsEnableClosed;
69   QPushButton*        myAddBtn;
70   QPushButton*        myCancelBtn;
71 };
72
73 #endif // CURVECREATOR_NEWSECTION_H