openbox/otk/label.hh

40 lines
750 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"
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; }
2003-01-20 06:11:12 +00:00
virtual void renderForeground(void);
2003-01-30 21:11:04 +00:00
virtual void update();
void fitString(const std::string &str);
void fitSize(int w, int h);
2003-01-22 22:46:16 +00:00
virtual void setStyle(RenderStyle *style);
private:
2003-01-20 06:11:12 +00:00
//! Text to be displayed in the label
ustring _text;
2003-01-20 06:11:12 +00:00
//! The actual text being shown, may be a subset of _text
ustring _drawtext;
//! The drawing offset for the text
int _drawx;
};
}
#endif