aboutsummaryrefslogtreecommitdiff
path: root/scumm/help.h
diff options
context:
space:
mode:
authorMax Horn2003-06-14 21:18:14 +0000
committerMax Horn2003-06-14 21:18:14 +0000
commitb8e32a5b6fb07424b5dc6329ee72a83c710a11fb (patch)
treee100fe8fe9b5cb2431fc205da1d796fb5a1536ad /scumm/help.h
parent9f8338503aabee8f2c4bc44d33d6266d573009e9 (diff)
downloadscummvm-rg350-b8e32a5b6fb07424b5dc6329ee72a83c710a11fb.tar.gz
scummvm-rg350-b8e32a5b6fb07424b5dc6329ee72a83c710a11fb.tar.bz2
scummvm-rg350-b8e32a5b6fb07424b5dc6329ee72a83c710a11fb.zip
Patch #745843: Help Dialog; in addition, I moved the 'About' dialog button from the options dialog to the main save/load dialog and enlarged & rearranged that dialog
svn-id: r8485
Diffstat (limited to 'scumm/help.h')
-rw-r--r--scumm/help.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/scumm/help.h b/scumm/help.h
new file mode 100644
index 0000000000..c4383ca31a
--- /dev/null
+++ b/scumm/help.h
@@ -0,0 +1,38 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2002-2003 The ScummVM project
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#ifndef SCUMM_HELP_H
+#define SCUMM_HELP_H
+
+#include "common/str.h"
+
+#define HELP_NUM_LINES 14
+
+class ScummHelp {
+protected:
+ typedef ScummVM::String String;
+
+public:
+ static int numPages(byte gameId);
+ static void updateStrings(byte gameId, int page, String &title,
+ String *&key, String *&dsc);
+};
+
+#endif
+