]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiSearch.h
GuiSearch: Properly delegate focus
[lyx.git] / src / frontends / qt / GuiSearch.h
1 // -*- C++ -*-
2 /**
3  * \file GuiSearch.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUISEARCH_H
14 #define GUISEARCH_H
15
16 #include "GuiDialog.h"
17 #include "DockView.h"
18
19 #include <QDockWidget>
20
21 #include "ui_SearchUi.h"
22
23 namespace lyx {
24 namespace frontend {
25
26 class GuiSearch;
27
28 class GuiSearchWidget : public QWidget, public Ui::SearchUi
29 {
30         Q_OBJECT
31
32 public:
33         GuiSearchWidget(QWidget * parent);
34         ///
35         void saveSession(QSettings & settings, QString const & session_key) const;
36         ///
37         void restoreSession(QString const & session_key);
38         ///
39         void setBufferView(BufferView const * bv) { bv_ = bv; }
40         ///
41         bool initialiseParams(std::string const &);
42         ///
43         bool isMinimized() { return minimized_; }
44
45 private Q_SLOTS:
46         void findChanged();
47         void findBufferChanged();
48         void findClicked(bool const backwards = false);
49         void findPrevClicked();
50         void replaceClicked(bool const backwards = false);
51         void replacePrevClicked();
52         void replaceallClicked();
53         void minimizeClicked(bool const toggle = true);
54 Q_SIGNALS:
55         void needTitleBarUpdate() const;
56         void needSizeUpdate() const;
57
58 private:
59         ///
60         void keyPressEvent(QKeyEvent * e) override;
61         ///
62         void showEvent(QShowEvent * e) override;
63         /// Searches occurrence of string
64         void find(docstring const & search,
65                   bool casesensitive, bool matchword,
66                   bool forward, bool instant, bool wrap, bool onlysel);
67         /// Replaces occurrence of string
68         void replace(docstring const & search, docstring const & replace,
69                      bool casesensitive, bool matchword,
70                      bool forward, bool all, bool wrap, bool onlysel);
71         ///
72         BufferView const * bv_ = nullptr;
73         ///
74         bool minimized_ = false;
75 };
76
77
78 class GuiSearch : public DockView
79 {
80         Q_OBJECT
81
82 public:
83         GuiSearch(
84                 GuiView & parent, ///< the main window where to dock.
85                 Qt::DockWidgetArea area = Qt::BottomDockWidgetArea, ///< Position of the dock (and also drawer)
86                 Qt::WindowFlags flags = {});
87
88         /// Controller inherited method.
89         ///@{
90         bool initialiseParams(std::string const & sdata) override
91                 { return widget_->initialiseParams(sdata); }
92         void clearParams() override {}
93         void dispatchParams() override {}
94         bool isBufferDependent() const override { return true; }
95         void updateView() override;
96         void saveSession(QSettings & settings) const override;
97         void restoreSession() override;
98         ///@}
99
100 protected:
101         bool wantInitialFocus() const override { return true; }
102
103 public Q_SLOTS:
104         ///
105         void onBufferViewChanged() override;
106
107 private Q_SLOTS:
108         /// update title display
109         void updateTitle();
110         /// update dock size
111         void updateSize();
112
113 private:
114         /// The encapsulated widget.
115         GuiSearchWidget * widget_;
116 };
117
118 } // namespace frontend
119 } // namespace lyx
120
121 #endif // GUISEARCH_H