summaryrefslogtreecommitdiff
path: root/src/gui/box.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-13 10:20:19 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-13 10:20:19 +0000
commitd3385829ca6f7d52e21706b25b14fe1083cfe984 (patch)
treeaea368b2434a49864b33183f95b6aae36abef3b7 /src/gui/box.h
parent7d287027babe615e01ddcf20edc1057f7d778c58 (diff)
downloadMana-d3385829ca6f7d52e21706b25b14fe1083cfe984.tar.gz
Mana-d3385829ca6f7d52e21706b25b14fe1083cfe984.tar.bz2
Mana-d3385829ca6f7d52e21706b25b14fe1083cfe984.tar.xz
Mana-d3385829ca6f7d52e21706b25b14fe1083cfe984.zip
Merged Guichan 0.5.0 support from guichan-0.5.0 branch, plus several updates
from the 0.1.0 branch.
Diffstat (limited to 'src/gui/box.h')
-rw-r--r--src/gui/box.h27
1 files changed, 15 insertions, 12 deletions
diff --git a/src/gui/box.h b/src/gui/box.h
index dccbfc78..ed1a7163 100644
--- a/src/gui/box.h
+++ b/src/gui/box.h
@@ -31,27 +31,30 @@
class Box : public gcn::Container
{
+ public:
+ /**
+ * Returns padding.
+ */
+ unsigned int getPadding();
+
+ /**
+ * Sets padding between widgets.
+ */
+ void setPadding(unsigned int);
+
protected:
Box();
virtual ~Box();
- /*
- * Spacing between client widgets
+ /**
+ * Spacing between client widgets.
*/
unsigned int padding;
virtual void draw(gcn::Graphics *) = 0;
- public:
- /*
- * Returns padding
- */
- unsigned int getPadding();
-
- /*
- * Sets padding between widgets
- */
- void setPadding(unsigned int);
+ typedef std::list<gcn::Widget*> Widgets;
+ typedef Widgets::iterator WidgetIterator;
};
#endif