Browse Source

- Handling progress bar text painting ourselves because some styles really don't handle it well (cleanlooks...)

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
6ee9152b21
  1. 4
      src/DLListDelegate.h
  2. 4
      src/FinishedListDelegate.h
  3. 7
      src/PreviewListDelegate.h
  4. 7
      src/PropListDelegate.h

4
src/DLListDelegate.h

@ -88,9 +88,11 @@ class DLListDelegate: public QItemDelegate { @@ -88,9 +88,11 @@ class DLListDelegate: public QItemDelegate {
newopt.maximum = 100;
newopt.minimum = 0;
newopt.state |= QStyle::State_Enabled;
newopt.textVisible = true;
newopt.textVisible = false;
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt,
painter);
painter->setPen(QColor("Black"));
painter->drawText(opt.rect, Qt::AlignCenter, newopt.text);
break;
}
default:

4
src/FinishedListDelegate.h

@ -81,9 +81,11 @@ class FinishedListDelegate: public QItemDelegate { @@ -81,9 +81,11 @@ class FinishedListDelegate: public QItemDelegate {
newopt.maximum = 100;
newopt.minimum = 0;
newopt.state |= QStyle::State_Enabled;
newopt.textVisible = true;
newopt.textVisible = false;
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt,
painter);
painter->setPen(QColor("Black"));
painter->drawText(opt.rect, Qt::AlignCenter, newopt.text);
break;
}
default:

7
src/PreviewListDelegate.h

@ -63,9 +63,10 @@ class PreviewListDelegate: public QItemDelegate { @@ -63,9 +63,10 @@ class PreviewListDelegate: public QItemDelegate {
newopt.maximum = 100;
newopt.minimum = 0;
newopt.state |= QStyle::State_Enabled;
newopt.textVisible = true;
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt,
painter);
newopt.textVisible = false;
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt, painter);
painter->setPen(QColor("Black"));
painter->drawText(opt.rect, Qt::AlignCenter, newopt.text);
break;
}
default:

7
src/PropListDelegate.h

@ -76,9 +76,10 @@ class PropListDelegate: public QItemDelegate { @@ -76,9 +76,10 @@ class PropListDelegate: public QItemDelegate {
newopt.maximum = 100;
newopt.minimum = 0;
newopt.state |= QStyle::State_Enabled;
newopt.textVisible = true;
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt,
painter);
newopt.textVisible = false;
QApplication::style()->drawControl(QStyle::CE_ProgressBar, &newopt, painter);
painter->setPen(QColor("Black"));
painter->drawText(opt.rect, Qt::AlignCenter, newopt.text);
break;
}
case PRIORITY:{

Loading…
Cancel
Save