openbox/otk/label.hh
2002-11-16 13:08:10 +00:00

30 lines
487 B
C++

#ifndef __label_hh
#define __label_hh
#include "widget.hh"
namespace otk {
class OtkLabel : public OtkWidget {
public:
OtkLabel(OtkWidget *parent);
~OtkLabel();
inline const std::string &getText(void) const { return _text; }
void setText(const std::string &text) { _text = text; _dirty = true; }
void update(void);
int exposeHandler(const XExposeEvent &e);
int configureHandler(const XConfigureEvent &e);
private:
std::string _text;
bool _dirty;
};
}
#endif