X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Flabel.cc;h=8c429dba92157bc962b0362c9eefe52369cc3b47;hb=d8d9b42777ace234f3471918e1210062578f8188;hp=5f2b22ee0c38a86eb44cefee0ce8a0a04bf9f938;hpb=3ce8b540aae127c773c57fcf7094e11319d3c6a3;p=chaz%2Fopenbox diff --git a/otk/label.cc b/otk/label.cc index 5f2b22ee..8c429dba 100644 --- a/otk/label.cc +++ b/otk/label.cc @@ -1,72 +1,67 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif + #include "label.hh" namespace otk { -OtkLabel::OtkLabel(OtkWidget *parent) - : OtkWidget(parent), _text(""), _dirty(false) +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(); + Widget::setStyle(style); - 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; - - do { - t.resize(text_len); - length = ft.measureString(t); - } while (length > max_length && text_len-- > 0); + // XXX: do this again + //setTexture(style->getLabelUnfocus()); +} - // 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; - } - } - OtkWidget::update(); +void Label::renderForeground(void) +{ + const Font *ft = style()->getFont(); + unsigned int sidemargin = style()->getBevelWidth() * 2; - ft.drawString(getWindow(), x, bevel, *getStyle()->getTextUnfocus(), t); - } else - OtkWidget::update(); + ustring t = _text; // the actual text to draw + int x = sidemargin; // x coord for the text - _dirty = false; -} + // 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); -int OtkLabel::exposeHandler(const XExposeEvent &e) -{ - _dirty = true; - return OtkWidget::exposeHandler(e); -} + // 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; + } + } -int OtkLabel::configureHandler(const XConfigureEvent &e) -{ - if (!(e.width == width() && e.height == height())) - _dirty = true; - return OtkWidget::configureHandler(e); + display->renderControl(_screen)-> + drawString(_surface, *ft, x, 0, *style()->getTextUnfocus(), t); } }