void FocusLabel::fitSize(int w, int h)
{
- unsigned int sidemargin = style()->bevelWidth() * 2;
+ unsigned int sidemargin = _bevel_width * 2;
resize(w + sidemargin * 2, h);
}
if (_dirty) {
int w = _rect.width(), h = _rect.height();
const Font *ft = style()->labelFont();
- unsigned int sidemargin = style()->bevelWidth() * 2;
+ unsigned int sidemargin = _bevel_width * 2;
if (!_fixed_width)
w = ft->measureString(_text) + sidemargin * 2;
if (!_fixed_height)
const Font *ft = style()->labelFont();
RenderColor *text_color = (isFocused() ? style()->textFocusColor()
: style()->textUnfocusColor());
- unsigned int sidemargin = style()->bevelWidth() * 2;
+ unsigned int sidemargin = _bevel_width * 2;
ustring t = _text; // the actual text to draw
int x = sidemargin; // x coord for the text
void Label::fitSize(int w, int h)
{
- unsigned int sidemargin = style()->bevelWidth() * 2;
+ unsigned int sidemargin = _bevel_width * 2;
resize(w + sidemargin * 2, h);
}
if (_dirty) {
int w = _rect.width(), h = _rect.height();
const Font *ft = style()->labelFont();
- unsigned int sidemargin = style()->bevelWidth() * 2;
+ unsigned int sidemargin = _bevel_width * 2;
if (!_fixed_width)
w = ft->measureString(_text) + sidemargin * 2;
if (!_fixed_height)
Widget::renderForeground();
const Font *ft = style()->labelFont();
- unsigned int sidemargin = style()->bevelWidth() * 2;
+ unsigned int sidemargin = _bevel_width * 2;
ustring t = _text; // the actual text to draw
int x = sidemargin; // x coord for the text