[Scummvm-git-logs] scummvm master -> 65e38680dda3d631b25f01498dbc0f6fc84186cf

sev- sev at scummvm.org
Thu Sep 17 00:01:12 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
65e38680dd GUI: Added XML theme setting for overriding the fonts depending on the selected language.


Commit: 65e38680dda3d631b25f01498dbc0f6fc84186cf
    https://github.com/scummvm/scummvm/commit/65e38680dda3d631b25f01498dbc0f6fc84186cf
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-09-17T02:00:33+02:00

Commit Message:
GUI: Added XML theme setting for overriding the fonts depending on the selected language.

- Added Japanese, Korean and Traditional Chinese fonts to fonts.dat
- Bumped fonts.dat file version to 1.4
- Bumped theme version to 0.8.39
- Regenerated built-in theme

Changed paths:
  A gui/themes/fonts/NotoSansJP-Bold.otf
  A gui/themes/fonts/NotoSansJP-Regular.otf
  A gui/themes/fonts/NotoSansKR-Bold.otf
  A gui/themes/fonts/NotoSansKR-Regular.otf
  A gui/themes/fonts/NotoSansTC-Bold.otf
  A gui/themes/fonts/NotoSansTC-Regular.otf
    dists/engine-data/fonts.dat
    gui/ThemeEngine.cpp
    gui/ThemeEngine.h
    gui/ThemeParser.cpp
    gui/ThemeParser.h
    gui/themes/default.inc
    gui/themes/scummclassic.zip
    gui/themes/scummclassic/THEMERC
    gui/themes/scummclassic/classic_gfx.stx
    gui/themes/scummmodern.zip
    gui/themes/scummmodern/THEMERC
    gui/themes/scummmodern/scummmodern_gfx.stx
    gui/themes/scummremastered.zip
    gui/themes/scummremastered/THEMERC
    gui/themes/scummremastered/remastered_gfx.stx


diff --git a/dists/engine-data/fonts.dat b/dists/engine-data/fonts.dat
index 793256c489..3d1afbea18 100644
Binary files a/dists/engine-data/fonts.dat and b/dists/engine-data/fonts.dat differ
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp
index a22c4ee0b5..043b2dae00 100644
--- a/gui/ThemeEngine.cpp
+++ b/gui/ThemeEngine.cpp
@@ -518,10 +518,23 @@ bool ThemeEngine::addTextData(const Common::String &drawDataId, TextData textId,
 	return true;
 }
 
