summaryrefslogtreecommitdiff
path: root/src/gui/setup.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-04-08 00:44:12 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-04-08 00:51:30 +0200
commitaefbc69aac9f7c793725153eefce2631555bfd1f (patch)
treedc43d7d5cb5cf84373ee43a02998349d1deb3e0c /src/gui/setup.h
parent3b229e19c2b7545a71a066383872acd5d9348e41 (diff)
downloadmana-client-aefbc69aac9f7c793725153eefce2631555bfd1f.tar.gz
mana-client-aefbc69aac9f7c793725153eefce2631555bfd1f.tar.bz2
mana-client-aefbc69aac9f7c793725153eefce2631555bfd1f.tar.xz
mana-client-aefbc69aac9f7c793725153eefce2631555bfd1f.zip
Associated setup tab name with the tab itself
Keeps things together in the right place and allowed writing a bit more generic code in the Setup class.
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r--src/gui/setup.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h
index 0c97370f..630d5eaa 100644
--- a/src/gui/setup.h
+++ b/src/gui/setup.h
@@ -33,21 +33,22 @@
class SetupTab;
/**
- * The setup dialog.
+ * The setup dialog. Displays several tabs for configuring different aspects
+ * of the game.
+ *
+ * @see Setup_Audio
+ * @see Setup_Colors
+ * @see Setup_Joystick
+ * @see Setup_Keyboard
+ * @see Setup_Players
+ * @see Setup_Video
*
* \ingroup GUI
*/
class Setup : public Window, public gcn::ActionListener
{
public:
- /**
- * Constructor.
- */
Setup();
-
- /**
- * Destructor.
- */
~Setup();
/**