diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-03 16:50:01 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-03 16:50:01 +0200 |
commit | 506e79b4b1e1ccc9181fc507c871091ee0a7da23 (patch) | |
tree | 0d2fee698ad356c2e9a43fc0edde7d7c7aef473c /src/tag_editor.h | |
parent | ce80c21ea5967b3bc6b416e36453af1b90382322 (diff) |
add allowsFiltering / allowsSearching checks
Diffstat (limited to 'src/tag_editor.h')
-rw-r--r-- | src/tag_editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tag_editor.h b/src/tag_editor.h index bc00b77d..7449560f 100644 --- a/src/tag_editor.h +++ b/src/tag_editor.h @@ -52,10 +52,12 @@ class TagEditor : public Screen<NC::Window>, public Filterable, public HasSongs, virtual bool isTabbable() { return true; } /// Filterable implementation + virtual bool allowsFiltering(); virtual std::string currentFilter(); virtual void applyFilter(const std::string &filter); /// Searchable implementation + virtual bool allowsSearching(); virtual bool search(const std::string &constraint); virtual void nextFound(bool wrap); virtual void prevFound(bool wrap); |