aboutsummaryrefslogtreecommitdiff
path: root/gui/downloaddialog.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-07-03 20:09:51 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit97c0bbd2388ac049970fc3c99ebdc072c75724f1 (patch)
tree4eeec1e047cbbcb845499e52bc6d602bfa0f2b37 /gui/downloaddialog.h
parentacce1c89ab2b9b362fa9f2fc32ae813c62038705 (diff)
downloadscummvm-rg350-97c0bbd2388ac049970fc3c99ebdc072c75724f1.tar.gz
scummvm-rg350-97c0bbd2388ac049970fc3c99ebdc072c75724f1.tar.bz2
scummvm-rg350-97c0bbd2388ac049970fc3c99ebdc072c75724f1.zip
GUI: Add DownloadDialog sketch
Diffstat (limited to 'gui/downloaddialog.h')
-rw-r--r--gui/downloaddialog.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/gui/downloaddialog.h b/gui/downloaddialog.h
new file mode 100644
index 0000000000..333ce0e03b
--- /dev/null
+++ b/gui/downloaddialog.h
@@ -0,0 +1,56 @@
+/* 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_DOWNLOADDIALOG_H
+#define GUI_DOWNLOADDIALOG_H
+
+#include "gui/dialog.h"
+#include "common/str.h"
+
+namespace GUI {
+
+class CommandSender;
+class EditTextWidget;
+class StaticTextWidget;
+class ButtonWidget;
+
+class DownloadDialog : public Dialog {
+ StaticTextWidget *_messageText;
+ ButtonWidget *_mainButton;
+ ButtonWidget *_closeButton;
+
+ bool _wasInProgress, _inProgress;
+ bool _close;
+
+ void updateButtons();
+
+public:
+ DownloadDialog(uint32 storageId);
+
+ virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
+ virtual void handleTickle();
+ virtual void reflowLayout();
+};
+
+} // End of namespace GUI
+
+#endif