summaryrefslogtreecommitdiffstats
path: root/src/ui/label.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/label.h')
-rw-r--r--src/ui/label.h25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/ui/label.h b/src/ui/label.h
index d3cb915..c9e1050 100644
--- a/src/ui/label.h
+++ b/src/ui/label.h
@@ -1,5 +1,6 @@
// * This file is part of the COLOBOT source code
// * Copyright (C) 2001-2008, Daniel ROUX & EPSITEC SA, www.epsitec.ch
+// * Copyright (C) 2012 Polish Portal of Colobot (PPC)
// *
// * This program is free software: you can redistribute it and/or modify
// * it under the terms of the GNU General Public License as published by
@@ -21,26 +22,22 @@
#include "ui/control.h"
+#include "common/event.h"
+#include "common/misc.h"
-class CD3DEngine;
-
-
+namespace Ui {
class CLabel : public CControl
{
-public:
- CLabel(CInstanceManager* iMan);
- virtual ~CLabel();
-
- bool Create(Math::Point pos, Math::Point dim, int icon, EventMsg eventMsg);
-
- bool EventProcess(const Event &event);
-
- void Draw();
+ public:
+ CLabel();
+ virtual ~CLabel();
-protected:
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventMsg);
+ bool EventProcess(const Event &event);
-protected:
+ void Draw();
};
+}