X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Flabel.cc;h=bb8083ab697ebf91e7f61d8bd0e1b8d67ec74878;hb=0c05f5d9c76d4c765022eb72dc03de6671c20734;hp=05ed6cfa13c9e3975d643828cd018deb311e9210;hpb=5a90d2b671f01f29043ab82f909440de0abfa362;p=chaz%2Fopenbox diff --git a/otk/label.cc b/otk/label.cc index 05ed6cfa..bb8083ab 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -11,64 +11,59 @@ namespace otk { Label::Label(Widget *parent) : Widget(parent), _text("") { - const ScreenInfo *info = Display::screenInfo(screen()); - _xftdraw = XftDrawCreate(Display::display, window(), info->visual(), - info->colormap()); + setStyle(_style); } Label::~Label() { - XftDrawDestroy(_xftdraw); } -void Label::setStyle(Style *style) +void Label::setStyle(RenderStyle *style) { Widget::setStyle(style); - setTexture(style->getLabelUnfocus()); + setTexture(style->labelUnfocusBackground()); } -void Label::update(void) +void Label::renderForeground(void) { - if (_dirty) { - const Font *ft = style()->getFont(); - unsigned int sidemargin = style()->getBevelWidth() * 2; + otk::Widget::renderForeground(); - ustring t = _text; // the actual text to draw - int x = sidemargin; // x coord for the text + const Font *ft = style()->labelFont(); + unsigned int sidemargin = style()->bevelWidth() * 2; - // find a string that will fit inside the area for text - int max_length = width() - sidemargin * 2; - if (max_length <= 0) { - t = ""; // can't fit anything - } else { - size_t text_len = t.size(); - int length; + ustring t = _text; // the actual text to draw + int x = sidemargin; // x coord for the text + + // find a string that will fit inside the area for text + int max_length = width() - sidemargin * 2; + if (max_length <= 0) { + t = ""; // can't fit anything + } else { + size_t text_len = t.size(); + int length; - do { - t.resize(text_len); - length = ft->measureString(t); - } while (length > max_length && text_len-- > 0); + do { + t.resize(text_len); + length = ft->measureString(t); + } while (length > max_length && text_len-- > 0); - // justify the text - switch (style()->textJustify()) { - case Style::RightJustify: - x += max_length - length; - break; - case Style::CenterJustify: - x += (max_length - length) / 2; - break; - case Style::LeftJustify: - break; - } + // justify the text + switch (style()->labelTextJustify()) { + case RenderStyle::RightJustify: + x += max_length - length; + break; + case RenderStyle::CenterJustify: + x += (max_length - length) / 2; + break; + case RenderStyle::LeftJustify: + break; } + } - Widget::update(); - - ft->drawString(_xftdraw, x, 0, *style()->getTextUnfocus(), t); - } else - Widget::update(); + display->renderControl(_screen)-> + drawString(*_surface, *ft, x, 0, *style()->textUnfocusColor(), t); } }