From af9c9091ed69394171485aa4c4814504f86f2004 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 23 Jan 2012 20:08:12 +0100 Subject: Simple image blit. New slider class. New filenamelineedit. New pixelbuffer used for drawing everything but the root window - with alpha blending... --- plugingui/label.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'plugingui/label.h') diff --git a/plugingui/label.h b/plugingui/label.h index d7ad6c9..50f02d6 100644 --- a/plugingui/label.h +++ b/plugingui/label.h @@ -29,17 +29,25 @@ #include "widget.h" +#include + +#include "guievent.h" + +namespace GUI { + class Label : public Widget { public: - Label(GlobalContext *gctx, Widget *parent); + Label(Widget *parent); void setText(std::string text); -protected: - virtual void repaint(RepaintEvent *e); + //protected: + virtual void repaintEvent(RepaintEvent *e); private: std::string _text; }; +}; + #endif/*__DRUMGIZMO_LABEL_H__*/ -- cgit v1.2.3