]> git.tdb.fi Git - libs/gltk.git/blob - source/indicator.cpp
Strip copyright messages and id tags from individual files
[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         if(a)
14                 state |= ACTIVE;
15         else
16                 state &= ~ACTIVE;
17 }
18
19 } // namespace GLtk
20 } // namespace Msp