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 DataFile::DerivedObjectLoader<Label, 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 void set_text(const std::string &);
35 virtual void autosize_special(const Part &, Geometry &);
36 virtual void rebuild_special(const Part &);
38 virtual void on_style_change();