summaryrefslogtreecommitdiffstats
path: root/src/ui/button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/button.h')
-rw-r--r--src/ui/button.h45
1 files changed, 22 insertions, 23 deletions
diff --git a/src/ui/button.h b/src/ui/button.h
index 0a05b11..33a48ee 100644
--- a/src/ui/button.h
+++ b/src/ui/button.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
@@ -18,39 +19,37 @@
#pragma once
-
#include "ui/control.h"
-class CD3DEngine;
-
-
+namespace Ui {
-class CButton : public CControl
-{
-public:
- CButton(CInstanceManager* iMan);
- virtual ~CButton();
- bool Create(Math::Point pos, Math::Point dim, int icon, EventMsg eventMsg);
+ class CButton : public CControl
+ {
+ public:
+ CButton();
+ virtual ~CButton();
- bool EventProcess(const Event &event);
+ bool Create(Math::Point pos, Math::Point dim, int icon, EventType eventType);
- void Draw();
+ bool EventProcess(const Event &event);
- void SetImmediat(bool bRepeat);
- bool RetImmediat();
+ void Draw();
- void SetRepeat(bool bRepeat);
- bool RetRepeat();
+ void SetImmediat(bool bRepeat);
+ bool GetImmediat();
-protected:
+ void SetRepeat(bool bRepeat);
+ bool GetRepeat();
-protected:
- bool m_bCapture;
- bool m_bImmediat;
- bool m_bRepeat;
- float m_repeat;
-};
+ protected:
+ protected:
+ bool m_bCapture;
+ bool m_bImmediat;
+ bool m_bRepeat;
+ float m_repeat;
+ };
+}