Salome HOME
86aa87aa3cad3e5107e72ca5fd0b6362766cc15a
[modules/geom.git] / src / CurveCreator / CurveCreator_UndoOptsDlg.h
1 // Copyright (C) 2013-2014  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 // File:        CurveCreator_UndoOptsDlg.h
21 // Author:      Sergey KHROMOV
22
23 #ifndef _CurveCreator_UndoOptsDlg_HeaderFile
24 #define _CurveCreator_UndoOptsDlg_HeaderFile
25
26 #include <QDialog>
27
28 class QButtonGroup;
29 class QLineEdit;
30 class QPushButton;
31
32
33 class CurveCreator_UndoOptsDlg : public QDialog
34 {
35   Q_OBJECT
36
37 public:
38
39   CurveCreator_UndoOptsDlg(QWidget* parent);
40
41   ~CurveCreator_UndoOptsDlg();
42
43   void setUndoDepth(const int theDepth);
44
45   int getUndoDepth() const;
46
47   bool isEnabled() const;
48
49   bool isUnlimited() const;
50
51 private:
52
53   void init();
54
55   void setTabOrder();
56
57 private slots:
58
59   void optionChanged(int theId);
60
61   void accept();
62
63 protected:
64
65   int           myUndoDepth;
66   QButtonGroup *myOptsBtnGrp;
67   QLineEdit    *myBufferSizeEdit;
68   QPushButton  *myOkBtn;
69   QPushButton  *myCancelBtn;
70
71 };
72
73 #endif