Generic searcher class. More...
#include <QtxSearchTool.h>
Public Member Functions | |
Searcher () | |
Constructor. More... | |
virtual | ~Searcher () |
Destructor. More... | |
virtual bool | find (const QString &, QtxSearchTool *)=0 |
Start new search. More... | |
virtual bool | findNext (const QString &, QtxSearchTool *)=0 |
Search next appropriate item. More... | |
virtual bool | findPrevious (const QString &, QtxSearchTool *)=0 |
Search previous appropriate item. More... | |
virtual bool | findFirst (const QString &, QtxSearchTool *)=0 |
Search first appropriate item. More... | |
virtual bool | findLast (const QString &, QtxSearchTool *)=0 |
Search last appropriate item. More... | |
Searcher is generic class which is used by the search tool to perform widget-dependant search.
To implement a searcher for some widget, just inherit from QtxSearchTool::Searcher and override pure virtual methods find(), findNext(), findPrevious(), findFirst() and findLast()
QtxSearchTool::Searcher::Searcher | ( | ) |
|
virtual |
Reimplemented in QtxWebBrowser::Searcher.
|
pure virtual |
text | text to be found |
st | search tool widget |
Implemented in QtxTreeViewSearcher, and QtxWebBrowser::Searcher.
|
pure virtual |
text | text to be found |
st | search tool widget |
Implemented in QtxTreeViewSearcher, and QtxWebBrowser::Searcher.
|
pure virtual |
text | text to be found |
st | search tool widget |
Implemented in QtxTreeViewSearcher, and QtxWebBrowser::Searcher.
|
pure virtual |
text | text to be found |
st | search tool widget |
Implemented in QtxTreeViewSearcher, and QtxWebBrowser::Searcher.
|
pure virtual |
text | text to be found |
st | search tool widget |
Implemented in QtxTreeViewSearcher, and QtxWebBrowser::Searcher.