Add option to limit search to current group

This commit is contained in:
Weslly 2017-06-20 16:54:13 -03:00
parent 702a68307a
commit 719323e9c3
6 changed files with 43 additions and 1 deletions

View file

@ -163,6 +163,7 @@ public slots:
// Search related slots
void search(const QString& searchtext);
void setSearchCaseSensitive(bool state);
void setSearchLimitGroup(bool state);
void endSearch();
void showMessage(const QString& text, MessageWidget::MessageType type);
@ -221,6 +222,7 @@ private:
// Search state
QString m_lastSearchText;
bool m_searchCaseSensitive;
bool m_searchLimitGroup;
// Autoreload
QFileSystemWatcher m_fileWatcher;