X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Flabel.cc;h=41e5cd14e3505b5621a853c594b6da364728502e;hb=bf24a3b7fcf8235a272a86c1e81e902aba2304d6;hp=21811a2c43b20577fbfba90b06686a3a8a4b85d8;hpb=c6f228f3ff9ab7087669366a23d2ae61d8e5b9b9;p=chaz%2Fopenbox diff --git a/otk/label.cc b/otk/label.cc index 21811a2c..41e5cd14 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -8,61 +8,61 @@ namespace otk { -OtkLabel::OtkLabel(OtkWidget *parent) - : OtkWidget(parent), _text("") +Label::Label(Widget *parent) + : Widget(parent), _text("") { - const ScreenInfo *info = OBDisplay::screenInfo(getScreen()); - _xftdraw = XftDrawCreate(OBDisplay::display, getWindow(), info->getVisual(), - info->getColormap()); - - setTexture(getStyle()->getLabelUnfocus()); } -OtkLabel::~OtkLabel() +Label::~Label() { - XftDrawDestroy(_xftdraw); } -void OtkLabel::update(void) +void Label::setStyle(RenderStyle *style) { - if (_dirty) { - const BFont &ft = getStyle()->getFont(); - unsigned int bevel = getStyle()->getBevelWidth(); + Widget::setStyle(style); - std::string t = _text; // the actual text to draw - int x = bevel; // x coord for the text + setTexture(style->labelUnfocusBackground()); +} + + +void Label::renderForeground(void) +{ + otk::Widget::renderForeground(); - // find a string that will fit inside the area for text - int max_length = width() - getBevelWidth() * 2; - if (max_length <= 0) { - t = ""; // can't fit anything - } else { - size_t text_len = t.size(); - int length; + const Font *ft = style()->labelFont(); + unsigned int sidemargin = style()->bevelWidth() * 2; + + 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 (getStyle()->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; } + } - OtkWidget::update(); - - ft.drawString(_xftdraw, x, bevel, *getStyle()->getTextUnfocus(), t); - } else - OtkWidget::update(); + display->renderControl(_screen)-> + drawString(*_surface, *ft, x, 0, *style()->textUnfocusColor(), t); } }