diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-09-04 21:21:50 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-09-04 21:21:50 +0200 |
commit | 04ce68074dd7c737b52e2dd279d2c56d18ebf6db (patch) | |
tree | 56a149f6504ad9f15486f6ffdbefb7484d7a68d0 /plugingui/label.h | |
parent | 3ec43973d1e269c5e6124e02276107c2c3020180 (diff) |
Refactored Label.
Diffstat (limited to 'plugingui/label.h')
-rw-r--r-- | plugingui/label.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/plugingui/label.h b/plugingui/label.h index 50f02d6..707cdb1 100644 --- a/plugingui/label.h +++ b/plugingui/label.h @@ -24,30 +24,28 @@ * along with DrumGizmo; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_LABEL_H__ -#define __DRUMGIZMO_LABEL_H__ +#pragma once #include "widget.h" #include <string> -#include "guievent.h" - namespace GUI { +class RepaintEvent; + class Label : public Widget { public: Label(Widget *parent); void setText(std::string text); - //protected: - virtual void repaintEvent(RepaintEvent *e); +protected: + // From Widget: + virtual void repaintEvent(RepaintEvent *e) override; private: std::string _text; }; -}; - -#endif/*__DRUMGIZMO_LABEL_H__*/ +} // GUI:: |