1 #ifndef MSP_GLTK_LABEL_H_
2 #define MSP_GLTK_LABEL_H_
11 Labels display static text. There is one special part: "text".
13 class Label: public Widget
16 class Loader: public Widget::Loader
21 void text(const std::string &);
28 Label(const std::string & = std::string());
30 virtual const char *get_class() const { return "label"; }
32 virtual void autosize();
33 void set_text(const std::string &);
36 virtual void rebuild_special(const Part &, CachedPart &);
38 virtual void on_style_change();