Salome HOME
updated copyright message
[modules/gui.git] / tools / PyEditor / src / PyEditor_FindTool.h
1 // Copyright (C) 2015-2023  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_FindTool.h
20 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
21 //
22
23 #ifndef PYEDITOR_FINDTOOL_H
24 #define PYEDITOR_FINDTOOL_H
25
26 #include "PyEditor.h"
27
28 #include <QTextDocument>
29 #include <QStringListModel>
30 #include <QWidget>
31
32 class PyEditor_Editor;
33 class QAction;
34 class QLabel;
35 class QLineEdit;
36 class QMenu;
37
38 class PYEDITOR_EXPORT PyEditor_FindTool : public QWidget
39 {
40 Q_OBJECT
41
42   enum { CaseSensitive, WholeWord, RegExp, Find, FindPrevious, FindNext, Replace };
43
44 public:
45   PyEditor_FindTool( PyEditor_Editor*, QWidget* = 0 );
46
47   bool event( QEvent* );
48   bool eventFilter( QObject*, QEvent* );
49
50 public slots:
51   void activateFind();
52   void activateReplace();
53
54 private slots:
55   void showMenu();
56   void find( const QString& );
57   void find();
58   void findPrevious();
59   void findNext();
60   void replace();
61   void replaceAll();
62   void update();
63   void activate( int );
64   void customizeMenu( QMenu* );
65
66 private:
67   QList<QKeySequence> shortcuts( int ) const;
68   void updateShortcuts();
69
70   void showReplaceControls( bool );
71   void setSearchResult( bool );
72
73   bool isRegExp() const;
74   bool isCaseSensitive() const;
75   bool isWholeWord() const;
76   QTextDocument::FindFlags searchFlags( bool = false ) const;
77
78   QList<QTextCursor> matches( const QString& ) const;
79   void find( const QString&, int );
80
81   void addCompletion( const QString&, bool );
82
83 private:
84   PyEditor_Editor* myEditor;
85   QLineEdit* myFindEdit;
86   QLineEdit* myReplaceEdit;
87   QLabel* myInfoLabel;
88   QStringListModel myFindCompletion, myReplaceCompletion;
89 };
90
91 #endif // PYEDITOR_FINDTOOL_H