]> git.tdb.fi Git - libs/gltk.git/blob - source/indicator.h
c8ecbc53ecae34dad48458a3441b87fd94ddf294
[libs/gltk.git] / source / indicator.h
1 #ifndef MSP_GLTK_INDICATOR_H_
2 #define MSP_GLTK_INDICATOR_H_
3
4 #include "widget.h"
5
6 namespace Msp {
7 namespace GLtk {
8
9 class Indicator: public Widget
10 {
11 public:
12         Indicator(const Resources &);
13         void set_active(bool);
14 private:
15         const char *get_class() const { return "indicator"; }
16 };
17
18 } // namespace GLtk
19 } // namespace Msp
20
21 #endif