mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-24 13:34:27 +00:00
Search status uses tab's status
This commit is contained in:
parent
496f843016
commit
e2aa8056af
@ -148,7 +148,8 @@ void SearchEngine::tab_changed(int t)
|
|||||||
{//when we switch from a tab that is not empty to another that is empty the download button
|
{//when we switch from a tab that is not empty to another that is empty the download button
|
||||||
//doesn't have to be available
|
//doesn't have to be available
|
||||||
if (t>-1) {//-1 = no more tab
|
if (t>-1) {//-1 = no more tab
|
||||||
if (all_tab.at(tabWidget->currentIndex())->getCurrentSearchListModel()->rowCount()) {
|
currentSearchTab = all_tab.at(tabWidget->currentIndex());
|
||||||
|
if (currentSearchTab->getCurrentSearchListModel()->rowCount()) {
|
||||||
download_button->setEnabled(true);
|
download_button->setEnabled(true);
|
||||||
goToDescBtn->setEnabled(true);
|
goToDescBtn->setEnabled(true);
|
||||||
}
|
}
|
||||||
@ -156,6 +157,7 @@ void SearchEngine::tab_changed(int t)
|
|||||||
download_button->setEnabled(false);
|
download_button->setEnabled(false);
|
||||||
goToDescBtn->setEnabled(false);
|
goToDescBtn->setEnabled(false);
|
||||||
}
|
}
|
||||||
|
search_status->setText(currentSearchTab->status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,6 +196,7 @@ void SearchEngine::on_search_button_clicked() {
|
|||||||
search_button->setText(tr("Search"));
|
search_button->setText(tr("Search"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
allTabsSetActiveState(false);
|
||||||
}
|
}
|
||||||
searchProcess->waitForFinished();
|
searchProcess->waitForFinished();
|
||||||
// Reload environment variables (proxy)
|
// Reload environment variables (proxy)
|
||||||
@ -207,6 +210,7 @@ void SearchEngine::on_search_button_clicked() {
|
|||||||
}
|
}
|
||||||
// Tab Addition
|
// Tab Addition
|
||||||
currentSearchTab = new SearchTab(this);
|
currentSearchTab = new SearchTab(this);
|
||||||
|
activeSearchTab = currentSearchTab;
|
||||||
connect(currentSearchTab->header(), SIGNAL(sectionResized(int, int, int)), this, SLOT(saveResultsColumnsWidth()));
|
connect(currentSearchTab->header(), SIGNAL(sectionResized(int, int, int)), this, SLOT(saveResultsColumnsWidth()));
|
||||||
all_tab.append(currentSearchTab);
|
all_tab.append(currentSearchTab);
|
||||||
QString tabName = pattern;
|
QString tabName = pattern;
|
||||||
@ -278,7 +282,8 @@ void SearchEngine::downloadTorrent(QString engine_url, QString torrent_url) {
|
|||||||
|
|
||||||
void SearchEngine::searchStarted() {
|
void SearchEngine::searchStarted() {
|
||||||
// Update SearchEngine widgets
|
// Update SearchEngine widgets
|
||||||
search_status->setText(tr("Searching..."));
|
activeSearchTab->status = tr("Searching...");
|
||||||
|
search_status->setText(activeSearchTab->status);
|
||||||
search_status->repaint();
|
search_status->repaint();
|
||||||
search_button->setText(tr("Stop"));
|
search_button->setText(tr("Stop"));
|
||||||
}
|
}
|
||||||
@ -298,8 +303,8 @@ void SearchEngine::readSearchOutput() {
|
|||||||
foreach (const QByteArray &line, lines_list) {
|
foreach (const QByteArray &line, lines_list) {
|
||||||
appendSearchResult(QString::fromUtf8(line));
|
appendSearchResult(QString::fromUtf8(line));
|
||||||
}
|
}
|
||||||
if (currentSearchTab)
|
if (activeSearchTab)
|
||||||
currentSearchTab->getCurrentLabel()->setText(tr("Results")+QString::fromUtf8(" <i>(")+QString::number(nb_search_results)+QString::fromUtf8(")</i>:"));
|
activeSearchTab->getCurrentLabel()->setText(tr("Results")+QString::fromUtf8(" <i>(")+QString::number(nb_search_results)+QString::fromUtf8(")</i>:"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchEngine::downloadFinished(int exitcode, QProcess::ExitStatus) {
|
void SearchEngine::downloadFinished(int exitcode, QProcess::ExitStatus) {
|
||||||
@ -412,7 +417,7 @@ void SearchEngine::updateNova() {
|
|||||||
// Slot called when search is Finished
|
// Slot called when search is Finished
|
||||||
// Search can be finished for 3 reasons :
|
// Search can be finished for 3 reasons :
|
||||||
// Error | Stopped by user | Finished normally
|
// Error | Stopped by user | Finished normally
|
||||||
void SearchEngine::searchFinished(int exitcode,QProcess::ExitStatus) {
|
void SearchEngine::searchFinished(int exitcode, QProcess::ExitStatus) {
|
||||||
if (searchTimeout->isActive()) {
|
if (searchTimeout->isActive()) {
|
||||||
searchTimeout->stop();
|
searchTimeout->stop();
|
||||||
}
|
}
|
||||||
@ -422,24 +427,28 @@ void SearchEngine::searchFinished(int exitcode,QProcess::ExitStatus) {
|
|||||||
}
|
}
|
||||||
if (exitcode) {
|
if (exitcode) {
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
search_status->setText(tr("Search aborted"));
|
activeSearchTab->status = tr("Search aborted");
|
||||||
#else
|
#else
|
||||||
search_status->setText(tr("An error occurred during search..."));
|
activeSearchTab->status = tr("An error occurred during search...");
|
||||||
#endif
|
#endif
|
||||||
}else{
|
} else {
|
||||||
if (search_stopped) {
|
if (search_stopped) {
|
||||||
search_status->setText(tr("Search aborted"));
|
activeSearchTab->status = tr("Search aborted");
|
||||||
}else{
|
} else {
|
||||||
if (no_search_results) {
|
if (no_search_results) {
|
||||||
search_status->setText(tr("Search returned no results"));
|
activeSearchTab->status = tr("Search returned no results");
|
||||||
}else{
|
} else {
|
||||||
search_status->setText(tr("Search has finished"));
|
activeSearchTab->status = tr("Search has finished");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentSearchTab)
|
if (activeSearchTab)
|
||||||
currentSearchTab->getCurrentLabel()->setText(tr("Results", "i.e: Search results")+QString::fromUtf8(" <i>(")+QString::number(nb_search_results)+QString::fromUtf8(")</i>:"));
|
if (currentSearchTab == activeSearchTab) search_status->setText(activeSearchTab->status);
|
||||||
|
activeSearchTab->getCurrentLabel()->setText(tr("Results", "i.e: Search results")+QString::fromUtf8(" <i>(")+QString::number(nb_search_results)+QString::fromUtf8(")</i>:"));
|
||||||
|
activeSearchTab->isActive = false;
|
||||||
|
activeSearchTab = 0;
|
||||||
|
|
||||||
search_button->setText(tr("Search"));
|
search_button->setText(tr("Search"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -447,7 +456,7 @@ void SearchEngine::searchFinished(int exitcode,QProcess::ExitStatus) {
|
|||||||
// Line is in the following form :
|
// Line is in the following form :
|
||||||
// file url | file name | file size | nb seeds | nb leechers | Search engine url
|
// file url | file name | file size | nb seeds | nb leechers | Search engine url
|
||||||
void SearchEngine::appendSearchResult(const QString &line) {
|
void SearchEngine::appendSearchResult(const QString &line) {
|
||||||
if (!currentSearchTab) {
|
if (!activeSearchTab) {
|
||||||
if (searchProcess->state() != QProcess::NotRunning) {
|
if (searchProcess->state() != QProcess::NotRunning) {
|
||||||
searchProcess->terminate();
|
searchProcess->terminate();
|
||||||
}
|
}
|
||||||
@ -462,9 +471,9 @@ void SearchEngine::appendSearchResult(const QString &line) {
|
|||||||
if (nb_fields < NB_PLUGIN_COLUMNS-1) { //-1 because desc_link is optional
|
if (nb_fields < NB_PLUGIN_COLUMNS-1) { //-1 because desc_link is optional
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Q_ASSERT(currentSearchTab);
|
Q_ASSERT(activeSearchTab);
|
||||||
// Add item to search result list
|
// Add item to search result list
|
||||||
QStandardItemModel* cur_model = currentSearchTab->getCurrentSearchListModel();
|
QStandardItemModel* cur_model = activeSearchTab->getCurrentSearchListModel();
|
||||||
Q_ASSERT(cur_model);
|
Q_ASSERT(cur_model);
|
||||||
int row = cur_model->rowCount();
|
int row = cur_model->rowCount();
|
||||||
cur_model->insertRow(row);
|
cur_model->insertRow(row);
|
||||||
@ -498,8 +507,9 @@ void SearchEngine::appendSearchResult(const QString &line) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SearchEngine::closeTab(int index) {
|
void SearchEngine::closeTab(int index) {
|
||||||
if (index == tabWidget->indexOf(currentSearchTab)) {
|
// Search is run for active tab so if user decided to close it, then stop search
|
||||||
qDebug("Deleted current search Tab");
|
if (activeSearchTab && index == tabWidget->indexOf(activeSearchTab)) {
|
||||||
|
qDebug("Closed active search Tab");
|
||||||
if (searchProcess->state() != QProcess::NotRunning) {
|
if (searchProcess->state() != QProcess::NotRunning) {
|
||||||
searchProcess->terminate();
|
searchProcess->terminate();
|
||||||
}
|
}
|
||||||
@ -507,7 +517,8 @@ void SearchEngine::closeTab(int index) {
|
|||||||
searchTimeout->stop();
|
searchTimeout->stop();
|
||||||
}
|
}
|
||||||
search_stopped = true;
|
search_stopped = true;
|
||||||
currentSearchTab = 0;
|
if (currentSearchTab == activeSearchTab) currentSearchTab = 0;
|
||||||
|
activeSearchTab = 0;
|
||||||
}
|
}
|
||||||
delete all_tab.takeAt(index);
|
delete all_tab.takeAt(index);
|
||||||
if (!all_tab.size()) {
|
if (!all_tab.size()) {
|
||||||
@ -544,3 +555,10 @@ void SearchEngine::on_goToDescBtn_clicked()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void SearchEngine::allTabsSetActiveState(bool newState)
|
||||||
|
{
|
||||||
|
foreach(SearchTab *tab, all_tab) {
|
||||||
|
tab->isActive = newState;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -121,10 +121,12 @@ private:
|
|||||||
unsigned long nb_search_results;
|
unsigned long nb_search_results;
|
||||||
SupportedEngines *supported_engines;
|
SupportedEngines *supported_engines;
|
||||||
QTimer *searchTimeout;
|
QTimer *searchTimeout;
|
||||||
QPointer<SearchTab> currentSearchTab;
|
QPointer<SearchTab> currentSearchTab; // Selected tab
|
||||||
|
QPointer<SearchTab> activeSearchTab; // Tab with running search
|
||||||
QList<QPointer<SearchTab> > all_tab; // To store all tabs
|
QList<QPointer<SearchTab> > all_tab; // To store all tabs
|
||||||
const SearchCategories full_cat_names;
|
const SearchCategories full_cat_names;
|
||||||
MainWindow *mp_mainWindow;
|
MainWindow *mp_mainWindow;
|
||||||
|
inline void allTabsSetActiveState(bool);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -48,6 +48,8 @@ SearchTab::SearchTab(SearchEngine *parent) : QWidget(), parent(parent)
|
|||||||
resultsBrowser->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
resultsBrowser->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||||
box->addWidget(results_lbl);
|
box->addWidget(results_lbl);
|
||||||
box->addWidget(resultsBrowser);
|
box->addWidget(resultsBrowser);
|
||||||
|
// New tab is created with new search
|
||||||
|
isActive = true;
|
||||||
|
|
||||||
setLayout(box);
|
setLayout(box);
|
||||||
// Set Search results list model
|
// Set Search results list model
|
||||||
|
@ -71,6 +71,8 @@ public:
|
|||||||
QTreeView * getCurrentTreeView();
|
QTreeView * getCurrentTreeView();
|
||||||
void setRowColor(int row, QString color);
|
void setRowColor(int row, QString color);
|
||||||
QHeaderView* header() const;
|
QHeaderView* header() const;
|
||||||
|
bool isActive;
|
||||||
|
QString status;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user