]> git.tdb.fi Git - libs/gltk.git/blob - source/indicator.cpp
fba81665c2092a66cc057f5ff0f8882865b1f0ed
[libs/gltk.git] / source / indicator.cpp
1 #include "indicator.h"
2
3 namespace Msp {
4 namespace GLtk {
5
6 Indicator::Indicator()
7 {
8         focusable = false;
9 }
10
11 void Indicator::set_active(bool a)
12 {
13         set_state(ACTIVE, (a ? ACTIVE : NORMAL));
14 }
15
16 } // namespace GLtk
17 } // namespace Msp