Text Shadows in QLabel Snippets: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(clean-up)
 
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
Easy way to add shadows to text in QLabel


//Easy way to add shadows to text in QLabel
<code>
//include headers <QGraphicsDropShadowEffect>
include headers <QGraphicsDropShadowEffect>


// For an example we have QLabel called userName
// For an example we have QLabel called userName
// set blur to 0, and setOffset to 1,1 and color for smooth look must be little butter darker then text color
// set blur to 0, and setOffset to 1,1 and color for smooth look must be little butter darker then text color


<code> QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect(this);
QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect(this);
effect->setBlurRadius(0);
effect->setBlurRadius(0);
effect->setColor(QColor("#EEEEEE"));
effect->setColor(QColor("#EEEEEE"));
effect->setOffset(1,1);
effect->setOffset(1,1);
ui->userName->setGraphicsEffect(effect);</code>
ui->userName->setGraphicsEffect(effect);
</code>

Latest revision as of 15:32, 24 March 2016

Easy way to add shadows to text in QLabel

include headers <QGraphicsDropShadowEffect>

// For an example we have QLabel called userName
// set blur to 0, and setOffset to 1,1 and color for smooth look must be little butter darker then text color

QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect(this);
effect->setBlurRadius(0);
effect->setColor(QColor("#EEEEEE"));
effect->setOffset(1,1);
ui->userName->setGraphicsEffect(effect);