diff options
| author | Stuart Citrin <[email protected]> | 2013-05-22 18:48:00 +0200 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2013-05-22 18:48:00 +0200 |
| commit | 7c9808ef5d14139de13b86b7dca8f45ccac1373f (patch) | |
| tree | 488b08ce184edc32b3f467bc1d10f76e0d4d0582 /src/filterbar/filterbar.h | |
| parent | 04e825d022c77baad3345269da7a210e95274f07 (diff) | |
Filter bar: add a button that prevents clearing if the URL changes
FEATURE: 256651
FIXED-IN: 4.11.0
REVIEW: 107392
Diffstat (limited to 'src/filterbar/filterbar.h')
| -rw-r--r-- | src/filterbar/filterbar.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/filterbar/filterbar.h b/src/filterbar/filterbar.h index 539d1e23f..5d5463a28 100644 --- a/src/filterbar/filterbar.h +++ b/src/filterbar/filterbar.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (C) 2006-2010 by Peter Penz <[email protected]> * * Copyright (C) 2006 by Gregor Kališnik <[email protected]> * + * Copyright (C) 2012 by Stuart Citrin <[email protected]> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -24,6 +25,7 @@ #include <QWidget> class KLineEdit; +class QToolButton; /** * @brief Provides an input field for filtering the currently shown items. @@ -38,6 +40,9 @@ public: explicit FilterBar(QWidget* parent = 0); virtual ~FilterBar(); + /** Called by view container to hide this **/ + void closeFilterBar(); + /** * Selects the whole text of the filter bar. */ @@ -46,6 +51,10 @@ public: public slots: /** Clears the input field. */ void clear(); + /** Clears the input field if the "lock button" is disabled. */ + void slotUrlChanged(); + /** The input field is cleared also if the "lock button" is released. */ + void slotToggleLockButton(bool checked); signals: /** @@ -70,6 +79,7 @@ protected: private: KLineEdit* m_filterInput; + QToolButton* m_lockButton; }; #endif |
