]> icculus.org git repositories - mikachu/openbox.git/blob - otk/label.cc
add an OBBackgroundWidget and use it for setting colors so far.
[mikachu/openbox.git] / otk / label.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 #include "label.hh"
8
9 namespace otk {
10
11 OtkLabel::OtkLabel(OtkWidget *parent)
12   : OtkWidget(parent), _text("")
13 {
14   const ScreenInfo *info = OBDisplay::screenInfo(getScreen());
15   _xftdraw = XftDrawCreate(OBDisplay::display, getWindow(), info->getVisual(),
16                            info->getColormap());
17 }
18
19 OtkLabel::~OtkLabel()
20 {
21   XftDrawDestroy(_xftdraw);
22 }
23
24 void OtkLabel::setStyle(Style *style)
25 {
26   OtkWidget::setStyle(style);
27
28   setTexture(getStyle()->getLabelUnfocus());
29 }
30
31
32 void OtkLabel::update(void)
33 {
34   if (_dirty) {
35     const BFont &ft = getStyle()->getFont();
36     unsigned int sidemargin = getStyle()->getBevelWidth() * 2;
37
38     std::string t = _text; // the actual text to draw
39     int x = sidemargin;    // x coord for the text
40
41     // find a string that will fit inside the area for text
42     int max_length = width() - sidemargin * 2;
43     if (max_length <= 0) {
44       t = ""; // can't fit anything
45     } else {
46       size_t text_len = t.size();
47       int length;
48       
49       do {
50         t.resize(text_len);
51         length = ft.measureString(t);
52       } while (length > max_length && text_len-- > 0);
53
54       // justify the text
55       switch (getStyle()->textJustify()) {
56       case Style::RightJustify:
57         x += max_length - length;
58         break;
59       case Style::CenterJustify:
60         x += (max_length - length) / 2;
61         break;
62       case Style::LeftJustify:
63         break;
64       }
65     }
66
67     OtkWidget::update();
68
69     ft.drawString(_xftdraw, x, 0, *getStyle()->getTextUnfocus(), t);
70   } else
71     OtkWidget::update();
72 }
73
74 }