-bool ThemeEngine::addFont(TextData textId, const Common::String &file, const Common::String &scalableFile, const int pointsize) {
+bool ThemeEngine::addFont(TextData textId, const Common::String &language, const Common::String &file, const Common::String &scalableFile, const int pointsize) {
 	if (textId == -1)
 		return false;
 
+	if (!language.empty()) {
+#ifdef USE_TRANSLATION
+		Common::String cl = TransMan.getCurrentLanguage();
+		if (!cl.matchString(language, true))
+			return true;	// Skip
+
+		if (_texts[textId] != nullptr)	// We already loaded something
+			return true;
+#else
+		return true;	// Safely ignore
+#endif
+	}
+
 	if (_texts[textId] != nullptr)
 		delete _texts[textId];
 
diff --git a/gui/ThemeEngine.h b/gui/ThemeEngine.h
index e8d3fb4831..36ff902fb1 100644
--- a/gui/ThemeEngine.h
+++ b/gui/ThemeEngine.h
@@ -37,7 +37,7 @@
 #include "graphics/pixelformat.h"
 
 
-#define SCUMMVM_THEME_VERSION_STR "SCUMMVM_STX0.8.38"
+#define SCUMMVM_THEME_VERSION_STR "SCUMMVM_STX0.8.39"
 
 class OSystem;
 
@@ -513,11 +513,12 @@ public:
 	 * filename.
 	 *
 	 * @param textId            Identifier name for the font.
+	 * @param language          Wildcard for the language(s) to use.
 	 * @param file              Filename of the non-scalable font version.
 	 * @param scalableFile      Filename of the scalable version. (Optional)
 	 * @param pointsize         Point size for the scalable font. (Optional)
 	 */
-	bool addFont(TextData textId, const Common::String &file, const Common::String &scalableFile, const int pointsize);
+	bool addFont(TextData textId, const Common::String &language, const Common::String &file, const Common::String &scalableFile, const int pointsize);
 
 	/**
 	 * Interface for the ThemeParser class: adds a text color value.
diff --git a/gui/ThemeParser.cpp b/gui/ThemeParser.cpp
index 23feda7b79..75f2f52a27 100644
--- a/gui/ThemeParser.cpp
+++ b/gui/ThemeParser.cpp
@@ -179,16 +179,47 @@ bool ThemeParser::parserCallback_font(ParserNode *node) {
 		return true;
 	}
 
+	return true;
+}
+
+bool ThemeParser::parserCallback_language(ParserNode *node) {
+	if (resolutionCheck(node->values["resolution"]) == false) {
+		node->ignore = true;
+		return true;
+	}
+
+	TextData textDataId = parseTextDataId(getParentNode(node)->values["id"]);
+
 	// Default to a point size of 12.
 	int pointsize = 12;
+	Common::String ps;
 	if (node->values.contains("point_size")) {
-		if (sscanf(node->values["point_size"].c_str(), "%d", &pointsize) != 1 || pointsize <= 0)
-			return parserError(Common::String::format("Font \"%s\" has invalid point size \"%s\"", node->values["id"].c_str(), node->values["point_size"].c_str()));
+		ps = node->values["point_size"];
+	} else if (getParentNode(node)->values.contains("point_size")) {
+		ps = getParentNode(node)->values["point_size"];
+	}
+
+	if (!ps.empty()) {
+		if (sscanf(ps.c_str(), "%d", &pointsize) != 1 || pointsize <= 0)
+			return parserError(Common::String::format("Font \"%s\" has invalid point size \"%s\"", node->values["id"].c_str(), ps.c_str()));
+	}
+
+	Common::String file;
+	if (node->values.contains("file")) {
+		file = node->values["file"];
+	} else if (getParentNode(node)->values.contains("file")) {
+		file = getParentNode(node)->values["file"];
+	}
+
+	Common::String scalableFile;
+	if (node->values.contains("scalable_file")) {
+		scalableFile = node->values["scalable_file"];
+	} else if (getParentNode(node)->values.contains("scalable_file")) {
+		scalableFile = getParentNode(node)->values["scalable_file"];
 	}
 
-	TextData textDataId = parseTextDataId(node->values["id"]);
-	if (!_theme->addFont(textDataId, node->values["file"], node->values["scalable_file"], pointsize))
-		return parserError("Error loading Font in theme engine.");
+	if (!_theme->addFont(textDataId, node->values["id"], file, scalableFile, pointsize))
+		return parserError("Error loading localized Font in theme engine.");
 
 	return true;
 }
diff --git a/gui/ThemeParser.h b/gui/ThemeParser.h
index 1b3004f1ac..88893c1992 100644
--- a/gui/ThemeParser.h
+++ b/gui/ThemeParser.h
@@ -67,6 +67,12 @@ protected:
 					XML_PROP(resolution, false)
 					XML_PROP(scalable_file, false)
 					XML_PROP(point_size, false)
+					XML_KEY(language)
+						XML_PROP(id, true)
+						XML_PROP(file, false)
+						XML_PROP(scalable_file, true)
+						XML_PROP(point_size, false)
+					KEY_END()
 				KEY_END()
 
 				XML_KEY(text_color)
@@ -224,6 +230,7 @@ protected:
 	bool parserCallback_font(ParserNode *node);
 	bool parserCallback_text_color(ParserNode *node);
 	bool parserCallback_fonts(ParserNode *node);
+	bool parserCallback_language(ParserNode *node);
 	bool parserCallback_text(ParserNode *node);
 	bool parserCallback_palette(ParserNode *node);
 	bool parserCallback_color(ParserNode *node);
diff --git a/gui/themes/default.inc b/gui/themes/default.inc
index 6004471062..5e681b2732 100644
--- a/gui/themes/default.inc
+++ b/gui/themes/default.inc
@@ -1,5056 +1,5057 @@
-const char *defaultXML1 = "<?xml version = '1.0'?>"
-;
- const char *defaultXML2 = "<render_info>"
-"<palette>"
-"<color name='black' "
-"rgb='0,0,0' "
-"/>"
-"<color name='lightgrey' "
-"rgb='104,104,104' "
-"/>"
-"<color name='darkgrey' "
-"rgb='64,64,64' "
-"/>"
-"<color name='green' "
-"rgb='32,160,32' "
-"/>"
-"<color name='green2' "
-"rgb='0,255,0' "
-"/>"
-"<color name='white' "
-"rgb='255,255,255' "
-"/>"
-"</palette>"
-"<fonts>"
-"<font id='text_default' "
-"file='helvb12.bdf' "
-"/>"
-"<font resolution='y<400' "
-"id='text_default' "
-"file='clR6x12.bdf' "
-"/>"
-"<font id='text_button' "
-"file='helvb12.bdf' "
-"/>"
-"<font resolution='y<400' "
-"id='text_button' "
-"file='clR6x12.bdf' "
-"/>"
-"<font id='text_normal' "
-"file='helvb12.bdf' "
-"/>"
-"<font resolution='y<400' "
-"id='text_normal' "
-"file='clR6x12.bdf' "
-"/>"
-"<font id='tooltip_normal' "
-"file='fixed5x8.bdf' "
-"/>"
-"<font id='console' "
-"file='builtinConsole' "
-"/>"
-"<text_color id='color_normal' "
-"color='green' "
-"/>"
-"<text_color id='color_normal_inverted' "
-"color='black' "
-"/>"
-"<text_color id='color_normal_hover' "
-"color='green2' "
-"/>"
-"<text_color id='color_normal_disabled' "
-"color='lightgrey' "
-"/>"
-"<text_color id='color_alternative' "
-"color='lightgrey' "
-"/>"
-"<text_color id='color_alternative_inverted' "
-"color='white' "
-"/>"
-"<text_color id='color_alternative_hover' "
-"color='176,176,176' "
-"/>"
-"<text_color id='color_alternative_disabled' "
-"color='darkgrey' "
-"/>"
-"<text_color id='color_button' "
-"color='green' "
-"/>"
-"<text_color id='color_button_hover' "
-"color='green2' "
-"/>"
-"<text_color id='color_button_disabled' "
-"color='lightgrey' "
-"/>"
-"</fonts>"
-"<defaults fill='foreground' fg_color='darkgrey' bg_color='black' shadow='0' bevel_color='lightgrey'/>"
-"<drawdata id='text_selection' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='lightgrey' "
-"/>"
-"</drawdata>"
-"<drawdata id='text_selection_focus' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"/>"
-"</drawdata>"
-"<drawdata id='mainmenu_bg' cache='false'>"
-"<drawstep func='fill' "
-"fill='foreground' "
-"fg_color='black' "
-"/>"
-"</drawdata>"
-"<drawdata id='special_bg' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"/>"
-"</drawdata>"
-"<drawdata id='tooltip_bg' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='foreground' "
-"fg_color='black' "
-"/>"
-"</drawdata>"
-"<drawdata id='separator' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"height='2' "
-"ypos='center' "
-"fg_color='lightgrey' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_base' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_handle_hover' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green2' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_handle_idle' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_button_idle' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='10' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,3,0' "
-"orientation='top' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_button_idle' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='5' "
-"height='5' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,2,0' "
-"orientation='top' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_button_hover' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='10' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,3,0' "
-"orientation='top' "
-"/>"
-"</drawdata>"
-"<drawdata id='scrollbar_button_hover' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='5' "
-"height='5' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,2,0' "
-"orientation='top' "
-"/>"
-"</drawdata>"
-"<drawdata id='tab_active' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal_hover' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='tab' "
-"bevel='2' "
-"radius='0' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='tab_inactive' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='tab' "
-"bevel='2' "
-"radius='0' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='tab_background' cache='false'>"
-"</drawdata>"
-"<drawdata id='widget_slider' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='slider_disabled' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='lightgrey' "
-"/>"
-"</drawdata>"
-"<drawdata id='slider_full' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"/>"
-"</drawdata>"
-"<drawdata id='slider_hover' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green2' "
-"/>"
-"</drawdata>"
-"<drawdata id='widget_small' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_idle' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='right' "
-"ypos='10' "
-"padding='0,0,7,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='right' "
-"ypos='4' "
-"padding='0,0,7,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_idle_rtl' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='left' "
-"ypos='10' "
-"padding='7,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='left' "
-"ypos='4' "
-"padding='7,0,0,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_idle' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='right' "
-"ypos='9' "
-"padding='0,0,3,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='right' "
-"ypos='4' "
-"padding='0,0,3,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_idle_rtl' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='left' "
-"ypos='9' "
-"padding='3,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='left' "
-"ypos='4' "
-"padding='3,0,0,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_disabled' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='right' "
-"ypos='10' "
-"padding='0,0,7,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='right' "
-"ypos='4' "
-"padding='0,0,7,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal_disabled' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_disabled_rtl' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='left' "
-"ypos='10' "
-"padding='7,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='left' "
-"ypos='4' "
-"padding='7,0,0,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal_disabled' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_disabled' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='right' "
-"ypos='9' "
-"padding='0,0,3,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='right' "
-"ypos='4' "
-"padding='0,0,3,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_disabled_rtl' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='left' "
-"ypos='9' "
-"padding='3,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='left' "
-"ypos='4' "
-"padding='3,0,0,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_hover' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='right' "
-"ypos='10' "
-"padding='0,0,7,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='right' "
-"ypos='4' "
-"padding='0,0,7,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal_hover' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_hover_rtl' cache='false' resolution='y>399'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='left' "
-"ypos='10' "
-"padding='7,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='10' "
-"height='5' "
-"xpos='left' "
-"ypos='4' "
-"padding='7,0,0,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal_hover' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_hover' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='right' "
-"ypos='9' "
-"padding='0,0,3,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='right' "
-"ypos='4' "
-"padding='0,0,3,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='popup_hover_rtl' cache='false' resolution='y<400'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='left' "
-"ypos='9' "
-"padding='3,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='7' "
-"height='4' "
-"xpos='left' "
-"ypos='4' "
-"padding='3,0,0,0' "
-"orientation='top' "
-"/>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"</drawdata>"
-"<drawdata id='widget_textedit' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='plain_bg' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"/>"
-"</drawdata>"
-"<drawdata id='caret' cache='false'>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='lightgrey' "
-"/>"
-"</drawdata>"
-"<drawdata id='default_bg' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"/>"
-"</drawdata>"
-"<drawdata id='button_pressed' cache='false'>"
-"<text font='text_button' "
-"text_color='color_alternative_inverted' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"/>"
-"</drawdata>"
-"<drawdata id='button_idle' cache='false'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='button_hover' cache='false'>"
-"<text font='text_button' "
-"text_color='color_button_hover' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='button_disabled' cache='false'>"
-"<text font='text_button' "
-"text_color='color_button_disabled' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_idle' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,4,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,17,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_idle_rtl' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='4,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='left' "
-"ypos='center' "
-"padding='17,0,0,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_idle' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_idle_rtl' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_left' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button_hover' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,4,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,17,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_left_rtl' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button_hover' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='4,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='left' "
-"ypos='center' "
-"padding='17,0,0,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_left' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button_hover' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_left_rtl' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button_hover' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_right' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green2' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,4,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,17,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_right_rtl' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green2' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='4,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='left' "
-"ypos='center' "
-"padding='17,0,0,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_right' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green2' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_hover_right_rtl' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green2' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_disabled' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button_disabled' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='lightgrey' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,4,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,17,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_disabled_rtl' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button_disabled' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='lightgrey' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='4,0,0,0' "
-"orientation='bottom' "
-"/>"
-"<drawstep func='line' "
-"fg_color='lightgrey' "
-"stroke='2' "
-"fill='foreground' "
-"width='0' "
-"height='auto' "
-"xpos='left' "
-"ypos='center' "
-"padding='17,0,0,1' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_disabled' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button_disabled' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='lightgrey' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_disabled_rtl' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button_disabled' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='lightgrey' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_left' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_alternative_inverted' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='0,0,-18,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,4,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_left_rtl' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_alternative_inverted' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='18,0,0,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='4,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_left' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_alternative_inverted' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='0,0,-7,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_left_rtl' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_alternative_inverted' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='7,0,0,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='green' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_right' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='-16,0,0,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='white' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,4,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_right_rtl' cache='false' resolution='y>399'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='0,0,16,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='white' "
-"fill='foreground' "
-"width='8' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='4,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_right' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='-7,0,0,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='white' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='right' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='dropdown_button_pressed_right_rtl' cache='false' resolution='y<400'>"
-"<text font='text_button' "
-"text_color='color_button' "
-"vertical_align='center' "
-"horizontal_align='center' "
-"/>"
-"<drawstep func='square' "
-"fill='foreground' "
-"fg_color='green' "
-"clip='0,0,7,0' "
-"/>"
-"<drawstep func='triangle' "
-"fg_color='white' "
-"fill='foreground' "
-"width='6' "
-"height='6' "
-"xpos='left' "
-"ypos='center' "
-"padding='0,0,0,0' "
-"orientation='bottom' "
-"/>"
-"</drawdata>"
-"<drawdata id='checkbox_disabled_selected' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal_disabled' "
-"vertical_align='top' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='cross' "
-"fill='foreground' "
-"stroke='2' "
-"fg_color='lightgrey' "
-"/>"
-"</drawdata>"
-"<drawdata id='checkbox_disabled' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal_disabled' "
-"vertical_align='top' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='checkbox_selected' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='top' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"<drawstep func='cross' "
-"fill='foreground' "
-"stroke='2' "
-"fg_color='green' "
-"/>"
-"</drawdata>"
-"<drawdata id='checkbox_default' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='top' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"fill='none' "
-"/>"
-"</drawdata>"
-"<drawdata id='radiobutton_default' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='circle' "
-"width='7' "
-"height='7' "
-"radius='7' "
-"fill='background' "
-"bg_color='darkgrey' "
-"xpos='0' "
-"ypos='0' "
-"/>"
-"</drawdata>"
-"<drawdata id='radiobutton_selected' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='circle' "
-"width='7' "
-"height='7' "
-"radius='7' "
-"fg_color='darkgrey' "
-"fill='none' "
-"xpos='0' "
-"ypos='0' "
-"/>"
-"<drawstep func='circle' "
-"width='7' "
-"height='7' "
-"radius='5' "
-"fg_color='green' "
-"fill='foreground' "
-"xpos='2' "
-"ypos='2' "
-"/>"
-"</drawdata>"
-"<drawdata id='radiobutton_disabled' cache='false'>"
-"<text font='text_default' "
-"text_color='color_normal_disabled' "
-"vertical_align='center' "
-"horizontal_align='start' "
-"/>"
-"<drawstep func='circle' "
-"width='7' "
-"height='7' "
-"radius='7' "
-"bg_color='lightgrey' "
-"fill='background' "
-"xpos='0' "
-"ypos='0' "
-"/>"
-"</drawdata>"
-"<drawdata id='widget_default' cache='false'>"
-"<drawstep func='bevelsq' "
-"bevel='2' "
-"/>"
-"</drawdata>"
-"<drawdata id='widget_small' cache='false'>"
-"<drawstep func='square' "
-"stroke='0' "
-"/>"
-"</drawdata>"
-"</render_info>"
-;
- const char *defaultXML3 = "<layout_info resolution='y>399'>"
-"<globals>"
-"<def var='Line.Height' value='16' />"
-"<def var='Font.Height' value='16' />"
-"<def var='About.OuterBorder' value='80'/>"
-"<def var='Layout.Spacing' value='8' />"
-"<def var='ShowLauncherLogo' value='0'/>"
-"<def var='ShowGlobalMenuLogo' value='0'/>"
-"<def var='ShowSearchPic' value='0'/>"
-"<def var='ShowChooserPics' value='0'/>"
-"<def var='ShowChooserPageDisplay' value='1'/>"
-"<def var='SaveLoadChooser.ExtInfo.Visible' value='1'/>"
-"<def var='RecorderDialog.ExtInfo.Visible' value='1'/>"
-"<def var='OnScreenDialog.ShowPics' value='0'/>"
-"<def var='KeyMapper.Spacing' value='10'/>"
-"<def var='KeyMapper.ButtonWidth' value='140'/>"
-"<def var='KeyMapper.ResetWidth' value='80'/>"
-"<def var='Tooltip.MaxWidth' value='200'/>"
-"<def var='Tooltip.XDelta' value='16'/> "
-"<def var='Tooltip.YDelta' value='16'/>"
-"<def var='Predictive.Button.Width' value='60' />"
-"<def var='Predictive.ShowDeletePic' value='0'/>"
-"<def var='DropdownButton.Width' value='17'/>"
-"<widget name='OptionsLabel' "
-"size='110,Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='SmallLabel' "
-"size='24,Globals.Line.Height' "
-"/>"
-"<widget name='CloudTabLabel' "
-"size='200,Globals.Line.Height' "
-"/>"
-"<widget name='CloudTabLabelValue' "
-"size='200,Globals.Line.Height' "
-"/>"
-"<widget name='ShortOptionsLabel' "
-"size='60,Globals.Line.Height' "
-"/>"
-"<widget name='Button' "
-"size='108,24' "
-"/>"
-"<widget name='WideButton' "
-"size='216,24' "
-"/>"
-"<widget name='Slider' "
-"size='128,18' "
-"/>"
-"<widget name='PopUp' "
-"size='-1,19' "
-"/>"
-"<widget name='Checkbox' "
-"size='-1,14' "
-"/>"
-"<widget name='Radiobutton' "
-"size='-1,Globals.Line.Height' "
-"/>"
-"<widget name='ListWidget' "
-"padding='5,0,8,0' "
-"/>"
-"<widget name='PopUpWidget' "
-"padding='7,5,0,0' "
-"/>"
-"<widget name='EditTextWidget' "
-"padding='5,5,0,0' "
-"/>"
-"<widget name='Console' "
-"padding='7,5,5,5' "
-"/>"
-"<widget name='Scrollbar' "
-"size='15,0' "
-"/>"
-"<widget name='TabWidget.Tab' "
-"size='40,27' "
-"padding='0,0,8,0' "
-"/>"
-"<widget name='TabWidget.Body' "
-"padding='0,0,0,0' "
-"/>"
-"<widget name='TabWidget.NavButton' "
-"size='15,18' "
-"padding='0,3,4,0' "
-"/>"
-"<widget name='EditRecordLabel' "
-"size='60,25' "
-"/>"
-"<widget name='EditRecord' "
-"size='240,25' "
-"/>"
-"</globals>"
-"<dialog name='Launcher' overlays='screen'>"
-"<layout type='vertical' align='center' padding='16,16,8,8'>"
-"<widget name='Version' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<layout type='horizontal' spacing='5' padding='10,0,0,0'>"
-"<widget name='SearchDesc' "
-"width='60' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='Search' "
-"width='150' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='SearchClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"<space />"
-"</layout>"
-"<widget name='GameList'/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='LoadGameButton' "
-"height='20' "
-"/>"
-"<widget name='AddGameButton' "
-"height='20' "
-"/>"
-"<widget name='EditGameButton' "
-"height='20' "
-"/>"
-"<widget name='RemoveGameButton' "
-"height='20' "
-"/>"
-"</layout>"
-"<space size='4'/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='QuitButton' "
-"height='20' "
-"/>"
-"<widget name='AboutButton' "
-"height='20' "
-"/>"
-"<widget name='OptionsButton' "
-"height='20' "
-"/>"
-"<widget name='StartButton' "
-"height='20' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='Browser' overlays='Dialog.Launcher.GameList' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Path' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List'/>"
-"<layout type='vertical' padding='0,0,16,0'>"
-"<widget name='Hidden' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Up' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Choose' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FileBrowser' overlays='screen' inset='32' shading='dim'>"
-"<layout type='vertical' padding='16,16,16,16'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Filename' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='10' />"
-"<widget name='List'/>"
-"<layout type='vertical' padding='0,0,16,0'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Choose' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions' overlays='Dialog.Launcher.GameList' shading='dim'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget'/>"
-"<layout type='horizontal' padding='16,16,16,16'>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Apply' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Control' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='grOnScreenCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grTouchpadCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grSwapMenuAndBackBtnsCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='grKbdMouseSpeedDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grKbdMouseSpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='grKbdMouseSpeedLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grJoystickDeadzoneDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grJoystickDeadzoneSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='grJoystickDeadzoneLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_KeyMapper' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Graphics' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Graphics_Container' overlays='GlobalOptions_Graphics.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grModePopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grModePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grRenderPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grRenderPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grStretchModePopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grStretchModePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<widget name='grAspectCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grFullscreenCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grFilteringCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Shader' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grShaderPopUpDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grShaderPopUp' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Audio' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='auMidiPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auMidiPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='auOPLPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auOPLPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='subToggleDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subToggleSpeechOnly' "
-"type='Radiobutton' "
-"/>"
-"<widget name='subToggleSubOnly' "
-"type='Radiobutton' "
-"/>"
-"<widget name='subToggleSubBoth' "
-"type='Radiobutton' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='subSubtitleSpeedDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subSubtitleSpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='subSubtitleSpeedLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Volume' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='horizontal' padding='16,16,16,16' spacing='8'>"
-"<layout type='vertical' padding='0,0,0,0' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='vcMusicText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcMusicSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcMusicLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='vcSfxText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSfxSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSfxLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='vcSpeechText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSpeechSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSpeechLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='vertical' padding='24,0,24,0' align='center'>"
-"<widget name='vcMuteCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_MIDI' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='auPrefGmPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auPrefGmPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='mcFontButton' "
-"type='Button' "
-"/>"
-"<widget name='mcFontPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='mcFontClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<widget name='mcMixedCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='mcMidiGainText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='mcMidiGainSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='mcMidiGainLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<widget name='mcFluidSynthSettings' "
-"width='200' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_MT32' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='auPrefMt32PopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auPrefMt32Popup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<widget name='mcMt32Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='mcGSCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Paths' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='SaveButton' "
-"type='Button' "
-"/>"
-"<widget name='SavePath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='SavePathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='ThemeButton' "
-"type='Button' "
-"/>"
-"<widget name='ThemePath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ThemePathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='ExtraButton' "
-"type='Button' "
-"/>"
-"<widget name='ExtraPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ExtraPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
-"<widget name='PluginsButton' "
-"type='Button' "
-"/>"
-"<widget name='PluginsPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='PluginsPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Misc' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Misc_Container' overlays='GlobalOptions_Misc.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='ThemeButton' "
-"type='Button' "
-"/>"
-"<widget name='CurTheme' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='RendererPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='RendererPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='AutosavePeriodPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='AutosavePeriodPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='GuiLanguagePopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='GuiLanguagePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='GuiLanguageUseGameLanguage' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='UseSystemDialogs' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='UpdatesPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='UpdatesPopup' "
-"type='PopUp' "
-"/>"
-"<widget name='UpdatesCheckManuallyButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"<widget name='KeysButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_Container' overlays='GlobalOptions_Cloud.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='-19,7,0,0' spacing='10'>"
-"<layout type='vertical' padding='0,0,2,0' spacing='2'>"
-"<widget name='StoragePopupDesc' "
-"type='OptionsLabel' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='2'>"
-"<widget name='StoragePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,8,0' spacing='4'>"
-"<widget name='StorageDisabledHint' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='StorageEnableButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
-"<widget name='StorageUsernameDesc' "
-"type='CloudTabLabel' "
-"/>"
-"<widget name='StorageUsernameLabel' "
-"type='CloudTabLabelValue' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
-"<widget name='StorageUsedSpaceDesc' "
-"type='CloudTabLabel' "
-"/>"
-"<widget name='StorageUsedSpaceLabel' "
-"type='CloudTabLabelValue' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
-"<widget name='StorageLastSyncDesc' "
-"type='CloudTabLabel' "
-"/>"
-"<widget name='StorageLastSyncLabel' "
-"type='CloudTabLabelValue' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,7,0' spacing='2'>"
-"<widget name='SyncSavesButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-4,0' spacing='10' align='center'>"
-"<widget name='StorageSyncHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,6,0' spacing='4'>"
-"<widget name='StorageDownloadHint' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='DownloadButton' "
-"type='WideButton' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,8,0' spacing='4'>"
-"<widget name='StorageDisconnectHint' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='DisconnectButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
-"<widget name='StorageWizardNotConnectedHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,2,0' spacing='4'>"
-"<widget name='StorageWizardOpenLinkHint' "
-"width='106' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,1,0' spacing='4'>"
-"<widget name='StorageWizardLink' "
-"width='192' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
-"<widget name='StorageWizardCodeHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
-"<widget name='StorageWizardCodeBox' "
-"width='108' "
-"height='24' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
-"<widget name='StorageWizardPasteButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
-"<widget name='StorageWizardConnectButton' "
-"type='Button' "
-"/>"
-"<widget name='StorageWizardConnectionStatusHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Network' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='RunServerButton' "
-"type='Button' "
-"/>"
-"<widget name='ServerInfoLabel' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='RootPathButton' "
-"type='Button' "
-"/>"
-"<widget name='RootPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='RootPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='ServerPortDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='ServerPortEditText' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ServerPortClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='FeatureDescriptionLine1' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='FeatureDescriptionLine2' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_DownloadDialog' overlays='Dialog.GlobalOptions'>"
-"<layout type='vertical' padding='16,16,16,8' spacing='8'>"
-"<widget name='RemoteDirectory' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='LocalDirectory' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ProgressBar' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='1'/>"
-"<widget name='PercentText' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<widget name='DownloadSize' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='DownloadSpeed' "
-"height='Globals.Line.Height' "
-"/>"
-"<space/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='MainButton' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='CloseButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_ConnectionWizard' overlays='Dialog.GlobalOptions'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_ConnectionWizard_Container' overlays='GlobalOptions_Cloud_ConnectionWizard.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='0'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<layout type='vertical' padding='0,0,0,0' spacing='6'>"
-"<widget name='Picture' "
-"width='109' "
-"height='109' "
-"/>"
-"<widget name='OpenUrlButton' "
-"type='Button' "
-"/>"
-"<widget name='PasteCodeButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='6'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='4' />"
-"<widget name='NavigateLine' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='URLLine' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='4' />"
-"<widget name='ReturnLine1' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ReturnLine2' "
-"height='Globals.Line.Height' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='CodeBox1' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='CodeBox2' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='CodeBox3' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='CodeBox4' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='CodeBox5' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='CodeBox6' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='CodeBox7' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='CodeBox8' "
-"width='70' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<widget name='MessageLine' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='6' />"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='CancelButton' "
-"type='Button' "
-"/>"
-"<space />"
-"<widget name='ConnectButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Accessibility' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='16'>"
-"<widget name='TTSCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='TTSVoiceSelection' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Action' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List'/>"
-"<widget name='Mapping' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='Globals.Line.Height'/>"
-"<layout type='horizontal'>"
-"<widget name='Map' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions' overlays='Dialog.Launcher.GameList' shading='dim'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget'/>"
-"<layout type='horizontal' padding='16,16,16,16'>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_KeyMapper' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Achievements' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Graphics' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Graphics_Container' overlays='GameOptions_Graphics.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Graphics_Container' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Shader' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Shader' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Audio' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Audio' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_MIDI' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_MIDI' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_MT32' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_MT32' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Volume' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Volume' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Game' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
-"<layout type='vertical' padding='16,16,16,16'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='Id' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='Domain' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='Name' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='Desc' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='LangPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='LangPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='PlatformPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='PlatformPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Paths' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
-"<layout type='vertical' padding='16,16,16,16'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='Savepath' "
-"type='Button' "
-"/>"
-"<widget name='SavepathText' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='SavePathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='Extrapath' "
-"type='Button' "
-"/>"
-"<widget name='ExtrapathText' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ExtraPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='Gamepath' "
-"type='Button' "
-"/>"
-"<widget name='GamepathText' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Engine' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Engine_Container' overlays='GameOptions_Engine.Container'>"
-"<layout type='vertical' padding='16,16,16,16'>"
-"<widget name='customOption1Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption2Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption3Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption4Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption5Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption6Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption7Checkbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalMenu' overlays='screen_center'>"
-"<layout type='vertical' padding='16,16,16,16' align='center'>"
-"<widget name='Title' "
-"width='210' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Version' "
-"width='210' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Resume' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='10'/>"
-"<widget name='Load' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Save' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='10'/>"
-"<widget name='Options' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Help' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='About' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='10'/>"
-"<widget name='ReturnToLauncher' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Quit' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig' overlays='screen_center' size='500,350' inset='8'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget' "
-"/>"
-"<layout type='horizontal' padding='16,16,16,16'>"
-"<space />"
-"<widget name='Keys' "
-"type='Button' "
-"/>"
-"<space />"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Engine' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Engine_Container' overlays='Dialog.GlobalConfig_Engine.Container'>"
-"<layout type='vertical' padding='16,16,16,16'>"
-"<import layout='Dialog.GameOptions_Engine_Container' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Audio' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<layout type='vertical' padding='0,0,0,0' align='center'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
-"<widget name='vcMusicText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcMusicSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcMusicLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
-"<widget name='vcSfxText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSfxSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSfxLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
-"<widget name='vcSpeechText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSpeechSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSpeechLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='vertical' padding='24,24,24,24' align='center'>"
-"<widget name='vcMuteCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</layout>"
-"<space size='8' />"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='subToggleDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subToggleSpeechOnly' "
-"type='Radiobutton' "
-"width='100' "
-"/>"
-"<widget name='subToggleSubOnly' "
-"type='Radiobutton' "
-"width='100' "
-"/>"
-"<widget name='subToggleSubBoth' "
-"type='Radiobutton' "
-"width='100' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='subSubtitleSpeedDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subSubtitleSpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='subSubtitleSpeedLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_KeyMapper' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Achievements' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings' overlays='GlobalOptions' shading='dim'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget'/>"
-"<layout type='horizontal' padding='16,16,16,16'>"
-"<space/>"
-"<widget name='ResetSettings' "
-"type='Button' "
-"/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings_Chorus' overlays='Dialog.FluidSynthSettings.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='VoiceCountText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='VoiceCountSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='VoiceCountLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='LevelText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='LevelSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='LevelLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='SpeedText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='SpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='SpeedLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='DepthText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='DepthSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='DepthLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='WaveFormTypeText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='WaveFormType' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings_Reverb' overlays='Dialog.FluidSynthSettings.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='RoomSizeText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='RoomSizeSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='RoomSizeLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='DampingText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='DampingSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='DampingLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='WidthText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='WidthSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='WidthLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='LevelText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='LevelSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='LevelLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings_Misc' overlays='Dialog.FluidSynthSettings.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='InterpolationText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='Interpolation' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='SaveLoadChooser' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,32' align='center'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Title' "
-"height='Globals.Line.Height' "
-"/>"
-"<space/>"
-"<widget name='PageDisplay' "
-"width='200' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,6' spacing='16'>"
-"<widget name='List' />"
-"<widget name='Thumbnail' "
-"width='180' "
-"height='155' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='ListSwitch' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"<widget name='GridSwitch' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"<space/>"
-"<widget name='Delete' "
-"type='Button' "
-"/>"
-"<space size='32'/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Choose' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='SaveLoadCloudSyncProgress' overlays='screen_center' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='TitleText' "
-"width='496' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<space size='1'/>"
-"<widget name='ProgressBar' "
-"width='496' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='1'/>"
-"<widget name='PercentText' "
-"width='496' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<space size='1'/>"
-"<layout type='horizontal' padding='0,0,0,0' align='center' spacing='10'>"
-"<widget name='Cancel' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Background' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='SavenameDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='DescriptionText' "
-"width='320' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Description' "
-"height='19' "
-"/>"
-"<layout type='horizontal' padding='0,0,16,0'>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<space size='96'/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='RecorderDialog' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,32' align='center'>"
-"<widget name='Title' "
-"height='Globals.Line.Height' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,16' spacing='16'>"
-"<widget name='List' />"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Thumbnail' "
-"width='180' "
-"height='170' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='NextScreenShotButton' "
-"width='25' "
-"height='25' "
-"/>"
-"<widget name='currentScreenshot' "
-"width='125' "
-"height='25' "
-"textalign='center' "
-"/>"
-"<widget name='PreviousScreenShotButton' "
-"width='25' "
-"height='25' "
-"/>"
-"</layout>"
-"<widget name='Author' height='Globals.Line.Height' />"
-"<widget name='Notes' height='Globals.Line.Height' />"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Delete' "
-"type='Button' "
-"/>"
-"<space size='16'/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<space size='16'/>"
-"<widget name='Edit' "
-"type='Button' "
-"/>"
-"<widget name='Record' "
-"type='Button' "
-"/>"
-"<widget name='Playback' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='OnScreenDialog' overlays='screen_center'>"
-"<layout type='horizontal' spacing='5' padding='5,3,5,3' align='center'>"
-"<widget name='StopButton' "
-"width='32' "
-"height='32' "
-"/>"
-"<widget name='EditButton' "
-"width='32' "
-"height='32' "
-"/>"
-"<widget name='SwitchModeButton' "
-"width='32' "
-"height='32' "
-"/>"
-"<widget name='FastReplayButton' "
-"width='32' "
-"height='32' "
-"/>"
-"<widget name='TimeLabel' "
-"width='50' "
-"height='30' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='EditRecordDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Title' "
-"width='320' "
-"height='Globals.Line.Height' "
-"/>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='AuthorLabel' "
-"type='EditRecordLabel' "
-"/>"
-"<widget name='AuthorEdit' "
-"type='EditRecord' "
-"/>"
-"</layout>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='NameLabel' "
-"type='EditRecordLabel' "
-"/>"
-"<widget name='NameEdit' "
-"type='EditRecord' "
-"/>"
-"</layout>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='NotesLabel' "
-"type='EditRecordLabel' "
-"/>"
-"<widget name='NotesEdit' "
-"type='EditRecord' "
-"/>"
-"</layout>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='OK' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='ScummHelp' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Title' "
-"width='320' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='HelpText' "
-"height='200' "
-"/>"
-"<layout type='horizontal' padding='0,0,16,0'>"
-"<widget name='Prev' "
-"type='Button' "
-"/>"
-"<widget name='Next' "
-"type='Button' "
-"/>"
-"<space size='32'/>"
-"<widget name='Close' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='LoomTownsDifficultyDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Description1' "
-"width='320' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Description2' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Standard' "
-"type='Button' "
-"/>"
-"<widget name='Practice' "
-"type='Button' "
-"/>"
-"<widget name='Expert' "
-"type='Button' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='MassAdd' overlays='screen_center' shading='dim'>"
-"<layout type='vertical' padding='8,8,32,8' align='center'>"
-"<widget name='DirProgressText' "
-"width='480' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='GameProgressText' "
-"width='480' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='GameList' "
-"width='480' "
-"height='250' "
-"/>"
-"<layout type='horizontal' padding='8,8,8,8'>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='Predictive' overlays='screen_center'>"
-"<layout type='vertical' padding='5,5,5,5' align='center'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"width='210' "
-"textalign='center' "
-"/>"
-"<layout type='horizontal' padding='5,5,5,5'>"
-"<widget name='Word' "
-"width='190' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Delete' "
-"width='20' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"<space size='5' />"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Button1' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button2' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button3' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Button4' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button5' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button6' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Button7' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button8' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button9' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Pre' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Button0' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Next' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"<space size='5' />"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Add' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='22'/>"
-"<widget name='Cancel' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='OK' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='DropdownDialog' overlays='screen_center' shading='luminance'>"
-"</dialog>"
-"<dialog name='UnknownGameDialog' overlays='Dialog.Launcher.GameList' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,0'>"
-"<widget name='TextContainer' "
-"/>"
-"<layout type='horizontal' padding='0,0,16,16'>"
-"<space/>"
-"<widget name='Report' "
-"type='Button' "
-"/>"
-"<widget name='Copy' "
-"type='Button' "
-"/>"
-"<widget name='Close' "
-"type='Button' "
-"/>"
-"<widget name='Add' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='TestbedOptions' overlays='screen_center' size='400,300'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Info' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List' "
-"/>"
-"<layout type='vertical' padding='0,0,16,0'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='SelectAll' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='RunTests' "
-"type='Button' "
-"/>"
-"<widget name='Quit' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"</layout_info>"
-;
- const char *defaultXML4 = "<layout_info resolution='y<400'>"
-"<globals>"
-"<def var='Line.Height' value='12' />"
-"<def var='Font.Height' value='10' />"
-"<def var='About.OuterBorder' value='10'/>"
-"<def var='Layout.Spacing' value='8'/>"
-"<def var='ShowLauncherLogo' value='0'/>"
-"<def var='ShowGlobalMenuLogo' value='0'/>"
-"<def var='ShowSearchPic' value='0'/>"
-"<def var='ShowChooserPics' value='0'/>"
-"<def var='ShowChooserPageDisplay' value='0'/>"
-"<def var='SaveLoadChooser.ExtInfo.Visible' value='0'/>"
-"<def var='RecorderDialog.ExtInfo.Visible' value='0'/>"
-"<def var='OnScreenDialog.ShowPics' value='0'/>"
-"<def var='KeyMapper.Spacing' value='5'/>"
-"<def var='KeyMapper.ButtonWidth' value='100'/>"
-"<def var='KeyMapper.ResetWidth' value='60'/>"
-"<def var='Tooltip.MaxWidth' value='70'/>"
-"<def var='Tooltip.XDelta' value='8'/> "
-"<def var='Tooltip.YDelta' value='8'/>"
-"<def var='Predictive.Button.Width' value='45' />"
-"<def var='Predictive.Button.Height' value='15' />"
-"<def var='Predictive.ShowDeletePic' value='0'/>"
-"<def var='DropdownButton.Width' value='7'/>"
-"<widget name='Button' "
-"size='72,16' "
-"/>"
-"<widget name='WideButton' "
-"size='144,16' "
-"/>"
-"<widget name='Slider' "
-"size='85,12' "
-"/>"
-"<widget name='OptionsLabel' "
-"size='110,Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='SmallLabel' "
-"size='18,Globals.Line.Height' "
-"/>"
-"<widget name='CloudTabLabel' "
-"size='180,Globals.Line.Height' "
-"/>"
-"<widget name='CloudTabLabelValue' "
-"size='180,Globals.Line.Height' "
-"/>"
-"<widget name='PopUp' "
-"size='-1,15' "
-"/>"
-"<widget name='Checkbox' "
-"size='-1,Globals.Line.Height' "
-"/>"
-"<widget name='Radiobutton' "
-"size='-1,Globals.Line.Height' "
-"/>"
-"<widget name='ListWidget' "
-"padding='5,0,0,0' "
-"/>"
-"<widget name='PopUpWidget' "
-"padding='7,5,0,0' "
-"/>"
-"<widget name='EditTextWidget' "
-"padding='5,5,0,0' "
-"/>"
-"<widget name='Console' "
-"padding='7,5,5,5' "
-"/>"
-"<widget name='Scrollbar' "
-"size='9,0' "
-"/>"
-"<widget name='TabWidget.Tab' "
-"size='40,16' "
-"padding='0,0,2,0' "
-"/>"
-"<widget name='TabWidget.Body' "
-"padding='0,0,0,0' "
-"/>"
-"<widget name='TabWidget.NavButton' "
-"size='32,14' "
-"padding='0,0,1,0' "
-"/>"
-"<widget name='EditRecordLabel' "
-"size='60,Globals.Line.Height' "
-"/>"
-"<widget name='EditRecord' "
-"size='120,15' "
-"/>"
-"</globals>"
-"<dialog name='Launcher' overlays='screen'>"
-"<layout type='vertical' align='center' padding='6,6,2,2'>"
-"<widget name='Version' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,0'>"
-"<widget name='SearchDesc' "
-"width='50' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='Search' "
-"width='150' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='SearchClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"<space />"
-"</layout>"
-"<widget name='GameList'/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
-"<widget name='LoadGameButton' "
-"height='12' "
-"/>"
-"<widget name='AddGameButton' "
-"height='12' "
-"/>"
-"<widget name='EditGameButton' "
-"height='12' "
-"/>"
-"<widget name='RemoveGameButton' "
-"height='12' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
-"<widget name='QuitButton' "
-"height='12' "
-"/>"
-"<widget name='AboutButton' "
-"height='12' "
-"/>"
-"<widget name='OptionsButton' "
-"height='12' "
-"/>"
-"<widget name='StartButton' "
-"height='12' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='Browser' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,0,4'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Path' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List'/>"
-"<layout type='vertical' padding='0,0,8,0'>"
-"<widget name='Hidden' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Up' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Choose' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FileBrowser' overlays='screen' inset='16' shading='dim'>"
-"<layout type='vertical' padding='16,16,16,16'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Filename' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='5' />"
-"<widget name='List'/>"
-"<layout type='vertical' padding='0,0,16,0'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Choose' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions' overlays='screen' inset='16' shading='dim'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget'/>"
-"<layout type='horizontal' padding='8,8,8,8'>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Apply' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Control' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<widget name='grOnScreenCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grTouchpadCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grSwapMenuAndBackBtnsCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
-"<widget name='grKbdMouseSpeedDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grKbdMouseSpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='grKbdMouseSpeedLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grJoystickDeadzoneDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grJoystickDeadzoneSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='grJoystickDeadzoneLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_KeyMapper' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Graphics' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Graphics_Container' overlays='GlobalOptions_Graphics.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='grModePopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grModePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='grRenderPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grRenderPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='grStretchModePopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grStretchModePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<widget name='grAspectCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grFullscreenCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='grFilteringCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Shader' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='grShaderPopUpDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='grShaderPopUp' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Audio' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='auMidiPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auMidiPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='auOPLPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auOPLPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='3' align='center'>"
-"<widget name='subToggleDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subToggleSpeechOnly' "
-"type='Radiobutton' "
-"/>"
-"<widget name='subToggleSubOnly' "
-"type='Radiobutton' "
-"/>"
-"<widget name='subToggleSubBoth' "
-"type='Radiobutton' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='subSubtitleSpeedDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subSubtitleSpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='subSubtitleSpeedLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Volume' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='vcMusicText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcMusicSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcMusicLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='vcSfxText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSfxSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSfxLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='vcSpeechText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSpeechSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSpeechLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<space size='110' />"
-"<widget name='vcMuteCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_MIDI' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='6'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='auPrefGmPopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auPrefGmPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
-"<widget name='mcFontButton' "
-"type='Button' "
-"/>"
-"<widget name='mcFontPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='mcFontClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<widget name='mcMixedCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='mcMidiGainText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='mcMidiGainSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='mcMidiGainLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<widget name='mcFluidSynthSettings' "
-"width='150' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_MT32' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='auPrefMt32PopupDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='auPrefMt32Popup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<widget name='mcMt32Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='mcGSCheckbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Paths' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
-"<widget name='SaveButton' "
-"type='Button' "
-"/>"
-"<widget name='SavePath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='SavePathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
-"<widget name='ThemeButton' "
-"type='Button' "
-"/>"
-"<widget name='ThemePath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ThemePathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
-"<widget name='ExtraButton' "
-"type='Button' "
-"/>"
-"<widget name='ExtraPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ExtraPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
-"<widget name='PluginsButton' "
-"type='Button' "
-"/>"
-"<widget name='PluginsPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='PluginsPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Misc' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Misc_Container' overlays='GlobalOptions_Misc.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
-"<widget name='ThemeButton' "
-"type='Button' "
-"/>"
-"<widget name='CurTheme' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='RendererPopupDesc' "
-"width='80' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='RendererPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='AutosavePeriodPopupDesc' "
-"width='80' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='AutosavePeriodPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='GuiLanguagePopupDesc' "
-"width='80' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='GuiLanguagePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='GuiLanguageUseGameLanguage' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='UseSystemDialogs' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='UpdatesPopupDesc' "
-"width='80' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='UpdatesPopup' "
-"type='PopUp' "
-"/>"
-"<widget name='UpdatesCheckManuallyButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"<widget name='KeysButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_Container' overlays='GlobalOptions_Cloud.Container'>"
-"<layout type='vertical' padding='10,13,10,10' spacing='8'>"
-"<layout type='horizontal' padding='-10,1,0,0' spacing='6'>"
-"<layout type='vertical' padding='0,0,1,0' spacing='1'>"
-"<widget name='StoragePopupDesc' "
-"width='100' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='1'>"
-"<widget name='StoragePopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
-"<widget name='StorageDisabledHint' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='StorageEnableButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
-"<widget name='StorageUsernameDesc' "
-"type='CloudTabLabel' "
-"/>"
-"<widget name='StorageUsernameLabel' "
-"type='CloudTabLabelValue' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
-"<widget name='StorageUsedSpaceDesc' "
-"type='CloudTabLabel' "
-"/>"
-"<widget name='StorageUsedSpaceLabel' "
-"type='CloudTabLabelValue' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
-"<widget name='StorageLastSyncDesc' "
-"type='CloudTabLabel' "
-"/>"
-"<widget name='StorageLastSyncLabel' "
-"type='CloudTabLabelValue' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,5,0' spacing='1'>"
-"<widget name='SyncSavesButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-3,0' spacing='6' align='center'>"
-"<widget name='StorageSyncHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
-"<widget name='StorageDownloadHint' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='DownloadButton' "
-"type='WideButton' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
-"<widget name='StorageDisconnectHint' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='DisconnectButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
-"<widget name='StorageWizardNotConnectedHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-3,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,1,0' spacing='2'>"
-"<widget name='StorageWizardOpenLinkHint' "
-"width='90' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,1,0' spacing='4'>"
-"<widget name='StorageWizardLink' "
-"width='150' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='6' align='center'>"
-"<widget name='StorageWizardCodeHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
-"<widget name='StorageWizardCodeBox' "
-"width='72' "
-"height='16' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
-"<widget name='StorageWizardPasteButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='6' align='center'>"
-"<widget name='StorageWizardConnectButton' "
-"type='Button' "
-"/>"
-"<widget name='StorageWizardConnectionStatusHint' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Network' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='RunServerButton' "
-"type='Button' "
-"/>"
-"<widget name='ServerInfoLabel' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
-"<widget name='RootPathButton' "
-"type='Button' "
-"/>"
-"<widget name='RootPath' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='RootPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='ServerPortDesc' "
-"width='80' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='ServerPortEditText' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='ServerPortClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='2' align='center'>"
-"<widget name='FeatureDescriptionLine1' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='FeatureDescriptionLine2' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_DownloadDialog' overlays='Dialog.GlobalOptions'>"
-"<layout type='vertical' padding='8,8,8,4' spacing='8'>"
-"<widget name='RemoteDirectory' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='LocalDirectory' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ProgressBar' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='1'/>"
-"<widget name='PercentText' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<widget name='DownloadSize' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='DownloadSpeed' "
-"height='Globals.Line.Height' "
-"/>"
-"<space/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6'>"
-"<widget name='MainButton' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='CloseButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_ConnectionWizard' overlays='Dialog.GlobalOptions'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Cloud_ConnectionWizard_Container' overlays='GlobalOptions_Cloud_ConnectionWizard.Container'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='vertical' padding='0,0,0,0' spacing='4'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='2' />"
-"<widget name='NavigateLine' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='URLLine' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='2' />"
-"<widget name='ReturnLine1' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ReturnLine2' "
-"height='Globals.Line.Height' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='CodeBox1' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='CodeBox2' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='CodeBox3' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='CodeBox4' "
-"width='60' "
-"height='16' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='CodeBox5' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='CodeBox6' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='CodeBox7' "
-"width='60' "
-"height='16' "
-"/>"
-"<widget name='CodeBox8' "
-"width='60' "
-"height='16' "
-"/>"
-"</layout>"
-"<widget name='MessageLine' "
-"height='Globals.Line.Height' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='OpenUrlButton' "
-"type='Button' "
-"/>"
-"<widget name='PasteCodeButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
-"<widget name='CancelButton' "
-"type='Button' "
-"/>"
-"<space />"
-"<widget name='ConnectButton' "
-"type='Button' "
-"/>"
-"</layout>"
-"<space size='6' />"
-"<widget name='Picture' width='1' height='1' />"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalOptions_Accessibility' overlays='Dialog.GlobalOptions.TabWidget'>"
-"<layout type='vertical' padding='16,16,16,16' spacing='16'>"
-"<widget name='TTSCheckbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='TTSVoiceSelection' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Action' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List'/>"
-"<widget name='Mapping' "
-"height='Globals.Line.Height' "
-"/>"
-"<space size='Globals.Line.Height'/>"
-"<layout type='horizontal'>"
-"<widget name='Map' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions' overlays='screen' inset='16' shading='dim'>"
-"<layout type='vertical' padding='0,0,0,0' spacing='16'>"
-"<widget name='TabWidget' type='TabWidget'/>"
-"<layout type='horizontal' padding='8,8,8,8'>"
-"<space/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_KeyMapper' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Achievements' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Graphics' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Graphics_Container' overlays='GameOptions_Graphics.Container'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Graphics_Container' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Shader' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Shader' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Audio' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Audio' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_MIDI' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_MIDI' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_MT32' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_MT32' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Volume' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<import layout='Dialog.GlobalOptions_Volume' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Game' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='Id' "
-"width='35' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='Domain' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='Name' "
-"width='35' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='Desc' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<space size='8'/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='LangPopupDesc' "
-"width='60' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='LangPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='PlatformPopupDesc' "
-"width='60' "
-"height='Globals.Line.Height' "
-"textalign='end' "
-"/>"
-"<widget name='PlatformPopup' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Paths' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
-"<widget name='Savepath' "
-"type='Button' "
-"/>"
-"<widget name='SavepathText' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='SavePathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
-"<widget name='Extrapath' "
-"type='Button' "
-"/>"
-"<widget name='ExtrapathText' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='ExtraPathClearButton' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
-"<widget name='Gamepath' "
-"type='Button' "
-"/>"
-"<widget name='GamepathText' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Engine' overlays='Dialog.GameOptions.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GameOptions_Engine_Container' overlays='GameOptions_Engine.Container'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='customOption1Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption2Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption3Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption4Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption5Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption6Checkbox' "
-"type='Checkbox' "
-"/>"
-"<widget name='customOption7Checkbox' "
-"type='Checkbox' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalMenu' overlays='screen_center'>"
-"<layout type='vertical' padding='2,2,2,6' align='center' spacing='0'>"
-"<widget name='Title' "
-"width='160' "
-"height='12' "
-"/>"
-"<widget name='Version' "
-"width='160' "
-"height='14' "
-"/>"
-"<layout type='vertical' padding='0,0,3,0' align='center' spacing='6'>"
-"<widget name='Load' "
-"width='120' "
-"height='12' "
-"/>"
-"<widget name='Save' "
-"width='120' "
-"height='12' "
-"/>"
-"<space size='1'/>"
-"<widget name='Options' "
-"width='120' "
-"height='12' "
-"/>"
-"<widget name='Help' "
-"width='120' "
-"height='12' "
-"/>"
-"<widget name='About' "
-"width='120' "
-"height='12' "
-"/>"
-"<space size='1'/>"
-"<widget name='Resume' "
-"width='120' "
-"height='12' "
-"/>"
-"<widget name='ReturnToLauncher' "
-"width='120' "
-"height='12' "
-"/>"
-"<widget name='Quit' "
-"width='120' "
-"height='12' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig' overlays='screen_center' size='300,220' inset='5' >"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget' "
-"/>"
-"<layout type='horizontal' padding='8,8,0,8'>"
-"<space />"
-"<widget name='Keys' "
-"type='Button' "
-"/>"
-"<space />"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Engine' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Engine_Container' overlays='Dialog.GlobalConfig_Engine.Container'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<import layout='Dialog.GameOptions_Engine_Container' />"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Audio' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='vcMusicText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcMusicSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcMusicLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='vcSfxText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSfxSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSfxLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='vcSpeechText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='vcSpeechSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='vcSpeechLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<space size='110' />"
-"<widget name='vcMuteCheckbox' "
-"type='Checkbox' "
-"width='80' "
-"/>"
-"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='1' align='center'>"
-"<widget name='subToggleDesc' "
-"type='OptionsLabel' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='subToggleSpeechOnly' "
-"type='Radiobutton' "
-"width='90' "
-"/>"
-"<widget name='subToggleSubOnly' "
-"type='Radiobutton' "
-"width='90' "
-"/>"
-"<widget name='subToggleSubBoth' "
-"type='Radiobutton' "
-"width='90' "
-"/>"
-"</layout>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
-"<widget name='subSubtitleSpeedDesc' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='subSubtitleSpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='subSubtitleSpeedLabel' "
-"type='SmallLabel' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_KeyMapper' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='GlobalConfig_Achievements' overlays='Dialog.GlobalConfig.TabWidget'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='Container'/>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings' overlays='GlobalOptions' shading='dim'>"
-"<layout type='vertical' padding='0,0,0,0'>"
-"<widget name='TabWidget' type='TabWidget'/>"
-"<layout type='horizontal' padding='8,8,8,8'>"
-"<space/>"
-"<widget name='ResetSettings' "
-"type='Button' "
-"/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings_Chorus' overlays='Dialog.FluidSynthSettings.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='VoiceCountText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='VoiceCountSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='VoiceCountLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='LevelText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='LevelSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='LevelLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='SpeedText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='SpeedSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='SpeedLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='DepthText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='DepthSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='DepthLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='WaveFormTypeText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='WaveFormType' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings_Reverb' overlays='Dialog.FluidSynthSettings.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<widget name='EnableTabCheckbox' "
-"type='Checkbox' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='RoomSizeText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='RoomSizeSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='RoomSizeLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='DampingText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='DampingSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='DampingLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='WidthText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='WidthSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='WidthLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='LevelText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='LevelSlider' "
-"type='Slider' "
-"rtl='no' "
-"/>"
-"<widget name='LevelLabel' "
-"width='32' "
-"height='Globals.Line.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='FluidSynthSettings_Misc' overlays='Dialog.FluidSynthSettings.TabWidget'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
-"<widget name='InterpolationText' "
-"type='OptionsLabel' "
-"/>"
-"<widget name='Interpolation' "
-"type='PopUp' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='SaveLoadChooser' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Title' height='Globals.Line.Height'/>"
-"<widget name='List' />"
-"<layout type='horizontal' padding='0,0,16,0'>"
-"<widget name='ListSwitch' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"<widget name='GridSwitch' "
-"height='Globals.Line.Height' "
-"width='Globals.Line.Height' "
-"/>"
-"<space/>"
-"<widget name='Delete' "
-"type='Button' "
-"/>"
-"<space size='16'/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Choose' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='SaveLoadCloudSyncProgress' overlays='screen_center' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='TitleText' "
-"width='240' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<space size='1'/>"
-"<widget name='ProgressBar' "
-"width='240' "
-"height='Globals.Button.Height' "
-"/>"
-"<space size='1'/>"
-"<widget name='PercentText' "
-"width='240' "
-"height='Globals.Line.Height' "
-"textalign='center' "
-"/>"
-"<space size='1'/>"
-"<layout type='horizontal' padding='0,0,0,0' align='center' spacing='10'>"
-"<widget name='Cancel' "
-"width='100' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Background' "
-"width='100' "
-"height='Globals.Button.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='SavenameDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='DescriptionText' "
-"width='180' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Description' "
-"height='19' "
-"/>"
-"<layout type='horizontal' padding='0,0,16,0'>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='RecorderDialog' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,4' align='center'>"
-"<widget name='Title' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List' />"
-"<layout type='horizontal' padding='0,0,0,0' spacing='2'>"
-"<widget name='Edit' "
-"type='Button' "
-"/>"
-"<space />"
-"<widget name='Record' "
-"type='Button' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='2'>"
-"<widget name='Delete' "
-"type='Button' "
-"/>"
-"<space />"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='Playback' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='OnScreenDialog' overlays='screen_center'>"
-"<layout type='horizontal' spacing='5' padding='3,2,3,2' align='center'>"
-"<widget name='StopButton' "
-"width='16' "
-"height='16' "
-"/>"
-"<widget name='EditButton' "
-"width='16' "
-"height='16' "
-"/>"
-"<widget name='SwitchModeButton' "
-"width='16' "
-"height='16' "
-"/>"
-"<widget name='FastReplayButton' "
-"width='16' "
-"height='16' "
-"/>"
-"<widget name='TimeLabel' "
-"width='50' "
-"height='16' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='EditRecordDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Title' "
-"height='Globals.Line.Height' "
-"/>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='AuthorLabel' "
-"type='EditRecordLabel' "
-"/>"
-"<widget name='AuthorEdit' "
-"type='EditRecord' "
-"/>"
-"</layout>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='NameLabel' "
-"type='EditRecordLabel' "
-"/>"
-"<widget name='NameEdit' "
-"type='EditRecord' "
-"/>"
-"</layout>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
-"<widget name='NotesLabel' "
-"type='EditRecordLabel' "
-"/>"
-"<widget name='NotesEdit' "
-"type='EditRecord' "
-"/>"
-"</layout>"
-"<layout type='horizontal' spacing='5' padding='0,0,0,0'>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"<widget name='OK' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='ScummHelp' overlays='screen'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='Title' "
-"width='180' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='HelpText' "
-"height='140' "
-"/>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='Prev' "
-"type='Button' "
-"/>"
-"<widget name='Next' "
-"type='Button' "
-"/>"
-"<space size='32'/>"
-"<widget name='Close' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='LoomTownsDifficultyDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' align='center'>"
-"<widget name='Description1' "
-"width='280' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Description2' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Standard' "
-"type='Button' "
-"/>"
-"<widget name='Practice' "
-"type='Button' "
-"/>"
-"<widget name='Expert' "
-"type='Button' "
-"/>"
-"</layout>"
-"</dialog>"
-"<dialog name='MassAdd' overlays='screen_center' shading='dim'>"
-"<layout type='vertical' padding='4,4,16,4' align='center'>"
-"<widget name='DirProgressText' "
-"width='280' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='GameProgressText' "
-"width='280' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='GameList' "
-"width='280' "
-"height='100' "
-"/>"
-"<layout type='horizontal' padding='4,4,4,4'>"
-"<widget name='Ok' "
-"type='Button' "
-"/>"
-"<widget name='Cancel' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='Predictive' overlays='screen_center'>"
-"<layout type='vertical' padding='1,1,1,1' align='center'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"width='150' "
-"textalign='center' "
-"/>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Word' "
-"width='120' "
-"height='Globals.Button.Height' "
-"/>"
-"<widget name='Delete' "
-"width='20' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Button1' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button2' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button3' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Button4' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button5' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button6' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,3'>"
-"<widget name='Button7' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button8' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button9' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"</layout>"
-"<layout type='horizontal' padding='3,3,3,0'>"
-"<widget name='Pre' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Button0' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Next' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"</layout>"
-"<space size='3' />"
-"<layout type='horizontal' padding='3,3,0,3'>"
-"<widget name='Add' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='Cancel' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"<widget name='OK' "
-"width='Globals.Predictive.Button.Width' "
-"height='Globals.Predictive.Button.Height' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='DropdownDialog' overlays='screen_center' shading='luminance'>"
-"</dialog>"
-"<dialog name='UnknownGameDialog' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,0'>"
-"<widget name='TextContainer' "
-"/>"
-"<layout type='horizontal' padding='0,0,8,8'>"
-"<space/>"
-"<widget name='Report' "
-"type='Button' "
-"/>"
-"<widget name='Copy' "
-"type='Button' "
-"/>"
-"<widget name='Close' "
-"type='Button' "
-"/>"
-"<widget name='Add' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"<dialog name='TestbedOptions' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8'>"
-"<widget name='Headline' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='Info' "
-"height='Globals.Line.Height' "
-"/>"
-"<widget name='List' "
-"/>"
-"<layout type='vertical' padding='0,0,8,0'>"
-"<layout type='horizontal' padding='0,0,0,0'>"
-"<widget name='SelectAll' "
-"type='Button' "
-"/>"
-"<space/>"
-"<widget name='RunTests' "
-"type='Button' "
-"/>"
-"<widget name='Quit' "
-"type='Button' "
-"/>"
-"</layout>"
-"</layout>"
-"</layout>"
-"</dialog>"
-"</layout_info>"
-;
-const char *defaultXML[] = { defaultXML1, defaultXML2, defaultXML3, defaultXML4 };
+const char *defaultXML1 = "<?xml version = '1.0'?>"
+;
+ const char *defaultXML2 = "<render_info>"
+"<palette>"
+"<color name='black' "
+"rgb='0,0,0' "
+"/>"
+"<color name='lightgrey' "
+"rgb='104,104,104' "
+"/>"
+"<color name='darkgrey' "
+"rgb='64,64,64' "
+"/>"
+"<color name='green' "
+"rgb='32,160,32' "
+"/>"
+"<color name='green2' "
+"rgb='0,255,0' "
+"/>"
+"<color name='white' "
+"rgb='255,255,255' "
+"/>"
+"</palette>"
+"<fonts>"
+"<font id='text_default'>"
+"<language id='*' file='helvb12.bdf'/>"
+"</font>"
+"<font resolution='y<400' "
+"id='text_default'>"
+"<language id='*' file='clR6x12.bdf'/>"
+"</font>"
+"<font id='text_button'>"
+"<language id='*' file='helvb12.bdf'/>"
+"</font>"
+"<font resolution='y<400' "
+"id='text_button'>"
+"<language id='*' file='clR6x12.bdf'/>"
+"</font>"
+"<font id='text_normal'>"
+"<language id='*' file='helvb12.bdf'/>"
+"</font>"
+"<font resolution='y<400' "
+"id='text_normal'>"
+"<language id='*' file='clR6x12.bdf'/>"
+"</font>"
+"<font id='tooltip_normal' "
+"file='fixed5x8.bdf'>"
+"<language id='*' file='fixed5x8.bdf'/>"
+"</font>"
+"<font id='console'>"
+"<language id='*' file='builtinConsole'/>"
+"</font>"
+"<text_color id='color_normal' "
+"color='green' "
+"/>"
+"<text_color id='color_normal_inverted' "
+"color='black' "
+"/>"
+"<text_color id='color_normal_hover' "
+"color='green2' "
+"/>"
+"<text_color id='color_normal_disabled' "
+"color='lightgrey' "
+"/>"
+"<text_color id='color_alternative' "
+"color='lightgrey' "
+"/>"
+"<text_color id='color_alternative_inverted' "
+"color='white' "
+"/>"
+"<text_color id='color_alternative_hover' "
+"color='176,176,176' "
+"/>"
+"<text_color id='color_alternative_disabled' "
+"color='darkgrey' "
+"/>"
+"<text_color id='color_button' "
+"color='green' "
+"/>"
+"<text_color id='color_button_hover' "
+"color='green2' "
+"/>"
+"<text_color id='color_button_disabled' "
+"color='lightgrey' "
+"/>"
+"</fonts>"
+"<defaults fill='foreground' fg_color='darkgrey' bg_color='black' shadow='0' bevel_color='lightgrey'/>"
+"<drawdata id='text_selection' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='lightgrey' "
+"/>"
+"</drawdata>"
+"<drawdata id='text_selection_focus' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"/>"
+"</drawdata>"
+"<drawdata id='mainmenu_bg' cache='false'>"
+"<drawstep func='fill' "
+"fill='foreground' "
+"fg_color='black' "
+"/>"
+"</drawdata>"
+"<drawdata id='special_bg' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"/>"
+"</drawdata>"
+"<drawdata id='tooltip_bg' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='foreground' "
+"fg_color='black' "
+"/>"
+"</drawdata>"
+"<drawdata id='separator' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"height='2' "
+"ypos='center' "
+"fg_color='lightgrey' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_base' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_handle_hover' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green2' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_handle_idle' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_button_idle' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='10' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,3,0' "
+"orientation='top' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_button_idle' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='5' "
+"height='5' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,2,0' "
+"orientation='top' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_button_hover' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='10' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,3,0' "
+"orientation='top' "
+"/>"
+"</drawdata>"
+"<drawdata id='scrollbar_button_hover' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='5' "
+"height='5' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,2,0' "
+"orientation='top' "
+"/>"
+"</drawdata>"
+"<drawdata id='tab_active' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal_hover' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='tab' "
+"bevel='2' "
+"radius='0' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='tab_inactive' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='tab' "
+"bevel='2' "
+"radius='0' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='tab_background' cache='false'>"
+"</drawdata>"
+"<drawdata id='widget_slider' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='slider_disabled' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='lightgrey' "
+"/>"
+"</drawdata>"
+"<drawdata id='slider_full' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"/>"
+"</drawdata>"
+"<drawdata id='slider_hover' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green2' "
+"/>"
+"</drawdata>"
+"<drawdata id='widget_small' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_idle' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='right' "
+"ypos='10' "
+"padding='0,0,7,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='right' "
+"ypos='4' "
+"padding='0,0,7,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_idle_rtl' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='left' "
+"ypos='10' "
+"padding='7,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='left' "
+"ypos='4' "
+"padding='7,0,0,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_idle' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='right' "
+"ypos='9' "
+"padding='0,0,3,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='right' "
+"ypos='4' "
+"padding='0,0,3,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_idle_rtl' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='left' "
+"ypos='9' "
+"padding='3,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='left' "
+"ypos='4' "
+"padding='3,0,0,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_disabled' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='right' "
+"ypos='10' "
+"padding='0,0,7,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='right' "
+"ypos='4' "
+"padding='0,0,7,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal_disabled' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_disabled_rtl' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='left' "
+"ypos='10' "
+"padding='7,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='left' "
+"ypos='4' "
+"padding='7,0,0,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal_disabled' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_disabled' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='right' "
+"ypos='9' "
+"padding='0,0,3,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='right' "
+"ypos='4' "
+"padding='0,0,3,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_disabled_rtl' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='left' "
+"ypos='9' "
+"padding='3,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='left' "
+"ypos='4' "
+"padding='3,0,0,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_hover' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='right' "
+"ypos='10' "
+"padding='0,0,7,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='right' "
+"ypos='4' "
+"padding='0,0,7,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal_hover' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_hover_rtl' cache='false' resolution='y>399'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='left' "
+"ypos='10' "
+"padding='7,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='10' "
+"height='5' "
+"xpos='left' "
+"ypos='4' "
+"padding='7,0,0,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal_hover' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_hover' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='right' "
+"ypos='9' "
+"padding='0,0,3,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='right' "
+"ypos='4' "
+"padding='0,0,3,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='popup_hover_rtl' cache='false' resolution='y<400'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='left' "
+"ypos='9' "
+"padding='3,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='7' "
+"height='4' "
+"xpos='left' "
+"ypos='4' "
+"padding='3,0,0,0' "
+"orientation='top' "
+"/>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"</drawdata>"
+"<drawdata id='widget_textedit' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='plain_bg' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"/>"
+"</drawdata>"
+"<drawdata id='caret' cache='false'>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='lightgrey' "
+"/>"
+"</drawdata>"
+"<drawdata id='default_bg' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"/>"
+"</drawdata>"
+"<drawdata id='button_pressed' cache='false'>"
+"<text font='text_button' "
+"text_color='color_alternative_inverted' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"/>"
+"</drawdata>"
+"<drawdata id='button_idle' cache='false'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='button_hover' cache='false'>"
+"<text font='text_button' "
+"text_color='color_button_hover' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='button_disabled' cache='false'>"
+"<text font='text_button' "
+"text_color='color_button_disabled' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_idle' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,4,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,17,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_idle_rtl' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='4,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='left' "
+"ypos='center' "
+"padding='17,0,0,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_idle' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_idle_rtl' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_left' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button_hover' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,4,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,17,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_left_rtl' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button_hover' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='4,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='left' "
+"ypos='center' "
+"padding='17,0,0,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_left' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button_hover' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_left_rtl' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button_hover' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_right' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green2' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,4,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,17,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_right_rtl' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green2' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='4,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='left' "
+"ypos='center' "
+"padding='17,0,0,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_right' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green2' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_hover_right_rtl' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green2' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_disabled' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button_disabled' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='lightgrey' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,4,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,17,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_disabled_rtl' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button_disabled' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='lightgrey' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='4,0,0,0' "
+"orientation='bottom' "
+"/>"
+"<drawstep func='line' "
+"fg_color='lightgrey' "
+"stroke='2' "
+"fill='foreground' "
+"width='0' "
+"height='auto' "
+"xpos='left' "
+"ypos='center' "
+"padding='17,0,0,1' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_disabled' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button_disabled' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='lightgrey' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_disabled_rtl' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button_disabled' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='lightgrey' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_left' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_alternative_inverted' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='0,0,-18,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,4,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_left_rtl' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_alternative_inverted' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='18,0,0,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='4,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_left' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_alternative_inverted' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='0,0,-7,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_left_rtl' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_alternative_inverted' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='7,0,0,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='green' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_right' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='-16,0,0,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='white' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,4,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_right_rtl' cache='false' resolution='y>399'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='0,0,16,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='white' "
+"fill='foreground' "
+"width='8' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='4,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_right' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='-7,0,0,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='white' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='right' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='dropdown_button_pressed_right_rtl' cache='false' resolution='y<400'>"
+"<text font='text_button' "
+"text_color='color_button' "
+"vertical_align='center' "
+"horizontal_align='center' "
+"/>"
+"<drawstep func='square' "
+"fill='foreground' "
+"fg_color='green' "
+"clip='0,0,7,0' "
+"/>"
+"<drawstep func='triangle' "
+"fg_color='white' "
+"fill='foreground' "
+"width='6' "
+"height='6' "
+"xpos='left' "
+"ypos='center' "
+"padding='0,0,0,0' "
+"orientation='bottom' "
+"/>"
+"</drawdata>"
+"<drawdata id='checkbox_disabled_selected' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal_disabled' "
+"vertical_align='top' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='cross' "
+"fill='foreground' "
+"stroke='2' "
+"fg_color='lightgrey' "
+"/>"
+"</drawdata>"
+"<drawdata id='checkbox_disabled' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal_disabled' "
+"vertical_align='top' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='checkbox_selected' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='top' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"<drawstep func='cross' "
+"fill='foreground' "
+"stroke='2' "
+"fg_color='green' "
+"/>"
+"</drawdata>"
+"<drawdata id='checkbox_default' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='top' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"fill='none' "
+"/>"
+"</drawdata>"
+"<drawdata id='radiobutton_default' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='circle' "
+"width='7' "
+"height='7' "
+"radius='7' "
+"fill='background' "
+"bg_color='darkgrey' "
+"xpos='0' "
+"ypos='0' "
+"/>"
+"</drawdata>"
+"<drawdata id='radiobutton_selected' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='circle' "
+"width='7' "
+"height='7' "
+"radius='7' "
+"fg_color='darkgrey' "
+"fill='none' "
+"xpos='0' "
+"ypos='0' "
+"/>"
+"<drawstep func='circle' "
+"width='7' "
+"height='7' "
+"radius='5' "
+"fg_color='green' "
+"fill='foreground' "
+"xpos='2' "
+"ypos='2' "
+"/>"
+"</drawdata>"
+"<drawdata id='radiobutton_disabled' cache='false'>"
+"<text font='text_default' "
+"text_color='color_normal_disabled' "
+"vertical_align='center' "
+"horizontal_align='start' "
+"/>"
+"<drawstep func='circle' "
+"width='7' "
+"height='7' "
+"radius='7' "
+"bg_color='lightgrey' "
+"fill='background' "
+"xpos='0' "
+"ypos='0' "
+"/>"
+"</drawdata>"
+"<drawdata id='widget_default' cache='false'>"
+"<drawstep func='bevelsq' "
+"bevel='2' "
+"/>"
+"</drawdata>"
+"<drawdata id='widget_small' cache='false'>"
+"<drawstep func='square' "
+"stroke='0' "
+"/>"
+"</drawdata>"
+"</render_info>"
+;
+ const char *defaultXML3 = "<layout_info resolution='y>399'>"
+"<globals>"
+"<def var='Line.Height' value='16' />"
+"<def var='Font.Height' value='16' />"
+"<def var='About.OuterBorder' value='80'/>"
+"<def var='Layout.Spacing' value='8' />"
+"<def var='ShowLauncherLogo' value='0'/>"
+"<def var='ShowGlobalMenuLogo' value='0'/>"
+"<def var='ShowSearchPic' value='0'/>"
+"<def var='ShowChooserPics' value='0'/>"
+"<def var='ShowChooserPageDisplay' value='1'/>"
+"<def var='SaveLoadChooser.ExtInfo.Visible' value='1'/>"
+"<def var='RecorderDialog.ExtInfo.Visible' value='1'/>"
+"<def var='OnScreenDialog.ShowPics' value='0'/>"
+"<def var='KeyMapper.Spacing' value='10'/>"
+"<def var='KeyMapper.ButtonWidth' value='140'/>"
+"<def var='KeyMapper.ResetWidth' value='80'/>"
+"<def var='Tooltip.MaxWidth' value='200'/>"
+"<def var='Tooltip.XDelta' value='16'/> "
+"<def var='Tooltip.YDelta' value='16'/>"
+"<def var='Predictive.Button.Width' value='60' />"
+"<def var='Predictive.ShowDeletePic' value='0'/>"
+"<def var='DropdownButton.Width' value='17'/>"
+"<widget name='OptionsLabel' "
+"size='110,Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='SmallLabel' "
+"size='24,Globals.Line.Height' "
+"/>"
+"<widget name='CloudTabLabel' "
+"size='200,Globals.Line.Height' "
+"/>"
+"<widget name='CloudTabLabelValue' "
+"size='200,Globals.Line.Height' "
+"/>"
+"<widget name='ShortOptionsLabel' "
+"size='60,Globals.Line.Height' "
+"/>"
+"<widget name='Button' "
+"size='108,24' "
+"/>"
+"<widget name='WideButton' "
+"size='216,24' "
+"/>"
+"<widget name='Slider' "
+"size='128,18' "
+"/>"
+"<widget name='PopUp' "
+"size='-1,19' "
+"/>"
+"<widget name='Checkbox' "
+"size='-1,14' "
+"/>"
+"<widget name='Radiobutton' "
+"size='-1,Globals.Line.Height' "
+"/>"
+"<widget name='ListWidget' "
+"padding='5,0,8,0' "
+"/>"
+"<widget name='PopUpWidget' "
+"padding='7,5,0,0' "
+"/>"
+"<widget name='EditTextWidget' "
+"padding='5,5,0,0' "
+"/>"
+"<widget name='Console' "
+"padding='7,5,5,5' "
+"/>"
+"<widget name='Scrollbar' "
+"size='15,0' "
+"/>"
+"<widget name='TabWidget.Tab' "
+"size='40,27' "
+"padding='0,0,8,0' "
+"/>"
+"<widget name='TabWidget.Body' "
+"padding='0,0,0,0' "
+"/>"
+"<widget name='TabWidget.NavButton' "
+"size='15,18' "
+"padding='0,3,4,0' "
+"/>"
+"<widget name='EditRecordLabel' "
+"size='60,25' "
+"/>"
+"<widget name='EditRecord' "
+"size='240,25' "
+"/>"
+"</globals>"
+"<dialog name='Launcher' overlays='screen'>"
+"<layout type='vertical' align='center' padding='16,16,8,8'>"
+"<widget name='Version' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<layout type='horizontal' spacing='5' padding='10,0,0,0'>"
+"<widget name='SearchDesc' "
+"width='60' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='Search' "
+"width='150' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='SearchClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"<space />"
+"</layout>"
+"<widget name='GameList'/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='LoadGameButton' "
+"height='20' "
+"/>"
+"<widget name='AddGameButton' "
+"height='20' "
+"/>"
+"<widget name='EditGameButton' "
+"height='20' "
+"/>"
+"<widget name='RemoveGameButton' "
+"height='20' "
+"/>"
+"</layout>"
+"<space size='4'/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='QuitButton' "
+"height='20' "
+"/>"
+"<widget name='AboutButton' "
+"height='20' "
+"/>"
+"<widget name='OptionsButton' "
+"height='20' "
+"/>"
+"<widget name='StartButton' "
+"height='20' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='Browser' overlays='Dialog.Launcher.GameList' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Path' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='List'/>"
+"<layout type='vertical' padding='0,0,16,0'>"
+"<widget name='Hidden' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='Up' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Choose' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FileBrowser' overlays='screen' inset='32' shading='dim'>"
+"<layout type='vertical' padding='16,16,16,16'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Filename' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='10' />"
+"<widget name='List'/>"
+"<layout type='vertical' padding='0,0,16,0'>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Choose' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions' overlays='Dialog.Launcher.GameList' shading='dim'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget'/>"
+"<layout type='horizontal' padding='16,16,16,16'>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Apply' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Control' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='grOnScreenCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grTouchpadCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grSwapMenuAndBackBtnsCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='grKbdMouseSpeedDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grKbdMouseSpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='grKbdMouseSpeedLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grJoystickDeadzoneDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grJoystickDeadzoneSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='grJoystickDeadzoneLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_KeyMapper' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Graphics' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Graphics_Container' overlays='GlobalOptions_Graphics.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grModePopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grModePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grRenderPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grRenderPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grStretchModePopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grStretchModePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<widget name='grAspectCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grFullscreenCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grFilteringCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Shader' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grShaderPopUpDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grShaderPopUp' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Audio' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='auMidiPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auMidiPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='auOPLPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auOPLPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='subToggleDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subToggleSpeechOnly' "
+"type='Radiobutton' "
+"/>"
+"<widget name='subToggleSubOnly' "
+"type='Radiobutton' "
+"/>"
+"<widget name='subToggleSubBoth' "
+"type='Radiobutton' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='subSubtitleSpeedDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subSubtitleSpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='subSubtitleSpeedLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Volume' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='horizontal' padding='16,16,16,16' spacing='8'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='vcMusicText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcMusicSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcMusicLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='vcSfxText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSfxSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSfxLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='vcSpeechText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSpeechSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSpeechLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='vertical' padding='24,0,24,0' align='center'>"
+"<widget name='vcMuteCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_MIDI' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='auPrefGmPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auPrefGmPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='mcFontButton' "
+"type='Button' "
+"/>"
+"<widget name='mcFontPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='mcFontClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<widget name='mcMixedCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='mcMidiGainText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='mcMidiGainSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='mcMidiGainLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<widget name='mcFluidSynthSettings' "
+"width='200' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_MT32' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='auPrefMt32PopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auPrefMt32Popup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<widget name='mcMt32Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='mcGSCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Paths' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='SaveButton' "
+"type='Button' "
+"/>"
+"<widget name='SavePath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='SavePathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='ThemeButton' "
+"type='Button' "
+"/>"
+"<widget name='ThemePath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ThemePathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='ExtraButton' "
+"type='Button' "
+"/>"
+"<widget name='ExtraPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ExtraPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
+"<widget name='PluginsButton' "
+"type='Button' "
+"/>"
+"<widget name='PluginsPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='PluginsPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Misc' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Misc_Container' overlays='GlobalOptions_Misc.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='ThemeButton' "
+"type='Button' "
+"/>"
+"<widget name='CurTheme' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='RendererPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='RendererPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='AutosavePeriodPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='AutosavePeriodPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='GuiLanguagePopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='GuiLanguagePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='GuiLanguageUseGameLanguage' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='UseSystemDialogs' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='UpdatesPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='UpdatesPopup' "
+"type='PopUp' "
+"/>"
+"<widget name='UpdatesCheckManuallyButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"<widget name='KeysButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_Container' overlays='GlobalOptions_Cloud.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='-19,7,0,0' spacing='10'>"
+"<layout type='vertical' padding='0,0,2,0' spacing='2'>"
+"<widget name='StoragePopupDesc' "
+"type='OptionsLabel' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,0,0' spacing='2'>"
+"<widget name='StoragePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,8,0' spacing='4'>"
+"<widget name='StorageDisabledHint' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='StorageEnableButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
+"<widget name='StorageUsernameDesc' "
+"type='CloudTabLabel' "
+"/>"
+"<widget name='StorageUsernameLabel' "
+"type='CloudTabLabelValue' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
+"<widget name='StorageUsedSpaceDesc' "
+"type='CloudTabLabel' "
+"/>"
+"<widget name='StorageUsedSpaceLabel' "
+"type='CloudTabLabelValue' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
+"<widget name='StorageLastSyncDesc' "
+"type='CloudTabLabel' "
+"/>"
+"<widget name='StorageLastSyncLabel' "
+"type='CloudTabLabelValue' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,7,0' spacing='2'>"
+"<widget name='SyncSavesButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-4,0' spacing='10' align='center'>"
+"<widget name='StorageSyncHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,6,0' spacing='4'>"
+"<widget name='StorageDownloadHint' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='DownloadButton' "
+"type='WideButton' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,8,0' spacing='4'>"
+"<widget name='StorageDisconnectHint' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='DisconnectButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
+"<widget name='StorageWizardNotConnectedHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,2,0' spacing='4'>"
+"<widget name='StorageWizardOpenLinkHint' "
+"width='106' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,1,0' spacing='4'>"
+"<widget name='StorageWizardLink' "
+"width='192' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
+"<widget name='StorageWizardCodeHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
+"<widget name='StorageWizardCodeBox' "
+"width='108' "
+"height='24' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
+"<widget name='StorageWizardPasteButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
+"<widget name='StorageWizardConnectButton' "
+"type='Button' "
+"/>"
+"<widget name='StorageWizardConnectionStatusHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Network' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='RunServerButton' "
+"type='Button' "
+"/>"
+"<widget name='ServerInfoLabel' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='RootPathButton' "
+"type='Button' "
+"/>"
+"<widget name='RootPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='RootPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='ServerPortDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='ServerPortEditText' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ServerPortClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='FeatureDescriptionLine1' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='FeatureDescriptionLine2' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_DownloadDialog' overlays='Dialog.GlobalOptions'>"
+"<layout type='vertical' padding='16,16,16,8' spacing='8'>"
+"<widget name='RemoteDirectory' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='LocalDirectory' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ProgressBar' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='1'/>"
+"<widget name='PercentText' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<widget name='DownloadSize' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='DownloadSpeed' "
+"height='Globals.Line.Height' "
+"/>"
+"<space/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='MainButton' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='CloseButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_ConnectionWizard' overlays='Dialog.GlobalOptions'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_ConnectionWizard_Container' overlays='GlobalOptions_Cloud_ConnectionWizard.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='0'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='6'>"
+"<widget name='Picture' "
+"width='109' "
+"height='109' "
+"/>"
+"<widget name='OpenUrlButton' "
+"type='Button' "
+"/>"
+"<widget name='PasteCodeButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,0,0' spacing='6'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='4' />"
+"<widget name='NavigateLine' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='URLLine' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='4' />"
+"<widget name='ReturnLine1' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ReturnLine2' "
+"height='Globals.Line.Height' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='CodeBox1' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='CodeBox2' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='CodeBox3' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='CodeBox4' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='CodeBox5' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='CodeBox6' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='CodeBox7' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='CodeBox8' "
+"width='70' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<widget name='MessageLine' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='6' />"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='CancelButton' "
+"type='Button' "
+"/>"
+"<space />"
+"<widget name='ConnectButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Accessibility' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='16'>"
+"<widget name='TTSCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='TTSVoiceSelection' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='Action' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='List'/>"
+"<widget name='Mapping' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='Globals.Line.Height'/>"
+"<layout type='horizontal'>"
+"<widget name='Map' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions' overlays='Dialog.Launcher.GameList' shading='dim'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget'/>"
+"<layout type='horizontal' padding='16,16,16,16'>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_KeyMapper' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Achievements' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Graphics' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Graphics_Container' overlays='GameOptions_Graphics.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Graphics_Container' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Shader' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Shader' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Audio' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Audio' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_MIDI' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_MIDI' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_MT32' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_MT32' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Volume' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Volume' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Game' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
+"<layout type='vertical' padding='16,16,16,16'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='Id' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='Domain' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='Name' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='Desc' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='LangPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='LangPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='PlatformPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='PlatformPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Paths' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
+"<layout type='vertical' padding='16,16,16,16'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='Savepath' "
+"type='Button' "
+"/>"
+"<widget name='SavepathText' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='SavePathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='Extrapath' "
+"type='Button' "
+"/>"
+"<widget name='ExtrapathText' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ExtraPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='Gamepath' "
+"type='Button' "
+"/>"
+"<widget name='GamepathText' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Engine' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Engine_Container' overlays='GameOptions_Engine.Container'>"
+"<layout type='vertical' padding='16,16,16,16'>"
+"<widget name='customOption1Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption2Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption3Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption4Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption5Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption6Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption7Checkbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalMenu' overlays='screen_center'>"
+"<layout type='vertical' padding='16,16,16,16' align='center'>"
+"<widget name='Title' "
+"width='210' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Version' "
+"width='210' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Resume' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='10'/>"
+"<widget name='Load' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Save' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='10'/>"
+"<widget name='Options' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Help' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='About' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='10'/>"
+"<widget name='ReturnToLauncher' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Quit' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig' overlays='screen_center' size='500,350' inset='8'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget' "
+"/>"
+"<layout type='horizontal' padding='16,16,16,16'>"
+"<space />"
+"<widget name='Keys' "
+"type='Button' "
+"/>"
+"<space />"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Engine' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Engine_Container' overlays='Dialog.GlobalConfig_Engine.Container'>"
+"<layout type='vertical' padding='16,16,16,16'>"
+"<import layout='Dialog.GameOptions_Engine_Container' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Audio' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<layout type='vertical' padding='0,0,0,0' align='center'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
+"<widget name='vcMusicText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcMusicSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcMusicLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
+"<widget name='vcSfxText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSfxSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSfxLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
+"<widget name='vcSpeechText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSpeechSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSpeechLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='vertical' padding='24,24,24,24' align='center'>"
+"<widget name='vcMuteCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</layout>"
+"<space size='8' />"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='subToggleDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subToggleSpeechOnly' "
+"type='Radiobutton' "
+"width='100' "
+"/>"
+"<widget name='subToggleSubOnly' "
+"type='Radiobutton' "
+"width='100' "
+"/>"
+"<widget name='subToggleSubBoth' "
+"type='Radiobutton' "
+"width='100' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='subSubtitleSpeedDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subSubtitleSpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='subSubtitleSpeedLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_KeyMapper' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Achievements' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings' overlays='GlobalOptions' shading='dim'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget'/>"
+"<layout type='horizontal' padding='16,16,16,16'>"
+"<space/>"
+"<widget name='ResetSettings' "
+"type='Button' "
+"/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings_Chorus' overlays='Dialog.FluidSynthSettings.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='VoiceCountText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='VoiceCountSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='VoiceCountLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='LevelText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='LevelSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='LevelLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='SpeedText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='SpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='SpeedLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='DepthText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='DepthSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='DepthLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='WaveFormTypeText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='WaveFormType' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings_Reverb' overlays='Dialog.FluidSynthSettings.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='RoomSizeText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='RoomSizeSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='RoomSizeLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='DampingText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='DampingSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='DampingLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='WidthText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='WidthSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='WidthLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='LevelText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='LevelSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='LevelLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings_Misc' overlays='Dialog.FluidSynthSettings.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='InterpolationText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='Interpolation' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='SaveLoadChooser' overlays='screen' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,32' align='center'>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='Title' "
+"height='Globals.Line.Height' "
+"/>"
+"<space/>"
+"<widget name='PageDisplay' "
+"width='200' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,6' spacing='16'>"
+"<widget name='List' />"
+"<widget name='Thumbnail' "
+"width='180' "
+"height='155' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='ListSwitch' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"<widget name='GridSwitch' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"<space/>"
+"<widget name='Delete' "
+"type='Button' "
+"/>"
+"<space size='32'/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Choose' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='SaveLoadCloudSyncProgress' overlays='screen_center' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='TitleText' "
+"width='496' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<space size='1'/>"
+"<widget name='ProgressBar' "
+"width='496' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='1'/>"
+"<widget name='PercentText' "
+"width='496' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<space size='1'/>"
+"<layout type='horizontal' padding='0,0,0,0' align='center' spacing='10'>"
+"<widget name='Cancel' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Background' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='SavenameDialog' overlays='screen_center'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<widget name='DescriptionText' "
+"width='320' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Description' "
+"height='19' "
+"/>"
+"<layout type='horizontal' padding='0,0,16,0'>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<space size='96'/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='RecorderDialog' overlays='screen' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,32' align='center'>"
+"<widget name='Title' "
+"height='Globals.Line.Height' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,16' spacing='16'>"
+"<widget name='List' />"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Thumbnail' "
+"width='180' "
+"height='170' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='NextScreenShotButton' "
+"width='25' "
+"height='25' "
+"/>"
+"<widget name='currentScreenshot' "
+"width='125' "
+"height='25' "
+"textalign='center' "
+"/>"
+"<widget name='PreviousScreenShotButton' "
+"width='25' "
+"height='25' "
+"/>"
+"</layout>"
+"<widget name='Author' height='Globals.Line.Height' />"
+"<widget name='Notes' height='Globals.Line.Height' />"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='Delete' "
+"type='Button' "
+"/>"
+"<space size='16'/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<space size='16'/>"
+"<widget name='Edit' "
+"type='Button' "
+"/>"
+"<widget name='Record' "
+"type='Button' "
+"/>"
+"<widget name='Playback' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='OnScreenDialog' overlays='screen_center'>"
+"<layout type='horizontal' spacing='5' padding='5,3,5,3' align='center'>"
+"<widget name='StopButton' "
+"width='32' "
+"height='32' "
+"/>"
+"<widget name='EditButton' "
+"width='32' "
+"height='32' "
+"/>"
+"<widget name='SwitchModeButton' "
+"width='32' "
+"height='32' "
+"/>"
+"<widget name='FastReplayButton' "
+"width='32' "
+"height='32' "
+"/>"
+"<widget name='TimeLabel' "
+"width='50' "
+"height='30' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='EditRecordDialog' overlays='screen_center'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='Title' "
+"width='320' "
+"height='Globals.Line.Height' "
+"/>"
+"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
+"<widget name='AuthorLabel' "
+"type='EditRecordLabel' "
+"/>"
+"<widget name='AuthorEdit' "
+"type='EditRecord' "
+"/>"
+"</layout>"
+"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
+"<widget name='NameLabel' "
+"type='EditRecordLabel' "
+"/>"
+"<widget name='NameEdit' "
+"type='EditRecord' "
+"/>"
+"</layout>"
+"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
+"<widget name='NotesLabel' "
+"type='EditRecordLabel' "
+"/>"
+"<widget name='NotesEdit' "
+"type='EditRecord' "
+"/>"
+"</layout>"
+"<layout type='horizontal' spacing='5' padding='0,0,0,10'>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='OK' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='ScummHelp' overlays='screen_center'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='Title' "
+"width='320' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='HelpText' "
+"height='200' "
+"/>"
+"<layout type='horizontal' padding='0,0,16,0'>"
+"<widget name='Prev' "
+"type='Button' "
+"/>"
+"<widget name='Next' "
+"type='Button' "
+"/>"
+"<space size='32'/>"
+"<widget name='Close' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='LoomTownsDifficultyDialog' overlays='screen_center'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='Description1' "
+"width='320' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Description2' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Standard' "
+"type='Button' "
+"/>"
+"<widget name='Practice' "
+"type='Button' "
+"/>"
+"<widget name='Expert' "
+"type='Button' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='MassAdd' overlays='screen_center' shading='dim'>"
+"<layout type='vertical' padding='8,8,32,8' align='center'>"
+"<widget name='DirProgressText' "
+"width='480' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='GameProgressText' "
+"width='480' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='GameList' "
+"width='480' "
+"height='250' "
+"/>"
+"<layout type='horizontal' padding='8,8,8,8'>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='Predictive' overlays='screen_center'>"
+"<layout type='vertical' padding='5,5,5,5' align='center'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"width='210' "
+"textalign='center' "
+"/>"
+"<layout type='horizontal' padding='5,5,5,5'>"
+"<widget name='Word' "
+"width='190' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Delete' "
+"width='20' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"<space size='5' />"
+"<layout type='horizontal' padding='3,3,3,3'>"
+"<widget name='Button1' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button2' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button3' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='3,3,3,3'>"
+"<widget name='Button4' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button5' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button6' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='3,3,3,3'>"
+"<widget name='Button7' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button8' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button9' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='3,3,3,3'>"
+"<widget name='Pre' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Button0' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Next' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"<space size='5' />"
+"<layout type='horizontal' padding='3,3,3,3'>"
+"<widget name='Add' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='22'/>"
+"<widget name='Cancel' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='OK' "
+"width='Globals.Predictive.Button.Width' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='DropdownDialog' overlays='screen_center' shading='luminance'>"
+"</dialog>"
+"<dialog name='UnknownGameDialog' overlays='Dialog.Launcher.GameList' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,0'>"
+"<widget name='TextContainer' "
+"/>"
+"<layout type='horizontal' padding='0,0,16,16'>"
+"<space/>"
+"<widget name='Report' "
+"type='Button' "
+"/>"
+"<widget name='Copy' "
+"type='Button' "
+"/>"
+"<widget name='Close' "
+"type='Button' "
+"/>"
+"<widget name='Add' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='TestbedOptions' overlays='screen_center' size='400,300'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Info' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='List' "
+"/>"
+"<layout type='vertical' padding='0,0,16,0'>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='SelectAll' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='RunTests' "
+"type='Button' "
+"/>"
+"<widget name='Quit' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"</layout_info>"
+;
+ const char *defaultXML4 = "<layout_info resolution='y<400'>"
+"<globals>"
+"<def var='Line.Height' value='12' />"
+"<def var='Font.Height' value='10' />"
+"<def var='About.OuterBorder' value='10'/>"
+"<def var='Layout.Spacing' value='8'/>"
+"<def var='ShowLauncherLogo' value='0'/>"
+"<def var='ShowGlobalMenuLogo' value='0'/>"
+"<def var='ShowSearchPic' value='0'/>"
+"<def var='ShowChooserPics' value='0'/>"
+"<def var='ShowChooserPageDisplay' value='0'/>"
+"<def var='SaveLoadChooser.ExtInfo.Visible' value='0'/>"
+"<def var='RecorderDialog.ExtInfo.Visible' value='0'/>"
+"<def var='OnScreenDialog.ShowPics' value='0'/>"
+"<def var='KeyMapper.Spacing' value='5'/>"
+"<def var='KeyMapper.ButtonWidth' value='100'/>"
+"<def var='KeyMapper.ResetWidth' value='60'/>"
+"<def var='Tooltip.MaxWidth' value='70'/>"
+"<def var='Tooltip.XDelta' value='8'/> "
+"<def var='Tooltip.YDelta' value='8'/>"
+"<def var='Predictive.Button.Width' value='45' />"
+"<def var='Predictive.Button.Height' value='15' />"
+"<def var='Predictive.ShowDeletePic' value='0'/>"
+"<def var='DropdownButton.Width' value='7'/>"
+"<widget name='Button' "
+"size='72,16' "
+"/>"
+"<widget name='WideButton' "
+"size='144,16' "
+"/>"
+"<widget name='Slider' "
+"size='85,12' "
+"/>"
+"<widget name='OptionsLabel' "
+"size='110,Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='SmallLabel' "
+"size='18,Globals.Line.Height' "
+"/>"
+"<widget name='CloudTabLabel' "
+"size='180,Globals.Line.Height' "
+"/>"
+"<widget name='CloudTabLabelValue' "
+"size='180,Globals.Line.Height' "
+"/>"
+"<widget name='PopUp' "
+"size='-1,15' "
+"/>"
+"<widget name='Checkbox' "
+"size='-1,Globals.Line.Height' "
+"/>"
+"<widget name='Radiobutton' "
+"size='-1,Globals.Line.Height' "
+"/>"
+"<widget name='ListWidget' "
+"padding='5,0,0,0' "
+"/>"
+"<widget name='PopUpWidget' "
+"padding='7,5,0,0' "
+"/>"
+"<widget name='EditTextWidget' "
+"padding='5,5,0,0' "
+"/>"
+"<widget name='Console' "
+"padding='7,5,5,5' "
+"/>"
+"<widget name='Scrollbar' "
+"size='9,0' "
+"/>"
+"<widget name='TabWidget.Tab' "
+"size='40,16' "
+"padding='0,0,2,0' "
+"/>"
+"<widget name='TabWidget.Body' "
+"padding='0,0,0,0' "
+"/>"
+"<widget name='TabWidget.NavButton' "
+"size='32,14' "
+"padding='0,0,1,0' "
+"/>"
+"<widget name='EditRecordLabel' "
+"size='60,Globals.Line.Height' "
+"/>"
+"<widget name='EditRecord' "
+"size='120,15' "
+"/>"
+"</globals>"
+"<dialog name='Launcher' overlays='screen'>"
+"<layout type='vertical' align='center' padding='6,6,2,2'>"
+"<widget name='Version' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<layout type='horizontal' spacing='5' padding='0,0,0,0'>"
+"<widget name='SearchDesc' "
+"width='50' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='Search' "
+"width='150' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='SearchClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"<space />"
+"</layout>"
+"<widget name='GameList'/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
+"<widget name='LoadGameButton' "
+"height='12' "
+"/>"
+"<widget name='AddGameButton' "
+"height='12' "
+"/>"
+"<widget name='EditGameButton' "
+"height='12' "
+"/>"
+"<widget name='RemoveGameButton' "
+"height='12' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
+"<widget name='QuitButton' "
+"height='12' "
+"/>"
+"<widget name='AboutButton' "
+"height='12' "
+"/>"
+"<widget name='OptionsButton' "
+"height='12' "
+"/>"
+"<widget name='StartButton' "
+"height='12' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='Browser' overlays='screen' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,0,4'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Path' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='List'/>"
+"<layout type='vertical' padding='0,0,8,0'>"
+"<widget name='Hidden' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='Up' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Choose' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FileBrowser' overlays='screen' inset='16' shading='dim'>"
+"<layout type='vertical' padding='16,16,16,16'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Filename' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='5' />"
+"<widget name='List'/>"
+"<layout type='vertical' padding='0,0,16,0'>"
+"<layout type='horizontal' padding='0,0,0,0'>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Choose' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions' overlays='screen' inset='16' shading='dim'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget'/>"
+"<layout type='horizontal' padding='8,8,8,8'>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Apply' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Control' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<widget name='grOnScreenCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grTouchpadCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grSwapMenuAndBackBtnsCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10'>"
+"<widget name='grKbdMouseSpeedDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grKbdMouseSpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='grKbdMouseSpeedLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grJoystickDeadzoneDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grJoystickDeadzoneSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='grJoystickDeadzoneLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_KeyMapper' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Graphics' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Graphics_Container' overlays='GlobalOptions_Graphics.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='grModePopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grModePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='grRenderPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grRenderPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='grStretchModePopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grStretchModePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<widget name='grAspectCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grFullscreenCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='grFilteringCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Shader' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='grShaderPopUpDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='grShaderPopUp' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Audio' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='auMidiPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auMidiPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='auOPLPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auOPLPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='3' align='center'>"
+"<widget name='subToggleDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subToggleSpeechOnly' "
+"type='Radiobutton' "
+"/>"
+"<widget name='subToggleSubOnly' "
+"type='Radiobutton' "
+"/>"
+"<widget name='subToggleSubBoth' "
+"type='Radiobutton' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='subSubtitleSpeedDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subSubtitleSpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='subSubtitleSpeedLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Volume' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='vcMusicText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcMusicSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcMusicLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='vcSfxText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSfxSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSfxLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='vcSpeechText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSpeechSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSpeechLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<space size='110' />"
+"<widget name='vcMuteCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_MIDI' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='6'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='auPrefGmPopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auPrefGmPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
+"<widget name='mcFontButton' "
+"type='Button' "
+"/>"
+"<widget name='mcFontPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='mcFontClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<widget name='mcMixedCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='mcMidiGainText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='mcMidiGainSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='mcMidiGainLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<widget name='mcFluidSynthSettings' "
+"width='150' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_MT32' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='auPrefMt32PopupDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='auPrefMt32Popup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<widget name='mcMt32Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='mcGSCheckbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Paths' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
+"<widget name='SaveButton' "
+"type='Button' "
+"/>"
+"<widget name='SavePath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='SavePathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
+"<widget name='ThemeButton' "
+"type='Button' "
+"/>"
+"<widget name='ThemePath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ThemePathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
+"<widget name='ExtraButton' "
+"type='Button' "
+"/>"
+"<widget name='ExtraPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ExtraPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
+"<widget name='PluginsButton' "
+"type='Button' "
+"/>"
+"<widget name='PluginsPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='PluginsPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Misc' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Misc_Container' overlays='GlobalOptions_Misc.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16'>"
+"<widget name='ThemeButton' "
+"type='Button' "
+"/>"
+"<widget name='CurTheme' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='RendererPopupDesc' "
+"width='80' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='RendererPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='AutosavePeriodPopupDesc' "
+"width='80' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='AutosavePeriodPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='GuiLanguagePopupDesc' "
+"width='80' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='GuiLanguagePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='GuiLanguageUseGameLanguage' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='UseSystemDialogs' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='UpdatesPopupDesc' "
+"width='80' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='UpdatesPopup' "
+"type='PopUp' "
+"/>"
+"<widget name='UpdatesCheckManuallyButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"<widget name='KeysButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_Container' overlays='GlobalOptions_Cloud.Container'>"
+"<layout type='vertical' padding='10,13,10,10' spacing='8'>"
+"<layout type='horizontal' padding='-10,1,0,0' spacing='6'>"
+"<layout type='vertical' padding='0,0,1,0' spacing='1'>"
+"<widget name='StoragePopupDesc' "
+"width='100' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,0,0' spacing='1'>"
+"<widget name='StoragePopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
+"<widget name='StorageDisabledHint' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='StorageEnableButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
+"<widget name='StorageUsernameDesc' "
+"type='CloudTabLabel' "
+"/>"
+"<widget name='StorageUsernameLabel' "
+"type='CloudTabLabelValue' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
+"<widget name='StorageUsedSpaceDesc' "
+"type='CloudTabLabel' "
+"/>"
+"<widget name='StorageUsedSpaceLabel' "
+"type='CloudTabLabelValue' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
+"<widget name='StorageLastSyncDesc' "
+"type='CloudTabLabel' "
+"/>"
+"<widget name='StorageLastSyncLabel' "
+"type='CloudTabLabelValue' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,5,0' spacing='1'>"
+"<widget name='SyncSavesButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-3,0' spacing='6' align='center'>"
+"<widget name='StorageSyncHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
+"<widget name='StorageDownloadHint' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='DownloadButton' "
+"type='WideButton' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
+"<widget name='StorageDisconnectHint' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='DisconnectButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
+"<widget name='StorageWizardNotConnectedHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-3,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,1,0' spacing='2'>"
+"<widget name='StorageWizardOpenLinkHint' "
+"width='90' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,1,0' spacing='4'>"
+"<widget name='StorageWizardLink' "
+"width='150' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='6' align='center'>"
+"<widget name='StorageWizardCodeHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
+"<widget name='StorageWizardCodeBox' "
+"width='72' "
+"height='16' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
+"<widget name='StorageWizardPasteButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='6' align='center'>"
+"<widget name='StorageWizardConnectButton' "
+"type='Button' "
+"/>"
+"<widget name='StorageWizardConnectionStatusHint' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Network' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='RunServerButton' "
+"type='Button' "
+"/>"
+"<widget name='ServerInfoLabel' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
+"<widget name='RootPathButton' "
+"type='Button' "
+"/>"
+"<widget name='RootPath' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='RootPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='ServerPortDesc' "
+"width='80' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='ServerPortEditText' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='ServerPortClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,0,0' spacing='2' align='center'>"
+"<widget name='FeatureDescriptionLine1' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='FeatureDescriptionLine2' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_DownloadDialog' overlays='Dialog.GlobalOptions'>"
+"<layout type='vertical' padding='8,8,8,4' spacing='8'>"
+"<widget name='RemoteDirectory' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='LocalDirectory' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ProgressBar' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='1'/>"
+"<widget name='PercentText' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<widget name='DownloadSize' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='DownloadSpeed' "
+"height='Globals.Line.Height' "
+"/>"
+"<space/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6'>"
+"<widget name='MainButton' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='CloseButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_ConnectionWizard' overlays='Dialog.GlobalOptions'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Cloud_ConnectionWizard_Container' overlays='GlobalOptions_Cloud_ConnectionWizard.Container'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='4'>"
+"<widget name='Headline' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='2' />"
+"<widget name='NavigateLine' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='URLLine' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='2' />"
+"<widget name='ReturnLine1' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ReturnLine2' "
+"height='Globals.Line.Height' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='CodeBox1' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='CodeBox2' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='CodeBox3' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='CodeBox4' "
+"width='60' "
+"height='16' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='CodeBox5' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='CodeBox6' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='CodeBox7' "
+"width='60' "
+"height='16' "
+"/>"
+"<widget name='CodeBox8' "
+"width='60' "
+"height='16' "
+"/>"
+"</layout>"
+"<widget name='MessageLine' "
+"height='Globals.Line.Height' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='OpenUrlButton' "
+"type='Button' "
+"/>"
+"<widget name='PasteCodeButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
+"<widget name='CancelButton' "
+"type='Button' "
+"/>"
+"<space />"
+"<widget name='ConnectButton' "
+"type='Button' "
+"/>"
+"</layout>"
+"<space size='6' />"
+"<widget name='Picture' width='1' height='1' />"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalOptions_Accessibility' overlays='Dialog.GlobalOptions.TabWidget'>"
+"<layout type='vertical' padding='16,16,16,16' spacing='16'>"
+"<widget name='TTSCheckbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='TTSVoiceSelection' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='Action' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='List'/>"
+"<widget name='Mapping' "
+"height='Globals.Line.Height' "
+"/>"
+"<space size='Globals.Line.Height'/>"
+"<layout type='horizontal'>"
+"<widget name='Map' "
+"type='Button' "
+"/>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions' overlays='screen' inset='16' shading='dim'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='16'>"
+"<widget name='TabWidget' type='TabWidget'/>"
+"<layout type='horizontal' padding='8,8,8,8'>"
+"<space/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_KeyMapper' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Achievements' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Graphics' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Graphics_Container' overlays='GameOptions_Graphics.Container'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Graphics_Container' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Shader' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Shader' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Audio' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Audio' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_MIDI' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_MIDI' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_MT32' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_MT32' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Volume' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<import layout='Dialog.GlobalOptions_Volume' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Game' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='Id' "
+"width='35' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='Domain' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='Name' "
+"width='35' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='Desc' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<space size='8'/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='LangPopupDesc' "
+"width='60' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='LangPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='PlatformPopupDesc' "
+"width='60' "
+"height='Globals.Line.Height' "
+"textalign='end' "
+"/>"
+"<widget name='PlatformPopup' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Paths' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
+"<widget name='Savepath' "
+"type='Button' "
+"/>"
+"<widget name='SavepathText' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='SavePathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
+"<widget name='Extrapath' "
+"type='Button' "
+"/>"
+"<widget name='ExtrapathText' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='ExtraPathClearButton' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
+"<widget name='Gamepath' "
+"type='Button' "
+"/>"
+"<widget name='GamepathText' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Engine' overlays='Dialog.GameOptions.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GameOptions_Engine_Container' overlays='GameOptions_Engine.Container'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<widget name='customOption1Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption2Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption3Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption4Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption5Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption6Checkbox' "
+"type='Checkbox' "
+"/>"
+"<widget name='customOption7Checkbox' "
+"type='Checkbox' "
+"/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalMenu' overlays='screen_center'>"
+"<layout type='vertical' padding='2,2,2,6' align='center' spacing='0'>"
+"<widget name='Title' "
+"width='160' "
+"height='12' "
+"/>"
+"<widget name='Version' "
+"width='160' "
+"height='14' "
+"/>"
+"<layout type='vertical' padding='0,0,3,0' align='center' spacing='6'>"
+"<widget name='Load' "
+"width='120' "
+"height='12' "
+"/>"
+"<widget name='Save' "
+"width='120' "
+"height='12' "
+"/>"
+"<space size='1'/>"
+"<widget name='Options' "
+"width='120' "
+"height='12' "
+"/>"
+"<widget name='Help' "
+"width='120' "
+"height='12' "
+"/>"
+"<widget name='About' "
+"width='120' "
+"height='12' "
+"/>"
+"<space size='1'/>"
+"<widget name='Resume' "
+"width='120' "
+"height='12' "
+"/>"
+"<widget name='ReturnToLauncher' "
+"width='120' "
+"height='12' "
+"/>"
+"<widget name='Quit' "
+"width='120' "
+"height='12' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig' overlays='screen_center' size='300,220' inset='5' >"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget' "
+"/>"
+"<layout type='horizontal' padding='8,8,0,8'>"
+"<space />"
+"<widget name='Keys' "
+"type='Button' "
+"/>"
+"<space />"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Engine' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Engine_Container' overlays='Dialog.GlobalConfig_Engine.Container'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<import layout='Dialog.GameOptions_Engine_Container' />"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Audio' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='vcMusicText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcMusicSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcMusicLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='vcSfxText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSfxSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSfxLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='vcSpeechText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='vcSpeechSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='vcSpeechLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<space size='110' />"
+"<widget name='vcMuteCheckbox' "
+"type='Checkbox' "
+"width='80' "
+"/>"
+"</layout>"
+"<layout type='vertical' padding='0,0,0,0' spacing='1' align='center'>"
+"<widget name='subToggleDesc' "
+"type='OptionsLabel' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='subToggleSpeechOnly' "
+"type='Radiobutton' "
+"width='90' "
+"/>"
+"<widget name='subToggleSubOnly' "
+"type='Radiobutton' "
+"width='90' "
+"/>"
+"<widget name='subToggleSubBoth' "
+"type='Radiobutton' "
+"width='90' "
+"/>"
+"</layout>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
+"<widget name='subSubtitleSpeedDesc' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='subSubtitleSpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='subSubtitleSpeedLabel' "
+"type='SmallLabel' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_KeyMapper' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='GlobalConfig_Achievements' overlays='Dialog.GlobalConfig.TabWidget'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='Container'/>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings' overlays='GlobalOptions' shading='dim'>"
+"<layout type='vertical' padding='0,0,0,0'>"
+"<widget name='TabWidget' type='TabWidget'/>"
+"<layout type='horizontal' padding='8,8,8,8'>"
+"<space/>"
+"<widget name='ResetSettings' "
+"type='Button' "
+"/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings_Chorus' overlays='Dialog.FluidSynthSettings.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='VoiceCountText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='VoiceCountSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='VoiceCountLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='LevelText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='LevelSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='LevelLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='SpeedText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='SpeedSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='SpeedLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='DepthText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='DepthSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='DepthLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='WaveFormTypeText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='WaveFormType' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings_Reverb' overlays='Dialog.FluidSynthSettings.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<widget name='EnableTabCheckbox' "
+"type='Checkbox' "
+"/>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='RoomSizeText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='RoomSizeSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='RoomSizeLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='DampingText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='DampingSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='DampingLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='WidthText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='WidthSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='WidthLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='LevelText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='LevelSlider' "
+"type='Slider' "
+"rtl='no' "
+"/>"
+"<widget name='LevelLabel' "
+"width='32' "
+"height='Globals.Line.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='FluidSynthSettings_Misc' overlays='Dialog.FluidSynthSettings.TabWidget'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
+"<widget name='InterpolationText' "
+"type='OptionsLabel' "
+"/>"
+"<widget name='Interpolation' "
+"type='PopUp' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='SaveLoadChooser' overlays='screen' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='Title' height='Globals.Line.Height'/>"
+"<widget name='List' />"
+"<layout type='horizontal' padding='0,0,16,0'>"
+"<widget name='ListSwitch' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"<widget name='GridSwitch' "
+"height='Globals.Line.Height' "
+"width='Globals.Line.Height' "
+"/>"
+"<space/>"
+"<widget name='Delete' "
+"type='Button' "
+"/>"
+"<space size='16'/>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Choose' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='SaveLoadCloudSyncProgress' overlays='screen_center' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
+"<widget name='TitleText' "
+"width='240' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<space size='1'/>"
+"<widget name='ProgressBar' "
+"width='240' "
+"height='Globals.Button.Height' "
+"/>"
+"<space size='1'/>"
+"<widget name='PercentText' "
+"width='240' "
+"height='Globals.Line.Height' "
+"textalign='center' "
+"/>"
+"<space size='1'/>"
+"<layout type='horizontal' padding='0,0,0,0' align='center' spacing='10'>"
+"<widget name='Cancel' "
+"width='100' "
+"height='Globals.Button.Height' "
+"/>"
+"<widget name='Background' "
+"width='100' "
+"height='Globals.Button.Height' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='SavenameDialog' overlays='screen_center'>"
+"<layout type='vertical' padding='8,8,8,8'>"
+"<widget name='DescriptionText' "
+"width='180' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='Description' "
+"height='19' "
+"/>"
+"<layout type='horizontal' padding='0,0,16,0'>"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Ok' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='RecorderDialog' overlays='screen' inset='8' shading='dim'>"
+"<layout type='vertical' padding='8,8,8,4' align='center'>"
+"<widget name='Title' "
+"height='Globals.Line.Height' "
+"/>"
+"<widget name='List' />"
+"<layout type='horizontal' padding='0,0,0,0' spacing='2'>"
+"<widget name='Edit' "
+"type='Button' "
+"/>"
+"<space />"
+"<widget name='Record' "
+"type='Button' "
+"/>"
+"</layout>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='2'>"
+"<widget name='Delete' "
+"type='Button' "
+"/>"
+"<space />"
+"<widget name='Cancel' "
+"type='Button' "
+"/>"
+"<widget name='Playback' "
+"type='Button' "
+"/>"
+"</layout>"
+"</layout>"
+"</dialog>"
+"<dialog name='OnScreenDialog' overlays='screen_center'>"
+"<layout type='horizontal' spacing='5' padding='3,2,3,2' align='center'>"
+"<widget name='StopButton' "
+"width='16' "
+"height='16' "
+"/>"
+"<widget name='EditButton' "
+"width='16' "
+"height='16' "
+"/>"
+"<widget name='SwitchModeButton' "
+"width='16' "
+"height='16' "




More information about the Scummvm-git-logs mailing list