summaryrefslogtreecommitdiffstats
path: root/src/ui/slider.h
diff options
context:
space:
mode:
authorMichał Konopacki <konopacki.m@gmail.com>2012-08-20 21:35:11 +0200
committerMichał Konopacki <konopacki.m@gmail.com>2012-08-20 21:35:11 +0200
commit59ec83c409952337d5c5d14c8a7be16b4d37957e (patch)
tree7d41c82bb19b4c2f71d2775f61ca4e1a11f89758 /src/ui/slider.h
parent02dc368a385fb493a87486aa929d9460ce40c31b (diff)
downloadcolobot-59ec83c409952337d5c5d14c8a7be16b4d37957e.tar.gz
colobot-59ec83c409952337d5c5d14c8a7be16b4d37957e.tar.bz2
colobot-59ec83c409952337d5c5d14c8a7be16b4d37957e.zip
added ui/slider.*
Diffstat (limited to 'src/ui/slider.h')
-rw-r--r--src/ui/slider.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ui/slider.h b/src/ui/slider.h
index e79b348..0de9b3c 100644
--- a/src/ui/slider.h
+++ b/src/ui/slider.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
@@ -23,6 +24,7 @@
#include <common/event.h>
+namespace Ui {
class CSlider : public CControl
{
@@ -45,10 +47,10 @@ class CSlider : public CControl
void SetLimit(float min, float max);
void SetVisibleValue(float value);
- float RetVisibleValue();
+ float GetVisibleValue();
void SetArrowStep(float step);
- float RetArrowStep();
+ float GetArrowStep();
protected:
void MoveAdjust();
@@ -76,3 +78,4 @@ class CSlider : public CControl
};
+}