aboutsummaryrefslogtreecommitdiff
path: root/gui/storagewizarddialog.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-06-09 17:00:05 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commitbeb168a3a5bac602a9bf1455e7fe93dda0b13a1c (patch)
treed43f40afe80f97fbf35241ee992855f3817058e4 /gui/storagewizarddialog.h
parente1e48968b4e5b7d55594adf038657bf6a8d7bc43 (diff)
downloadscummvm-rg350-beb168a3a5bac602a9bf1455e7fe93dda0b13a1c.tar.gz
scummvm-rg350-beb168a3a5bac602a9bf1455e7fe93dda0b13a1c.tar.bz2
scummvm-rg350-beb168a3a5bac602a9bf1455e7fe93dda0b13a1c.zip
GUI: Add Cloud tab StorageWizardDialog
This is a dialog which guides user through Storage connection procedure.
Diffstat (limited to 'gui/storagewizarddialog.h')
-rw-r--r--gui/storagewizarddialog.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/gui/storagewizarddialog.h b/gui/storagewizarddialog.h
new file mode 100644
index 0000000000..ec5329b8af
--- /dev/null
+++ b/gui/storagewizarddialog.h
@@ -0,0 +1,43 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef GUI_STORAGEWIZARDDIALOG_H
+#define GUI_STORAGEWIZARDDIALOG_H
+
+#include "gui/dialog.h"
+#include "common/str.h"
+
+namespace GUI {
+
+class CommandSender;
+
+class StorageWizardDialog : public Dialog {
+ uint32 _storageId;
+public:
+ StorageWizardDialog(uint32 storageId);
+
+ void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
+};
+
+} // End of namespace GUI
+
+#endif