mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Replace indent to 4 spaces
This commit is contained in:
parent
c1e2ddc843
commit
496f843016
3 changed files with 141 additions and 140 deletions
|
@ -50,81 +50,81 @@ class QTimer;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class SearchEngine : public QWidget, public Ui::search_engine{
|
class SearchEngine : public QWidget, public Ui::search_engine{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_DISABLE_COPY(SearchEngine)
|
Q_DISABLE_COPY(SearchEngine)
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum PluginColumn { PL_DL_LINK, PL_NAME, PL_SIZE, PL_SEEDS, PL_LEECHS, PL_ENGINE_URL, PL_DESC_LINK, NB_PLUGIN_COLUMNS };
|
enum PluginColumn { PL_DL_LINK, PL_NAME, PL_SIZE, PL_SEEDS, PL_LEECHS, PL_ENGINE_URL, PL_DESC_LINK, NB_PLUGIN_COLUMNS };
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SearchEngine(MainWindow *mp_mainWindow);
|
SearchEngine(MainWindow *mp_mainWindow);
|
||||||
~SearchEngine();
|
~SearchEngine();
|
||||||
QString selectedCategory() const;
|
QString selectedCategory() const;
|
||||||
QString selectedEngine() const;
|
QString selectedEngine() const;
|
||||||
|
|
||||||
static qreal getPluginVersion(QString filePath) {
|
static qreal getPluginVersion(QString filePath) {
|
||||||
QFile plugin(filePath);
|
QFile plugin(filePath);
|
||||||
if (!plugin.exists()) {
|
if (!plugin.exists()) {
|
||||||
qDebug("%s plugin does not exist, returning 0.0", qPrintable(filePath));
|
qDebug("%s plugin does not exist, returning 0.0", qPrintable(filePath));
|
||||||
return 0.0;
|
return 0.0;
|
||||||
|
}
|
||||||
|
if (!plugin.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||||
|
return 0.0;
|
||||||
|
}
|
||||||
|
qreal version = 0.0;
|
||||||
|
while (!plugin.atEnd()) {
|
||||||
|
QByteArray line = plugin.readLine();
|
||||||
|
if (line.startsWith("#VERSION: ")) {
|
||||||
|
line = line.split(' ').last().trimmed();
|
||||||
|
version = line.toFloat();
|
||||||
|
qDebug("plugin %s version: %.2f", qPrintable(filePath), version);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return version;
|
||||||
}
|
}
|
||||||
if (!plugin.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
||||||
return 0.0;
|
|
||||||
}
|
|
||||||
qreal version = 0.0;
|
|
||||||
while (!plugin.atEnd()) {
|
|
||||||
QByteArray line = plugin.readLine();
|
|
||||||
if (line.startsWith("#VERSION: ")) {
|
|
||||||
line = line.split(' ').last().trimmed();
|
|
||||||
version = line.toFloat();
|
|
||||||
qDebug("plugin %s version: %.2f", qPrintable(filePath), version);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return version;
|
|
||||||
}
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void on_download_button_clicked();
|
void on_download_button_clicked();
|
||||||
void downloadTorrent(QString engine_url, QString torrent_url);
|
void downloadTorrent(QString engine_url, QString torrent_url);
|
||||||
void giveFocusToSearchInput();
|
void giveFocusToSearchInput();
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
// Search slots
|
// Search slots
|
||||||
void tab_changed(int);//to prevent the use of the download button when the tab is empty
|
void tab_changed(int);//to prevent the use of the download button when the tab is empty
|
||||||
void on_search_button_clicked();
|
void on_search_button_clicked();
|
||||||
void closeTab(int index);
|
void closeTab(int index);
|
||||||
void appendSearchResult(const QString &line);
|
void appendSearchResult(const QString &line);
|
||||||
void searchFinished(int exitcode,QProcess::ExitStatus);
|
void searchFinished(int exitcode,QProcess::ExitStatus);
|
||||||
void readSearchOutput();
|
void readSearchOutput();
|
||||||
void searchStarted();
|
void searchStarted();
|
||||||
void updateNova();
|
void updateNova();
|
||||||
void selectMultipleBox(const QString &text);
|
void selectMultipleBox(const QString &text);
|
||||||
void on_enginesButton_clicked();
|
void on_enginesButton_clicked();
|
||||||
void saveResultsColumnsWidth();
|
void saveResultsColumnsWidth();
|
||||||
void downloadFinished(int exitcode, QProcess::ExitStatus);
|
void downloadFinished(int exitcode, QProcess::ExitStatus);
|
||||||
void fillCatCombobox();
|
void fillCatCombobox();
|
||||||
void fillEngineComboBox();
|
void fillEngineComboBox();
|
||||||
void searchTextEdited(QString);
|
void searchTextEdited(QString);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_goToDescBtn_clicked();
|
void on_goToDescBtn_clicked();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Search related
|
// Search related
|
||||||
LineEdit* search_pattern;
|
LineEdit* search_pattern;
|
||||||
QProcess *searchProcess;
|
QProcess *searchProcess;
|
||||||
QList<QProcess*> downloaders;
|
QList<QProcess*> downloaders;
|
||||||
bool search_stopped;
|
bool search_stopped;
|
||||||
bool no_search_results;
|
bool no_search_results;
|
||||||
QByteArray search_result_line_truncated;
|
QByteArray search_result_line_truncated;
|
||||||
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;
|
||||||
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;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -42,101 +42,104 @@
|
||||||
|
|
||||||
SearchTab::SearchTab(SearchEngine *parent) : QWidget(), parent(parent)
|
SearchTab::SearchTab(SearchEngine *parent) : QWidget(), parent(parent)
|
||||||
{
|
{
|
||||||
box=new QVBoxLayout();
|
box = new QVBoxLayout();
|
||||||
results_lbl=new QLabel();
|
results_lbl = new QLabel();
|
||||||
resultsBrowser = new QTreeView();
|
resultsBrowser = new QTreeView();
|
||||||
resultsBrowser->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
resultsBrowser->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||||
box->addWidget(results_lbl);
|
box->addWidget(results_lbl);
|
||||||
box->addWidget(resultsBrowser);
|
box->addWidget(resultsBrowser);
|
||||||
|
|
||||||
setLayout(box);
|
setLayout(box);
|
||||||
// Set Search results list model
|
// Set Search results list model
|
||||||
SearchListModel = new QStandardItemModel(0, SearchSortModel::NB_SEARCH_COLUMNS);
|
SearchListModel = new QStandardItemModel(0, SearchSortModel::NB_SEARCH_COLUMNS);
|
||||||
SearchListModel->setHeaderData(SearchSortModel::NAME, Qt::Horizontal, tr("Name", "i.e: file name"));
|
SearchListModel->setHeaderData(SearchSortModel::NAME, Qt::Horizontal, tr("Name", "i.e: file name"));
|
||||||
SearchListModel->setHeaderData(SearchSortModel::SIZE, Qt::Horizontal, tr("Size", "i.e: file size"));
|
SearchListModel->setHeaderData(SearchSortModel::SIZE, Qt::Horizontal, tr("Size", "i.e: file size"));
|
||||||
SearchListModel->setHeaderData(SearchSortModel::SEEDS, Qt::Horizontal, tr("Seeders", "i.e: Number of full sources"));
|
SearchListModel->setHeaderData(SearchSortModel::SEEDS, Qt::Horizontal, tr("Seeders", "i.e: Number of full sources"));
|
||||||
SearchListModel->setHeaderData(SearchSortModel::LEECHS, Qt::Horizontal, tr("Leechers", "i.e: Number of partial sources"));
|
SearchListModel->setHeaderData(SearchSortModel::LEECHS, Qt::Horizontal, tr("Leechers", "i.e: Number of partial sources"));
|
||||||
SearchListModel->setHeaderData(SearchSortModel::ENGINE_URL, Qt::Horizontal, tr("Search engine"));
|
SearchListModel->setHeaderData(SearchSortModel::ENGINE_URL, Qt::Horizontal, tr("Search engine"));
|
||||||
|
|
||||||
proxyModel = new SearchSortModel();
|
proxyModel = new SearchSortModel();
|
||||||
proxyModel->setDynamicSortFilter(true);
|
proxyModel->setDynamicSortFilter(true);
|
||||||
proxyModel->setSourceModel(SearchListModel);
|
proxyModel->setSourceModel(SearchListModel);
|
||||||
resultsBrowser->setModel(proxyModel);
|
resultsBrowser->setModel(proxyModel);
|
||||||
|
|
||||||
SearchDelegate = new SearchListDelegate();
|
SearchDelegate = new SearchListDelegate();
|
||||||
resultsBrowser->setItemDelegate(SearchDelegate);
|
resultsBrowser->setItemDelegate(SearchDelegate);
|
||||||
|
|
||||||
resultsBrowser->hideColumn(SearchSortModel::DL_LINK); // Hide url column
|
resultsBrowser->hideColumn(SearchSortModel::DL_LINK); // Hide url column
|
||||||
resultsBrowser->hideColumn(SearchSortModel::DESC_LINK);
|
resultsBrowser->hideColumn(SearchSortModel::DESC_LINK);
|
||||||
|
|
||||||
resultsBrowser->setRootIsDecorated(false);
|
resultsBrowser->setRootIsDecorated(false);
|
||||||
resultsBrowser->setAllColumnsShowFocus(true);
|
resultsBrowser->setAllColumnsShowFocus(true);
|
||||||
resultsBrowser->setSortingEnabled(true);
|
resultsBrowser->setSortingEnabled(true);
|
||||||
|
|
||||||
// Connect signals to slots (search part)
|
// Connect signals to slots (search part)
|
||||||
connect(resultsBrowser, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(downloadSelectedItem(const QModelIndex&)));
|
connect(resultsBrowser, SIGNAL(doubleClicked(const QModelIndex&)), this, SLOT(downloadSelectedItem(const QModelIndex&)));
|
||||||
|
|
||||||
// Load last columns width for search results list
|
// Load last columns width for search results list
|
||||||
if (!loadColWidthResultsList()) {
|
if (!loadColWidthResultsList()) {
|
||||||
resultsBrowser->header()->resizeSection(0, 275);
|
resultsBrowser->header()->resizeSection(0, 275);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sort by Seeds
|
// Sort by Seeds
|
||||||
resultsBrowser->sortByColumn(SearchSortModel::SEEDS, Qt::DescendingOrder);
|
resultsBrowser->sortByColumn(SearchSortModel::SEEDS, Qt::DescendingOrder);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchTab::downloadSelectedItem(const QModelIndex& index) {
|
void SearchTab::downloadSelectedItem(const QModelIndex& index) {
|
||||||
QString engine_url = proxyModel->data(proxyModel->index(index.row(), SearchSortModel::ENGINE_URL)).toString();
|
QString engine_url = proxyModel->data(proxyModel->index(index.row(), SearchSortModel::ENGINE_URL)).toString();
|
||||||
QString torrent_url = proxyModel->data(proxyModel->index(index.row(), SearchSortModel::DL_LINK)).toString();
|
QString torrent_url = proxyModel->data(proxyModel->index(index.row(), SearchSortModel::DL_LINK)).toString();
|
||||||
setRowColor(index.row(), "blue");
|
setRowColor(index.row(), "blue");
|
||||||
parent->downloadTorrent(engine_url, torrent_url);
|
parent->downloadTorrent(engine_url, torrent_url);
|
||||||
}
|
}
|
||||||
|
|
||||||
SearchTab::~SearchTab() {
|
SearchTab::~SearchTab() {
|
||||||
delete box;
|
delete box;
|
||||||
delete results_lbl;
|
delete results_lbl;
|
||||||
delete resultsBrowser;
|
delete resultsBrowser;
|
||||||
delete SearchListModel;
|
delete SearchListModel;
|
||||||
delete proxyModel;
|
delete proxyModel;
|
||||||
delete SearchDelegate;
|
delete SearchDelegate;
|
||||||
}
|
}
|
||||||
|
|
||||||
QHeaderView* SearchTab::header() const {
|
QHeaderView* SearchTab::header() const {
|
||||||
return resultsBrowser->header();
|
return resultsBrowser->header();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SearchTab::loadColWidthResultsList() {
|
bool SearchTab::loadColWidthResultsList() {
|
||||||
QString line = Preferences::instance()->getSearchColsWidth();
|
QString line = Preferences::instance()->getSearchColsWidth();
|
||||||
if (line.isEmpty())
|
if (line.isEmpty())
|
||||||
return false;
|
return false;
|
||||||
QStringList width_list = line.split(' ');
|
|
||||||
if (width_list.size() > SearchListModel->columnCount())
|
QStringList width_list = line.split(' ');
|
||||||
return false;
|
if (width_list.size() > SearchListModel->columnCount())
|
||||||
unsigned int listSize = width_list.size();
|
return false;
|
||||||
for (unsigned int i=0; i<listSize; ++i) {
|
|
||||||
resultsBrowser->header()->resizeSection(i, width_list.at(i).toInt());
|
unsigned int listSize = width_list.size();
|
||||||
}
|
for (unsigned int i=0; i<listSize; ++i) {
|
||||||
return true;
|
resultsBrowser->header()->resizeSection(i, width_list.at(i).toInt());
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
QLabel* SearchTab::getCurrentLabel()
|
QLabel* SearchTab::getCurrentLabel()
|
||||||
{
|
{
|
||||||
return results_lbl;
|
return results_lbl;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTreeView* SearchTab::getCurrentTreeView()
|
QTreeView* SearchTab::getCurrentTreeView()
|
||||||
{
|
{
|
||||||
return resultsBrowser;
|
return resultsBrowser;
|
||||||
}
|
}
|
||||||
|
|
||||||
QSortFilterProxyModel* SearchTab::getCurrentSearchListProxy() const
|
QSortFilterProxyModel* SearchTab::getCurrentSearchListProxy() const
|
||||||
{
|
{
|
||||||
return proxyModel;
|
return proxyModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
QStandardItemModel* SearchTab::getCurrentSearchListModel() const
|
QStandardItemModel* SearchTab::getCurrentSearchListModel() const
|
||||||
{
|
{
|
||||||
return SearchListModel;
|
return SearchListModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set the color of a row in data model
|
// Set the color of a row in data model
|
||||||
|
|
|
@ -47,32 +47,30 @@ class QStandardItemModel;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class SearchTab: public QWidget, public Ui::search_engine {
|
class SearchTab: public QWidget, public Ui::search_engine {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QVBoxLayout *box;
|
QVBoxLayout *box;
|
||||||
QLabel *results_lbl;
|
QLabel *results_lbl;
|
||||||
QTreeView *resultsBrowser;
|
QTreeView *resultsBrowser;
|
||||||
QStandardItemModel *SearchListModel;
|
QStandardItemModel *SearchListModel;
|
||||||
SearchSortModel *proxyModel;
|
SearchSortModel *proxyModel;
|
||||||
SearchListDelegate *SearchDelegate;
|
SearchListDelegate *SearchDelegate;
|
||||||
SearchEngine *parent;
|
SearchEngine *parent;
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void downloadSelectedItem(const QModelIndex& index);
|
void downloadSelectedItem(const QModelIndex& index);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SearchTab(SearchEngine *parent);
|
SearchTab(SearchEngine *parent);
|
||||||
~SearchTab();
|
~SearchTab();
|
||||||
bool loadColWidthResultsList();
|
bool loadColWidthResultsList();
|
||||||
QLabel * getCurrentLabel();
|
QLabel * getCurrentLabel();
|
||||||
QStandardItemModel* getCurrentSearchListModel() const;
|
QStandardItemModel* getCurrentSearchListModel() const;
|
||||||
QSortFilterProxyModel* getCurrentSearchListProxy() const;
|
QSortFilterProxyModel* getCurrentSearchListProxy() const;
|
||||||
QTreeView * getCurrentTreeView();
|
QTreeView * getCurrentTreeView();
|
||||||
void setRowColor(int row, QString color);
|
void setRowColor(int row, QString color);
|
||||||
QHeaderView* header() const;
|
QHeaderView* header() const;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue