Browse Source

Merge pull request #5101 from evsh/deduplicate-search-download-code

Remove duplicated code from search tab and widget
adaptive-webui-19844
sledgehammer999 9 years ago
parent
commit
50f7c734cb
  1. 4
      src/gui/search/searchtab.cpp
  2. 4
      src/gui/search/searchtab.h
  3. 6
      src/gui/search/searchwidget.cpp

4
src/gui/search/searchtab.cpp

@ -98,7 +98,7 @@ SearchTab::SearchTab(SearchWidget *parent)
m_ui->resultsBrowser->setSortingEnabled(true); m_ui->resultsBrowser->setSortingEnabled(true);
// Connect signals to slots (search part) // Connect signals to slots (search part)
connect(m_ui->resultsBrowser, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(downloadSelectedItem(const QModelIndex&))); connect(m_ui->resultsBrowser, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(downloadItem(const QModelIndex&)));
// Load last columns width for search results list // Load last columns width for search results list
if (!loadColWidthResultsList()) if (!loadColWidthResultsList())
@ -129,7 +129,7 @@ SearchTab::~SearchTab()
delete m_ui; delete m_ui;
} }
void SearchTab::downloadSelectedItem(const QModelIndex &index) void SearchTab::downloadItem(const QModelIndex &index)
{ {
QString torrentUrl = m_proxyModel->data(m_proxyModel->index(index.row(), SearchSortModel::DL_LINK)).toString(); QString torrentUrl = m_proxyModel->data(m_proxyModel->index(index.row(), SearchSortModel::DL_LINK)).toString();
setRowColor(index.row(), "blue"); setRowColor(index.row(), "blue");

4
src/gui/search/searchtab.h

@ -92,8 +92,10 @@ public:
void updateResultsCount(); void updateResultsCount();
public slots:
void downloadItem(const QModelIndex &index);
private slots: private slots:
void downloadSelectedItem(const QModelIndex &index);
void updateFilter(); void updateFilter();
private: private:

6
src/gui/search/searchwidget.cpp

@ -392,11 +392,7 @@ void SearchWidget::on_downloadButton_clicked()
QModelIndexList selectedIndexes = m_allTabs.at(tabWidget->currentIndex())->getCurrentTreeView()->selectionModel()->selectedIndexes(); QModelIndexList selectedIndexes = m_allTabs.at(tabWidget->currentIndex())->getCurrentTreeView()->selectionModel()->selectedIndexes();
foreach (const QModelIndex &index, selectedIndexes) { foreach (const QModelIndex &index, selectedIndexes) {
if (index.column() == SearchSortModel::NAME) { if (index.column() == SearchSortModel::NAME) {
// Get Item url m_allTabs.at(tabWidget->currentIndex())->downloadItem(index);
QSortFilterProxyModel *model = m_allTabs.at(tabWidget->currentIndex())->getCurrentSearchListProxy();
QString torrentUrl = model->data(model->index(index.row(), URL_COLUMN)).toString();
downloadTorrent(torrentUrl);
m_allTabs.at(tabWidget->currentIndex())->setRowColor(index.row(), "blue");
} }
} }
} }

Loading…
Cancel
Save