Salome HOME
Merge Python 3 porting.
[modules/gui.git] / tools / PyEditor / src / PyEditor_Widget.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_Widget.h
20 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
21 //
22
23 #ifndef PYEDITOR_WIDGET_H
24 #define PYEDITOR_WIDGET_H
25
26 #include "PyEditor.h"
27
28 #include <QWidget>
29
30 class PyEditor_Editor;
31 class PyEditor_FindTool;
32
33 class PYEDITOR_EXPORT PyEditor_Widget : public QWidget
34 {
35   Q_OBJECT
36
37 public:
38   PyEditor_Widget( QWidget* = 0 );
39
40   PyEditor_Editor* editor();
41   PyEditor_FindTool* findTool();
42
43   bool isModified();
44
45   QString text() const;
46
47   QStringList keywords() const;
48   void appendKeywords( const QStringList&, int, const QColor& = QColor() );
49   void removeKeywords( const QStringList& );
50
51   int completionPolicy() const;
52   void setCompletionPolicy( int );
53
54 public slots:
55   void find();
56   void replace();
57
58   void undo();
59   void redo();
60   void cut();
61   void copy();
62   void paste();
63   void deleteSelected();
64   void selectAll();
65   void clear();
66
67   void setModified( bool );
68
69   void setText( const QString& );
70
71 signals:
72   void modificationChanged( bool );
73   void undoAvailable( bool );
74   void redoAvailable( bool );
75   void copyAvailable( bool );
76   void selectionChanged();
77   void textChanged();
78   void cursorPositionChanged();
79
80 private:
81   PyEditor_Editor* myEditor;
82   PyEditor_FindTool* myFindTool;
83 };
84
85 #endif // PYEDITOR_WIDGET_H