aboutsummaryrefslogtreecommitdiff
path: root/gui/launcher.cpp
diff options
context:
space:
mode:
authorMax Horn2003-11-02 19:11:03 +0000
committerMax Horn2003-11-02 19:11:03 +0000
commitaf19319a246100cf1164538589389258f8409d43 (patch)
tree72d78a570e17d5253264f1c2066bd59f75822835 /gui/launcher.cpp
parentac4b9ccdb8f0d0491c80ec026d8ed510f729cabf (diff)
downloadscummvm-rg350-af19319a246100cf1164538589389258f8409d43.tar.gz
scummvm-rg350-af19319a246100cf1164538589389258f8409d43.tar.bz2
scummvm-rg350-af19319a246100cf1164538589389258f8409d43.zip
added initial TabWidget stub (if you want to try it, I added some testing code to launcher.cpp which you just have to un-#if). This is not yet finished, obviously, but enough to 'get the idea', I hope
svn-id: r11062
Diffstat (limited to 'gui/launcher.cpp')
-rw-r--r--gui/launcher.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index ead4891d25..18b0e8a000 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -29,6 +29,7 @@
#include "gui/options.h"
#include "gui/EditTextWidget.h"
#include "gui/ListWidget.h"
+#include "gui/TabWidget.h"
#include "backends/fs/fs.h"
@@ -174,7 +175,13 @@ LauncherDialog::LauncherDialog(GameDetector &detector)
new ButtonWidget(this, x, _h - 24, width, 16, "Start", kStartCmd, 'S'); x += space + width;
// Add list with game titles
+#if 0
+ // HACK HACK HACK FIXME
+ new TabWidget(this, 0, 76, 320, 64);
+ _list = new ListWidget(this, 10, 28, 300, 46);
+#else
_list = new ListWidget(this, 10, 28, 300, 112);
+#endif
_list->setEditable(false);
_list->setNumberingMode(kListNumberingOff);