Salome HOME
OCC functionality moving out from the widget
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_NewSectionDlg.h
1 // Copyright (C) 2013  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.
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);
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
53 signals:
54   void    addSection();
55   void    modifySection();
56   void    cancelSection();
57 public slots:
58 protected slots:
59 protected:
60   void    updateTitle();
61 private:
62   QFrame*             myBtnFrame;
63   QLineEdit*          myName;
64   QComboBox*          myLineType;
65   QCheckBox*          myIsClosed;
66   bool                myIsEdit;
67   QPushButton*        myAddBtn;
68   QPushButton*        myCancelBtn;
69 };
70
71 #endif // CURVECREATOR_NEWSECTION_H