X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Flabel.cc;h=2d8b944261878cbca576b083d6db366f0022677a;hb=9b6e5f9cf49df78be25720f9c4b33a733b856c9b;hp=170974ac2d2c449ef072362cfdf06e7686db5092;hpb=26adc8853bc04f3f2f2d2e5f5ac94121f23b72e2;p=chaz%2Fopenbox diff --git a/otk/label.cc b/otk/label.cc index 170974ac..2d8b9442 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -8,40 +8,34 @@ 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()); - - setStyle(getStyle()); } -OtkLabel::~OtkLabel() +Label::~Label() { - XftDrawDestroy(_xftdraw); } -void OtkLabel::setStyle(Style *style) +void Label::setStyle(Style *style) { - OtkWidget::setStyle(style); + Widget::setStyle(style); - setTexture(getStyle()->getLabelUnfocus()); + setTexture(style->getLabelUnfocus()); } -void OtkLabel::update(void) +void Label::update(void) { if (_dirty) { - const BFont &ft = getStyle()->getFont(); - unsigned int bevel = getStyle()->getBevelWidth() / 2; + const Font *ft = style()->getFont(); + unsigned int sidemargin = style()->getBevelWidth() * 2; - std::string t = _text; // the actual text to draw - int x = bevel; // x coord for the text + 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() - bevel * 2; + int max_length = width() - sidemargin * 2; if (max_length <= 0) { t = ""; // can't fit anything } else { @@ -50,11 +44,11 @@ void OtkLabel::update(void) do { t.resize(text_len); - length = ft.measureString(t); + length = ft->measureString(t); } while (length > max_length && text_len-- > 0); // justify the text - switch (getStyle()->textJustify()) { + switch (style()->textJustify()) { case Style::RightJustify: x += max_length - length; break; @@ -66,11 +60,12 @@ void OtkLabel::update(void) } } - OtkWidget::update(); + Widget::update(); - ft.drawString(_xftdraw, x, bevel, *getStyle()->getTextUnfocus(), t); + display->renderControl(_screen)-> + drawString(this, *ft, x, 0, *style()->getTextUnfocus(), t); } else - OtkWidget::update(); + Widget::update(); } }