diff options
author | Tobias Markmann <tm@ayena.de> | 2012-04-23 10:58:51 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-04-23 12:27:54 (GMT) |
commit | ae77eccb397460676b4df8297beaebcc1394faec (patch) | |
tree | d7cef13176863f4dbee56d5e07e4df5438903ddf /Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp | |
parent | 39d46fb62ef01c3394ec0b453229f8d703f75153 (diff) | |
download | swift-contrib-ae77eccb397460676b4df8297beaebcc1394faec.zip swift-contrib-ae77eccb397460676b4df8297beaebcc1394faec.tar.bz2 |
Explicitly show "No results." if a user search yields to no results on the results page.
Resolves: #811
License: This patch is BSD-licensed, see http://www.opensource.org/licenses/bsd-license.php
Diffstat (limited to 'Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp')
-rw-r--r-- | Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp b/Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp index bc6933e7..dcd79d2 100644 --- a/Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp +++ b/Swift/QtUI/UserSearch/QtUserSearchResultsPage.cpp @@ -15,12 +15,23 @@ QtUserSearchResultsPage::QtUserSearchResultsPage() { connect(results_, SIGNAL(clicked(const QModelIndex&)), this, SLOT(emitCompletenessCheck())); connect(results_, SIGNAL(entered(const QModelIndex&)), this, SLOT(emitCompletenessCheck())); results_->setExpandsOnDoubleClick(false); + setNoResults(false); } bool QtUserSearchResultsPage::isComplete() const { return results_->currentIndex().isValid(); } +void QtUserSearchResultsPage::setNoResults(bool noResults) { + if (noResults) { + results_->setEnabled(false); + noResults_->show(); + } else { + results_->setEnabled(true); + noResults_->hide(); + } +} + void QtUserSearchResultsPage::emitCompletenessCheck() { emit completeChanged(); } |