aboutsummaryrefslogtreecommitdiff
path: root/gui/launcher.h
diff options
context:
space:
mode:
authorMax Horn2003-11-05 12:25:42 +0000
committerMax Horn2003-11-05 12:25:42 +0000
commit297ddb370b450c925cbe9a04aefb575d57a34efa (patch)
tree869d74e6c5a89134ef34f136c25bd64e1bb5032f /gui/launcher.h
parent0dfd0e44148333257cf37e5e82ed902de3ac68a2 (diff)
downloadscummvm-rg350-297ddb370b450c925cbe9a04aefb575d57a34efa.tar.gz
scummvm-rg350-297ddb370b450c925cbe9a04aefb575d57a34efa.tar.bz2
scummvm-rg350-297ddb370b450c925cbe9a04aefb575d57a34efa.zip
refactored common code into a new class OptionsDialog; various fixes and cleanup to the launcher/option dialogs
svn-id: r11152
Diffstat (limited to 'gui/launcher.h')
-rw-r--r--gui/launcher.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gui/launcher.h b/gui/launcher.h
index d7f7b6dc81..fa74186b2b 100644
--- a/gui/launcher.h
+++ b/gui/launcher.h
@@ -36,8 +36,6 @@ public:
LauncherDialog(GameDetector &detector);
~LauncherDialog();
- virtual void open();
- virtual void close();
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
protected:
@@ -51,6 +49,10 @@ protected:
void updateListing();
void updateButtons();
+
+ void addGame();
+ void removeGame(int item);
+ void editGame(int item);
};
#endif