drawRoundedRect() function was introduced in Qt 4.4.
drawRoundRect() has become obsolete. svn path=/trunk/KDE/kdebase/workspace/; revision=776195
This commit is contained in:
parent
88c7325914
commit
9ba65b9ddc
1 changed files with 6 additions and 6 deletions
|
@ -214,10 +214,10 @@ void PlastikButton::drawButton(QPainter *painter)
|
|||
bP.drawTiledPixmap(0, 0, width(), width(), m_client->getTitleBarTile(active) );
|
||||
|
||||
if (type() != MenuButton || hover || animProgress != 0) {
|
||||
int rxo = 600/width();
|
||||
int ryo = 600/height();
|
||||
int rxi = 500/width();
|
||||
int ryi = 500/height();
|
||||
qreal rxo = 600/width();
|
||||
qreal ryo = 600/height();
|
||||
qreal rxi = 500/width();
|
||||
qreal ryi = 500/height();
|
||||
bP.setPen(Qt::NoPen);
|
||||
bP.setRenderHints(QPainter::Antialiasing);
|
||||
// contour
|
||||
|
@ -225,13 +225,13 @@ void PlastikButton::drawButton(QPainter *painter)
|
|||
outlineGradient.setColorAt(0.0, contourTop);
|
||||
outlineGradient.setColorAt(1.0, contourBottom);
|
||||
bP.setBrush(outlineGradient);
|
||||
bP.drawRoundRect(r, rxo, ryo);
|
||||
bP.drawRoundedRect(r, rxo, ryo);
|
||||
// surface
|
||||
QLinearGradient surfaceGradient(0, 0, 0, r.height());
|
||||
surfaceGradient.setColorAt(0.0, surfaceTop);
|
||||
surfaceGradient.setColorAt(1.0, surfaceBottom);
|
||||
bP.setBrush(surfaceGradient);
|
||||
bP.drawRoundRect(r.adjusted(1,1,-1,-1), rxi, ryi);
|
||||
bP.drawRoundedRect(r.adjusted(1,1,-1,-1), rxi, ryi);
|
||||
}
|
||||
|
||||
if (type() == MenuButton)
|
||||
|
|
Loading…
Reference in a new issue