X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Ffocuslabel.cc;h=846d035ebb78de0317161796e1009535b505db32;hb=59ef3022a4ce0a23e6d54f7d73a2aa77721e9cc9;hp=712fce37cb5a9755f6e7d36376dab16499040c4c;hpb=11f59d7925068357e24ca743c23019f671e6a5d7;p=chaz%2Fopenbox diff --git a/otk/focuslabel.cc b/otk/focuslabel.cc index 712fce37..846d035e 100644 --- a/otk/focuslabel.cc +++ b/otk/focuslabel.cc @@ -13,6 +13,7 @@ namespace otk { FocusLabel::FocusLabel(Widget *parent) : FocusWidget(parent), _text("") { + setStyle(_style); } FocusLabel::~FocusLabel() @@ -28,13 +29,50 @@ void FocusLabel::setStyle(RenderStyle *style) setUnfocusTexture(style->labelUnfocusBackground()); } +void FocusLabel::fitString(const std::string &str) +{ + const Font *ft = style()->labelFont(); + fitSize(ft->measureString(str), ft->height()); +} + +void FocusLabel::fitSize(int w, int h) +{ + unsigned int sidemargin = _bevel_width * 2; + resize(w + sidemargin * 2, h + _bevel_width * 2); +} + +void FocusLabel::update() +{ + if (_dirty) { + int w = _rect.width(), h = _rect.height(); + const Font *ft = style()->labelFont(); + unsigned int sidemargin = _bevel_width * 2; + if (!_fixed_width) + w = ft->measureString(_text) + sidemargin * 2; + if (!_fixed_height) + h = ft->height(); + + // enforce a minimum size + if (w > _rect.width()) { + if (h > _rect.height()) + internalResize(w, h); + else + internalResize(w, _rect.height()); + } else if (h > _rect.height()) + internalResize(_rect.width(), h); + } + FocusWidget::update(); +} + void FocusLabel::renderForeground() { + FocusWidget::renderForeground(); + const Font *ft = style()->labelFont(); RenderColor *text_color = (isFocused() ? style()->textFocusColor() : style()->textUnfocusColor()); - unsigned int sidemargin = style()->bevelWidth() * 2; + unsigned int sidemargin = _bevel_width * 2; ustring t = _text; // the actual text to draw int x = sidemargin; // x coord for the text @@ -66,7 +104,7 @@ void FocusLabel::renderForeground() } display->renderControl(_screen)-> - drawString(*_surface, *ft, x, 0, *text_color, t); + drawString(*_surface, *ft, x, _bevel_width, *text_color, t); } }