mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Clean fix for progress display with cleanlooks style
This commit is contained in:
parent
3254dae59f
commit
dbceed21f5
@ -39,7 +39,6 @@
|
|||||||
#include <QStyle>
|
#include <QStyle>
|
||||||
#include <QSplashScreen>
|
#include <QSplashScreen>
|
||||||
#include <QPushButton>
|
#include <QPushButton>
|
||||||
#include "qgnomelook.h"
|
|
||||||
#include "GUI.h"
|
#include "GUI.h"
|
||||||
#include "ico.h"
|
#include "ico.h"
|
||||||
#else
|
#else
|
||||||
@ -163,11 +162,6 @@ void useStyle(QApplication *app, QString style){
|
|||||||
if(!style.isEmpty()) {
|
if(!style.isEmpty()) {
|
||||||
QApplication::setStyle(QStyleFactory::create(style));
|
QApplication::setStyle(QStyleFactory::create(style));
|
||||||
}
|
}
|
||||||
if(app->style()->objectName() == "cleanlooks") {
|
|
||||||
// Force our own cleanlooks style
|
|
||||||
qDebug("Forcing our own cleanlooks style");
|
|
||||||
app->setStyle(new QGnomeLookStyle());
|
|
||||||
}
|
|
||||||
Preferences::setStyle(app->style()->objectName());
|
Preferences::setStyle(app->style()->objectName());
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -34,7 +34,6 @@
|
|||||||
#include <QSystemTrayIcon>
|
#include <QSystemTrayIcon>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include "qgnomelook.h"
|
|
||||||
#include <QDialogButtonBox>
|
#include <QDialogButtonBox>
|
||||||
#include <QCloseEvent>
|
#include <QCloseEvent>
|
||||||
#include <QDesktopWidget>
|
#include <QDesktopWidget>
|
||||||
@ -310,11 +309,6 @@ void options_imp::changePage(QListWidgetItem *current, QListWidgetItem *previous
|
|||||||
|
|
||||||
void options_imp::useStyle() {
|
void options_imp::useStyle() {
|
||||||
QApplication::setStyle(QStyleFactory::create(comboStyle->itemText(comboStyle->currentIndex())));
|
QApplication::setStyle(QStyleFactory::create(comboStyle->itemText(comboStyle->currentIndex())));
|
||||||
if(QApplication::style()->objectName() == "cleanlooks") {
|
|
||||||
// Force our own cleanlooks style
|
|
||||||
qDebug("Forcing our own cleanlooks style");
|
|
||||||
QApplication::setStyle(new QGnomeLookStyle());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void options_imp::loadWindowState() {
|
void options_imp::loadWindowState() {
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#define PEERLISTDELEGATE_H
|
#define PEERLISTDELEGATE_H
|
||||||
|
|
||||||
#include <QItemDelegate>
|
#include <QItemDelegate>
|
||||||
|
#include <QPainter>
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
enum PeerListColumns {IP, CLIENT, PROGRESS, DOWN_SPEED, UP_SPEED, TOT_DOWN, TOT_UP, IP_HIDDEN};
|
enum PeerListColumns {IP, CLIENT, PROGRESS, DOWN_SPEED, UP_SPEED, TOT_DOWN, TOT_UP, IP_HIDDEN};
|
||||||
@ -45,30 +46,32 @@ public:
|
|||||||
~PeerListDelegate(){}
|
~PeerListDelegate(){}
|
||||||
|
|
||||||
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
||||||
|
painter->save();
|
||||||
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
||||||
switch(index.column()){
|
switch(index.column()){
|
||||||
case TOT_DOWN:
|
case TOT_DOWN:
|
||||||
case TOT_UP:
|
case TOT_UP:
|
||||||
QItemDelegate::drawBackground(painter, opt, index);
|
QItemDelegate::drawBackground(painter, opt, index);
|
||||||
QItemDelegate::drawDisplay(painter, opt, option.rect, misc::friendlyUnit(index.data().toLongLong()));
|
QItemDelegate::drawDisplay(painter, opt, option.rect, misc::friendlyUnit(index.data().toLongLong()));
|
||||||
break;
|
break;
|
||||||
case DOWN_SPEED:
|
case DOWN_SPEED:
|
||||||
case UP_SPEED:{
|
case UP_SPEED:{
|
||||||
QItemDelegate::drawBackground(painter, opt, index);
|
QItemDelegate::drawBackground(painter, opt, index);
|
||||||
double speed = index.data().toDouble();
|
double speed = index.data().toDouble();
|
||||||
if (speed > 0.0)
|
if (speed > 0.0)
|
||||||
QItemDelegate::drawDisplay(painter, opt, opt.rect, misc::friendlyUnit(speed)+tr("/s", "/second (i.e. per second)"));
|
QItemDelegate::drawDisplay(painter, opt, opt.rect, misc::friendlyUnit(speed)+tr("/s", "/second (i.e. per second)"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case PROGRESS:{
|
case PROGRESS:{
|
||||||
QItemDelegate::drawBackground(painter, opt, index);
|
QItemDelegate::drawBackground(painter, opt, index);
|
||||||
double progress = index.data().toDouble();
|
double progress = index.data().toDouble();
|
||||||
QItemDelegate::drawDisplay(painter, opt, opt.rect, QString::number(progress*100., 'f', 1)+"%");
|
QItemDelegate::drawDisplay(painter, opt, opt.rect, QString::number(progress*100., 'f', 1)+"%");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
QItemDelegate::paint(painter, option, index);
|
QItemDelegate::paint(painter, option, index);
|
||||||
}
|
}
|
||||||
|
painter->restore();
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
||||||
|
@ -54,6 +54,7 @@ class PreviewListDelegate: public QItemDelegate {
|
|||||||
~PreviewListDelegate(){}
|
~PreviewListDelegate(){}
|
||||||
|
|
||||||
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
||||||
|
painter->save();
|
||||||
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
||||||
|
|
||||||
switch(index.column()){
|
switch(index.column()){
|
||||||
@ -77,6 +78,7 @@ class PreviewListDelegate: public QItemDelegate {
|
|||||||
default:
|
default:
|
||||||
QItemDelegate::paint(painter, option, index);
|
QItemDelegate::paint(painter, option, index);
|
||||||
}
|
}
|
||||||
|
painter->restore();
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
||||||
|
@ -62,6 +62,7 @@ public:
|
|||||||
~PropListDelegate(){}
|
~PropListDelegate(){}
|
||||||
|
|
||||||
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
||||||
|
painter->save();
|
||||||
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
||||||
switch(index.column()){
|
switch(index.column()){
|
||||||
case SIZE:
|
case SIZE:
|
||||||
@ -105,6 +106,7 @@ public:
|
|||||||
QItemDelegate::paint(painter, option, index);
|
QItemDelegate::paint(painter, option, index);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
painter->restore();
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
QSize sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
||||||
|
@ -1,96 +0,0 @@
|
|||||||
/*
|
|
||||||
* Bittorrent Client using Qt4 and libtorrent.
|
|
||||||
* Copyright (C) 2006 Christophe Dumez
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License
|
|
||||||
* as published by the Free Software Foundation; either version 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the copyright holders give permission to
|
|
||||||
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
||||||
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
||||||
* and distribute the linked executables. You must obey the GNU General Public
|
|
||||||
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
||||||
* modify file(s), you may extend this exception to your version of the file(s),
|
|
||||||
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
||||||
* exception statement from your version.
|
|
||||||
*
|
|
||||||
* Contact : chris@qbittorrent.org
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef QGNOMELOOK
|
|
||||||
#define QGNOMELOOK
|
|
||||||
|
|
||||||
#include <QCleanlooksStyle>
|
|
||||||
#include <QStyleOption>
|
|
||||||
#include <QStyleOptionProgressBar>
|
|
||||||
#include <QStyleOptionProgressBarV2>
|
|
||||||
#include <QPen>
|
|
||||||
#include <QPainter>
|
|
||||||
|
|
||||||
class QGnomeLookStyle : public QCleanlooksStyle {
|
|
||||||
public:
|
|
||||||
QGnomeLookStyle() : QCleanlooksStyle() {}
|
|
||||||
|
|
||||||
void drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const {
|
|
||||||
switch(element) {
|
|
||||||
case CE_ProgressBarLabel:
|
|
||||||
if (const QStyleOptionProgressBar *pb = qstyleoption_cast<const QStyleOptionProgressBar *>(option)) {
|
|
||||||
bool vertical = false;
|
|
||||||
if (const QStyleOptionProgressBarV2 *pb2 = qstyleoption_cast<const QStyleOptionProgressBarV2 *>(option)) {
|
|
||||||
vertical = (pb2->orientation == Qt::Vertical);
|
|
||||||
}
|
|
||||||
if (!vertical) {
|
|
||||||
QPalette::ColorRole textRole = QPalette::WindowText;/*
|
|
||||||
if ((pb->textAlignment & Qt::AlignCenter) && pb->textVisible
|
|
||||||
&& ((qint64(pb->progress) - qint64(pb->minimum)) * 2 >= (qint64(pb->maximum) - qint64(pb->minimum)))) {
|
|
||||||
textRole = QPalette::HighlightedText;
|
|
||||||
//Draw text shadow, This will increase readability when the background of same color
|
|
||||||
QRect shadowRect(pb->rect);
|
|
||||||
shadowRect.translate(1,1);
|
|
||||||
QColor shadowColor = (pb->palette.color(textRole).value() <= 128) ? QColor(255,255,255,160) : QColor(0,0,0,160);
|
|
||||||
QPalette shadowPalette = pb->palette;
|
|
||||||
shadowPalette.setColor(textRole, shadowColor);
|
|
||||||
drawItemText(painter, shadowRect, Qt::AlignCenter | Qt::TextSingleLine, shadowPalette, pb->state, pb->text, textRole);
|
|
||||||
}
|
|
||||||
QPalette shadowPalette = pb->palette;
|
|
||||||
shadowPalette.setColor(textRole, QColor(0,0,0,160));*/
|
|
||||||
drawItemText(painter, pb->rect, Qt::AlignCenter | Qt::TextSingleLine, pb->palette, pb->state, pb->text, textRole);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
QCleanlooksStyle::drawControl(element, option, painter, widget);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
QRect subElementRect(SubElement element, const QStyleOption *option, const QWidget *widget=0) const
|
|
||||||
{
|
|
||||||
QRect rect;
|
|
||||||
switch (element) {
|
|
||||||
#ifndef QT_NO_PROGRESSBAR
|
|
||||||
case SE_ProgressBarLabel:
|
|
||||||
case SE_ProgressBarContents:
|
|
||||||
case SE_ProgressBarGroove:
|
|
||||||
return option->rect;
|
|
||||||
#endif // QT_NO_PROGRESSBAR
|
|
||||||
default:
|
|
||||||
return QCleanlooksStyle::subElementRect(element, option, widget);
|
|
||||||
}
|
|
||||||
|
|
||||||
return visualRect(option->direction, option->rect, rect);
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -55,6 +55,7 @@ class SearchListDelegate: public QItemDelegate {
|
|||||||
~SearchListDelegate(){}
|
~SearchListDelegate(){}
|
||||||
|
|
||||||
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
||||||
|
painter->save();
|
||||||
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
||||||
switch(index.column()){
|
switch(index.column()){
|
||||||
case SIZE:
|
case SIZE:
|
||||||
@ -64,6 +65,7 @@ class SearchListDelegate: public QItemDelegate {
|
|||||||
default:
|
default:
|
||||||
QItemDelegate::paint(painter, option, index);
|
QItemDelegate::paint(painter, option, index);
|
||||||
}
|
}
|
||||||
|
painter->restore();
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
||||||
|
@ -240,7 +240,6 @@ else:HEADERS += GUI.h \
|
|||||||
ico.h \
|
ico.h \
|
||||||
engineselectdlg.h \
|
engineselectdlg.h \
|
||||||
pluginsource.h \
|
pluginsource.h \
|
||||||
qgnomelook.h \
|
|
||||||
searchEngine.h \
|
searchEngine.h \
|
||||||
rss.h \
|
rss.h \
|
||||||
rss_imp.h \
|
rss_imp.h \
|
||||||
|
@ -55,6 +55,7 @@ public:
|
|||||||
|
|
||||||
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const{
|
||||||
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
QStyleOptionViewItemV2 opt = QItemDelegate::setOptions(index, option);
|
||||||
|
painter->save();
|
||||||
switch(index.column()){
|
switch(index.column()){
|
||||||
case TR_SIZE:{
|
case TR_SIZE:{
|
||||||
QItemDelegate::drawBackground(painter, opt, index);
|
QItemDelegate::drawBackground(painter, opt, index);
|
||||||
@ -172,6 +173,7 @@ public:
|
|||||||
default:
|
default:
|
||||||
QItemDelegate::paint(painter, option, index);
|
QItemDelegate::paint(painter, option, index);
|
||||||
}
|
}
|
||||||
|
painter->restore();
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
QWidget* createEditor(QWidget*, const QStyleOptionViewItem &, const QModelIndex &) const {
|
||||||
|
Loading…
Reference in New Issue
Block a user