X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Flabelwidget.hh;h=094cf86814845e1e091433125333888f190ca12c;hb=6871cff3face4486055444a6c6218a552ddad461;hp=01662f85fb3bd8a116bb7e3e91b8c7387f750c90;hpb=2ae2b257d39ea62640c2590f794e4275c6db1cd4;p=chaz%2Fopenbox diff --git a/src/labelwidget.hh b/src/labelwidget.hh index 01662f85..094cf868 100644 --- a/src/labelwidget.hh +++ b/src/labelwidget.hh @@ -2,28 +2,29 @@ #ifndef __oblabelwidget_hh #define __oblabelwidget_hh +#include "widgetbase.hh" #include "otk/widget.hh" #include "otk/font.hh" #include "otk/style.hh" -#include "widget.hh" +#include "otk/ustring.hh" namespace ob { -class OBLabelWidget : public otk::OtkWidget, public OBWidget +class LabelWidget : public otk::Widget, public WidgetBase { private: void setTextures(); - const otk::BFont *_font; - otk::BColor *_text_color; + const otk::Font *_font; + otk::Color *_text_color; int _sidemargin; otk::Style::TextJustify _justify; - std::string _text; + otk::ustring _text; //! Object used by Xft to render to the drawable XftDraw *_xftdraw; public: - OBLabelWidget(otk::OtkWidget *parent, OBWidget::WidgetType type); - virtual ~OBLabelWidget(); + LabelWidget(otk::Widget *parent, WidgetBase::WidgetType type); + virtual ~LabelWidget(); virtual void setStyle(otk::Style *style); @@ -34,8 +35,8 @@ public: virtual void update(); - inline const std::string &text() const { return _text; } - void setText(const std::string &text); + inline const otk::ustring &text() const { return _text; } + void setText(const otk::ustring &text); }; }