mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 18:04:32 +00:00
Use QPalette::LinkVisited color for downloaded items in search results
This commit is contained in:
parent
c2abbed055
commit
f05793c2e3
@ -28,6 +28,7 @@
|
|||||||
* Contact : chris@qbittorrent.org
|
* Contact : chris@qbittorrent.org
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <QApplication>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QMetaEnum>
|
#include <QMetaEnum>
|
||||||
#include <QTreeView>
|
#include <QTreeView>
|
||||||
@ -35,6 +36,7 @@
|
|||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
#include <QSortFilterProxyModel>
|
#include <QSortFilterProxyModel>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
|
#include <QPalette>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#ifdef QBT_USES_QT5
|
#ifdef QBT_USES_QT5
|
||||||
#include <QTableView>
|
#include <QTableView>
|
||||||
@ -133,7 +135,7 @@ 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();
|
||||||
QString siteUrl = m_proxyModel->data(m_proxyModel->index(index.row(), SearchSortModel::ENGINE_URL)).toString();
|
QString siteUrl = m_proxyModel->data(m_proxyModel->index(index.row(), SearchSortModel::ENGINE_URL)).toString();
|
||||||
setRowColor(index.row(), "blue");
|
setRowColor(index.row(), QApplication::palette().color(QPalette::LinkVisited));
|
||||||
m_parent->downloadTorrent(siteUrl, torrentUrl);
|
m_parent->downloadTorrent(siteUrl, torrentUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,11 +175,11 @@ QStandardItemModel* SearchTab::getCurrentSearchListModel() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Set the color of a row in data model
|
// Set the color of a row in data model
|
||||||
void SearchTab::setRowColor(int row, QString color)
|
void SearchTab::setRowColor(int row, const QColor &color)
|
||||||
{
|
{
|
||||||
m_proxyModel->setDynamicSortFilter(false);
|
m_proxyModel->setDynamicSortFilter(false);
|
||||||
for (int i = 0; i < m_proxyModel->columnCount(); ++i)
|
for (int i = 0; i < m_proxyModel->columnCount(); ++i)
|
||||||
m_proxyModel->setData(m_proxyModel->index(row, i), QVariant(QColor(color)), Qt::ForegroundRole);
|
m_proxyModel->setData(m_proxyModel->index(row, i), color, Qt::ForegroundRole);
|
||||||
|
|
||||||
m_proxyModel->setDynamicSortFilter(true);
|
m_proxyModel->setDynamicSortFilter(true);
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ public:
|
|||||||
QHeaderView* header() const;
|
QHeaderView* header() const;
|
||||||
|
|
||||||
bool loadColWidthResultsList();
|
bool loadColWidthResultsList();
|
||||||
void setRowColor(int row, QString color);
|
void setRowColor(int row, const QColor &color);
|
||||||
|
|
||||||
enum class Status
|
enum class Status
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user