X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Flabel.cc;h=8c429dba92157bc962b0362c9eefe52369cc3b47;hb=d8d9b42777ace234f3471918e1210062578f8188;hp=1537b9277a514b736b75c8bf64e9ec949b021729;hpb=1d897f432e54400cb2a0e1499712782b336fd728;p=chaz%2Fopenbox diff --git a/otk/label.cc b/otk/label.cc index 1537b927..8c429dba 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -8,56 +8,60 @@ namespace otk { -OtkLabel::OtkLabel(OtkWidget *parent) - : OtkWidget(parent), _text("") +Label::Label(Widget *parent) + : Widget(parent), _text("") { - setTexture(getStyle()->getLabelUnfocus()); } -OtkLabel::~OtkLabel() +Label::~Label() { } -void OtkLabel::update(void) +void Label::setStyle(Style *style) { - if (_dirty) { - const BFont &ft = getStyle()->getFont(); - unsigned int bevel = getStyle()->getBevelWidth(); - - std::string t = _text; // the actual text to draw - int x = bevel; // x coord for the text - - // 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; + Widget::setStyle(style); + + // XXX: do this again + //setTexture(style->getLabelUnfocus()); +} + + +void Label::renderForeground(void) +{ + const Font *ft = style()->getFont(); + unsigned int sidemargin = style()->getBevelWidth() * 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); - - // 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; - } - } + do { + t.resize(text_len); + length = ft->measureString(t); + } while (length > max_length && text_len-- > 0); - OtkWidget::update(); + // 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; + } + } - ft.drawString(getWindow(), x, bevel, *getStyle()->getTextUnfocus(), t); - } else - OtkWidget::update(); + display->renderControl(_screen)-> + drawString(_surface, *ft, x, 0, *style()->getTextUnfocus(), t); } }