aboutsummaryrefslogtreecommitdiff
path: root/gui/storagewizarddialog.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-06-16 15:19:13 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit5ac3adbd4fbf40c22fccab6ce8bf8dcab8f98eff (patch)
tree3b376dc1594ea7f4cddfaeedc6e7cacdc611021c /gui/storagewizarddialog.h
parent733d998e6a005af78b308817ea7326d1f5192069 (diff)
downloadscummvm-rg350-5ac3adbd4fbf40c22fccab6ce8bf8dcab8f98eff.tar.gz
scummvm-rg350-5ac3adbd4fbf40c22fccab6ce8bf8dcab8f98eff.tar.bz2
scummvm-rg350-5ac3adbd4fbf40c22fccab6ce8bf8dcab8f98eff.zip
CLOUD: Add IndexPageHandler
This commit also adds LocalWebserver's stopOnIdle(). That means server is not stopped immediately, but only when all clients are served.
Diffstat (limited to 'gui/storagewizarddialog.h')
-rw-r--r--gui/storagewizarddialog.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gui/storagewizarddialog.h b/gui/storagewizarddialog.h
index fa45f922d9..93df56d300 100644
--- a/gui/storagewizarddialog.h
+++ b/gui/storagewizarddialog.h
@@ -33,12 +33,19 @@ class EditTextWidget;
class StaticTextWidget;
class ButtonWidget;
+#ifdef USE_SDL_NET
+enum StorageWizardDialogCommands {
+ kStorageCodePassedCmd = 'SWDC'
+};
+#endif
+
class StorageWizardDialog : public Dialog {
static const uint32 CODE_FIELDS = 8;
uint32 _storageId;
EditTextWidget *_codeWidget[CODE_FIELDS];
StaticTextWidget *_messageWidget;
ButtonWidget *_connectWidget;
+ bool _close;
/**
* Return the value corresponding to the given character.
@@ -69,6 +76,7 @@ public:
virtual void open();
virtual void close();
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
+ virtual void handleTickle();
};
} // End of namespace GUI