X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Findicator.h;h=90c920c574100ea190166180ea7a3858dfa0888e;hb=4b52d16bc895f9d969383d7a7d6a3558c1972cc5;hp=dd8a26e52ac06fa459370bf75331726fa1936316;hpb=c2635c5a3dca6a6cea5562fd387beb0662b18cf0;p=libs%2Fgltk.git diff --git a/source/indicator.h b/source/indicator.h index dd8a26e..90c920c 100644 --- a/source/indicator.h +++ b/source/indicator.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GLTK_INDICATOR_H_ #define MSP_GLTK_INDICATOR_H_ @@ -19,10 +12,9 @@ An Indicator visualizes a boolean state. It can be either active or inactive. class Indicator: public Widget { public: - Indicator(const Resources &); + virtual const char *get_class() const { return "indicator"; } + void set_active(bool); -private: - const char *get_class() const { return "indicator"; } }; } // namespace GLtk