summaryrefslogtreecommitdiffstats
path: root/src/ui/edit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/edit.h')
-rw-r--r--src/ui/edit.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/ui/edit.h b/src/ui/edit.h
index dbd94d1..73bd062 100644
--- a/src/ui/edit.h
+++ b/src/ui/edit.h
@@ -19,14 +19,11 @@
#pragma once
-#include "common/struct.h"
-#include "ui/control.h"
-
-
-class CD3DEngine;
-class CScroll;
-
+#include <common/struct.h>
+#include <common/event.h>
+#include <ui/control.h>
+#include <ui/scroll.h>
const int EDITSTUDIOMAX = 20000; // maximum number of characters in CBOT edit
const int EDITLINEMAX = 1000; // maximum total number of lines
@@ -85,10 +82,10 @@ struct HyperHistory
class CEdit : public CControl
{
public:
- CEdit(CInstanceManager* iMan);
+ CEdit();
virtual ~CEdit();
- bool Create(Math::Point pos, Math::Point dim, int icon, EventMsg eventMsg);
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventMsg);
void SetPos(Math::Point pos);
void SetDim(Math::Point dim);
@@ -145,8 +142,8 @@ public:
void HyperFlush();
void HyperHome(char *filename);
- bool HyperTest(EventMsg event);
- bool HyperGo(EventMsg event);
+ bool HyperTest(EventType event);
+ bool HyperGo(EventType event);
void SetFontSize(float size);