]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/FindAndReplace.h
The Cursor argument here was not being used, so there is no need
[lyx.git] / src / frontends / qt4 / FindAndReplace.h
1 // -*- C++ -*-
2 /**
3  * \file FindAndReplace.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Tommaso Cucinotta
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QSEARCHADV_H
13 #define QSEARCHADV_H
14
15 #include "GuiWorkArea.h"
16
17 #include "DockView.h"
18 // This is needed so that ui_FindAndReplaceUi.h can find qt_()
19 #include "qt_helpers.h"
20 #include "ui_FindAndReplaceUi.h"
21
22 #include "BufferView.h"
23 #include "Buffer.h"
24 #include "LyX.h"
25 #include "Text.h"
26 #include "lyxfind.h"
27
28 #include <QDialog>
29
30 #include <string>
31
32 namespace lyx {
33 namespace frontend {
34
35 class FindAndReplaceWidget : public QTabWidget, public Ui::FindAndReplaceUi
36 {
37         Q_OBJECT
38
39 public:
40         FindAndReplaceWidget(GuiView & view);
41         bool initialiseParams(std::string const & params);
42
43 private:
44         ///
45         GuiView & view_;
46
47         /// add a string to the combo if needed
48         void remember(std::string const & find, QComboBox & combo);
49
50         /// Perform the scope-related buffer switch while searching
51         bool findAndReplaceScope(FindAndReplaceOptions & opt, bool replace_all = false);
52
53         /// Collect options from the GUI elements, then perform the search
54         bool findAndReplace(bool backwards, bool replace, bool replace_all = false);
55
56         /// FIXME Probably to be merged with findAndReplace(bool, bool, bool)
57         bool findAndReplace(bool casesensitive, bool matchword, bool backwards,
58                 bool expandmacros, bool ignoreformat, bool replace,
59                 bool keep_case, bool replace_all = false);
60
61         bool eventFilter(QObject *obj, QEvent *event);
62
63         void virtual showEvent(QShowEvent *ev);
64         void virtual hideEvent(QHideEvent *ev);
65
66         void hideDialog();
67
68 protected Q_SLOTS:
69         void on_findNextPB_clicked();
70         void on_replacePB_clicked();
71         void on_replaceallPB_clicked();
72 };
73
74
75 class FindAndReplace : public DockView
76 {
77         Q_OBJECT
78 public:
79         FindAndReplace(
80                 GuiView & parent, ///< the main window where to dock.
81                 Qt::DockWidgetArea area = Qt::RightDockWidgetArea, ///< Position of the dock (and also drawer)
82                 Qt::WindowFlags flags = 0);
83
84         ~FindAndReplace();
85
86         bool initialiseParams(std::string const &);
87         void clearParams() {}
88         void dispatchParams() {}
89         bool isBufferDependent() const { return true; }
90         void selectAll();
91
92         /// update
93         void updateView() {}
94         //virtual void update_contents() {}
95
96 protected:
97         virtual bool wantInitialFocus() const { return true; }
98
99 private:
100         /// The encapsulated widget.
101         FindAndReplaceWidget * widget_;
102 };
103
104
105 } // namespace frontend
106 } // namespace lyx
107
108 #endif // QSEARCHADV_H