]> SALOME platform Git repositories - modules/gui.git/blob - src/PyEditor/PyEditor_SettingsDlg.h
Salome HOME
Copyright update: 2016
[modules/gui.git] / src / PyEditor / PyEditor_SettingsDlg.h
1 // Copyright (C) 2015-2016  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 // File   : PyEditor_SettingsDlg.h
20 // Author : Maxim GLIBIN, Open CASCADE S.A.S. (maxim.glibin@opencascade.com)
21 //
22
23 #ifndef PYEDITOR_SETTINGSDLG_H
24 #define PYEDITOR_SETTINGSDLG_H
25
26 #include <QDialog>
27 #include "PyEditor.h"
28
29 class PyEditor_Editor;
30 class QCheckBox;
31 class QLabel;
32 class QPushButton;
33 class QSpinBox;
34 class QtxFontEdit;
35
36 class PYEDITOR_EXPORT PyEditor_SettingsDlg : public QDialog
37 {
38   Q_OBJECT
39
40 public:
41   PyEditor_SettingsDlg( PyEditor_Editor*, QWidget* = 0 );
42
43   bool    isSetAsDefault();
44
45 private Q_SLOTS:
46   void onVerticalEdgeChecked( bool );
47   void onOk();
48   void onHelp();
49
50 Q_SIGNALS:
51   void onHelpClicked();
52
53 private:
54   void settingsToGui();
55   void settingsFromGui();
56   void setSettings();
57   
58   QCheckBox*        w_HighlightCurrentLine;
59   QCheckBox*        w_TextWrapping;
60   QCheckBox*        w_CenterCursorOnScroll;
61   QCheckBox*        w_LineNumberArea;
62
63   QCheckBox*        w_TabSpaceVisible;
64   QSpinBox*         w_TabSize;
65
66   QCheckBox*        w_VerticalEdge;
67   QSpinBox*         w_NumberColumns;
68   QLabel*           lbl_NumColumns;
69
70   QtxFontEdit*      w_FontWidget;
71
72   QCheckBox*        w_DefaultCheck;
73
74   QPushButton*      myOkBtn;
75   QPushButton*      myCancelBtn;
76   QPushButton*      myHelpBtn;
77
78   PyEditor_Editor*  my_Editor;
79 };
80
81 #endif // PYEDITOR_SETTINGSDLG_H