Changeset 1fe2f21 for src/gui/eventdialog.cpp
- Timestamp:
- 01/19/10 22:05:44 (13 years ago)
- Branches:
- master, qt5
- Children:
- 0ca783e
- Parents:
- 9208bdb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/eventdialog.cpp
r9208bdb r1fe2f21 1 1 #include "eventdialog.h" 2 2 3 #include <Q Debug>3 #include <QScrollBar> 4 4 5 5 EventDialog::EventDialog(const QModelIndex &aIndex, QWidget *aParent) … … 12 12 description->setStyleSheet("background-color : transparent;"); 13 13 14 // use text color from 'title' QLabel 15 QColor color = title->palette().color(QPalette::Active, QPalette::WindowText); 16 QPalette p = abstract->palette(); 17 //p.setColor(QPalette::Active, QPalette::Text, Qt::blue); 18 p.setColor(QPalette::Active, QPalette::Text, color); 19 p.setColor(QPalette::Active, QPalette::WindowText, color); 20 abstract->setPalette(p); 21 description->setPalette(p); 22 23 // set scrollbars color 24 QPalette p2 = description->verticalScrollBar()->palette(); 25 p2.setColor(QPalette::Active, QPalette::Background, color); 26 //description->verticalScrollBar()->setStyleSheet("background-color : blue;"); 27 abstract->verticalScrollBar()->setPalette(p2); 28 description->verticalScrollBar()->setPalette(p2); 29 14 30 Event *event = static_cast<Event *>(mIndex.internalPointer()); 15 31 title->setText(event->title());
Note: See TracChangeset
for help on using the changeset viewer.