]> Dogcows Code - chaz/openbox/blobdiff - otk/label.cc
allow for ignoring x errors.
[chaz/openbox] / otk / label.cc
index fa12a0fa2f2fdb8226161f2bb0fb12ba9503041f..bb8083ab697ebf91e7f61d8bd0e1b8d67ec74878 100644 (file)
@@ -8,69 +8,62 @@
 
 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());
+  setStyle(_style);
 }
 
-OtkLabel::~OtkLabel()
+Label::~Label()
 {
-  XftDrawDestroy(_xftdraw);
 }
 
-void OtkLabel::setStyle(Style *style)
+void Label::setStyle(RenderStyle *style)
 {
-  OtkWidget::setStyle(style);
+  Widget::setStyle(style);
 
-  setTexture(getStyle()->getLabelUnfocus());
+  setTexture(style->labelUnfocusBackground());
 }
 
 
-void OtkLabel::update(void)
+void Label::renderForeground(void)
 {
-  if (_dirty) {
-    const BFont &ft = getStyle()->getFont();
-    unsigned int sidemargin = getStyle()->getBevelWidth() * 2;
+  otk::Widget::renderForeground();
 
-    std::string t = _text; // the actual text to draw
-    int x = sidemargin;    // x coord for the text
+  const Font *ft = style()->labelFont();
+  unsigned int sidemargin = style()->bevelWidth() * 2;
 
-    // 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;
+  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() - 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);
+    do {
+      t.resize(text_len);
+      length = ft->measureString(t);
+    } while (length > max_length && text_len-- > 0);
 
-      // 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;
-      }
+    // justify the text
+    switch (style()->labelTextJustify()) {
+    case RenderStyle::RightJustify:
+      x += max_length - length;
+      break;
+    case RenderStyle::CenterJustify:
+      x += (max_length - length) / 2;
+      break;
+    case RenderStyle::LeftJustify:
+      break;
     }
+  }
 
-    OtkWidget::update();
-
-    ft.drawString(_xftdraw, x, 0, *getStyle()->getTextUnfocus(), t);
-  } else
-    OtkWidget::update();
+  display->renderControl(_screen)->
+    drawString(*_surface, *ft, x, 0, *style()->textUnfocusColor(), t);
 }
 
 }
This page took 0.022193 seconds and 4 git commands to generate.