summaryrefslogtreecommitdiff
path: root/src/findbar.h
diff options
context:
space:
mode:
authorYoann Laissus <yoann.laissus@gmail.com>2010-03-14 12:47:08 +0100
committerYoann Laissus <yoann.laissus@gmail.com>2010-03-14 12:47:08 +0100
commit26eb96169454a41d0c3306b6329e8751882a2d1e (patch)
tree7f681e73ee52546316a82fa358284d7f880ae396 /src/findbar.h
parentUpdating forgotten files (diff)
downloadrekonq-26eb96169454a41d0c3306b6329e8751882a2d1e.tar.xz
Implement the highlight all feature for the find bar (enabled by default)
Diffstat (limited to 'src/findbar.h')
-rw-r--r--src/findbar.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/findbar.h b/src/findbar.h
index 7a4efc59..78615f9a 100644
--- a/src/findbar.h
+++ b/src/findbar.h
@@ -53,6 +53,7 @@ public:
KLineEdit *lineEdit() const;
bool matchCase() const;
void notifyMatch(bool match);
+ bool highlightAllState() const;
public slots:
void show();
@@ -63,8 +64,9 @@ signals:
private:
KLineEdit *m_lineEdit;
- QCheckBox *m_matchCase;
QTimer *m_hideTimer;
+ QCheckBox *m_matchCase;
+ QCheckBox *m_highlightAll;
};
#endif