38 QPainter painter(
this);
40 QColor backGroundColor = qApp->palette().light().color();
41 QColor foregroundColor = qApp->palette().windowText().color();
43 QWidget::paintEvent(event);
44 painter.setRenderHint(QPainter::Antialiasing);
46 path.addRoundedRect(this->
rect(), 6, 6);
49 painter.fillPath(path, qApp->palette().light());