X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=otk%2Flabel.cc;h=da9edfd179708c591b30b6fbbe2e6f4ff6ceed59;hb=0dcbf985c11c850b30b2983e1e20cd8cf033f054;hp=170974ac2d2c449ef072362cfdf06e7686db5092;hpb=26adc8853bc04f3f2f2d2e5f5ac94121f23b72e2;p=chaz%2Fopenbox diff --git a/otk/label.cc b/otk/label.cc index 170974ac..da9edfd1 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -8,40 +8,38 @@ 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()); + const ScreenInfo *info = display->screenInfo(screen()); + _xftdraw = XftDrawCreate(**display, window(), info->visual(), + info->colormap()); } -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 +48,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 +64,11 @@ void OtkLabel::update(void) } } - OtkWidget::update(); + Widget::update(); - ft.drawString(_xftdraw, x, bevel, *getStyle()->getTextUnfocus(), t); + ft->drawString(_xftdraw, x, 0, *style()->getTextUnfocus(), t); } else - OtkWidget::update(); + Widget::update(); } }