openbox/otk/label.hh

34 lines
579 B
C++
Raw Normal View History

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __label_hh
#define __label_hh
#include "widget.hh"
2002-12-03 08:54:51 +00:00
#include "font.hh"
namespace otk {
class Label : public Widget {
public:
Label(Widget *parent);
~Label();
inline const ustring &getText(void) const { return _text; }
void setText(const ustring &text) { _text = text; _dirty = true; }
void update(void);
virtual void setStyle(Style *style);
private:
2002-12-03 08:54:51 +00:00
//! Object used by Xft to render to the drawable
XftDraw *_xftdraw;
//! Text displayed in the label
ustring _text;
};
}
#endif