summaryrefslogtreecommitdiff
path: root/src/os/windows
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-12-07 17:13:28 +0000
committerrubidium <rubidium@openttd.org>2009-12-07 17:13:28 +0000
commit36c58649f8a9215d19056ed6a5a6858cafe8e33a (patch)
tree6b89c85da1d6c17fc0ef6cc28615cb7b545059ee /src/os/windows
parent9a656dbd3231c04552cd3d3ba7557c0589e376f4 (diff)
downloadopenttd-36c58649f8a9215d19056ed6a5a6858cafe8e33a.tar.xz
(svn r18424) -Fix [FS#3327]: [Windows] the help window would be too large in some cases
Diffstat (limited to 'src/os/windows')
-rw-r--r--src/os/windows/ottdres.rc.in11
-rw-r--r--src/os/windows/win32.cpp63
2 files changed, 67 insertions, 7 deletions
diff --git a/src/os/windows/ottdres.rc.in b/src/os/windows/ottdres.rc.in
index 9a79e1907..b67270454 100644
--- a/src/os/windows/ottdres.rc.in
+++ b/src/os/windows/ottdres.rc.in
@@ -61,6 +61,17 @@ BEGIN
END
+101 DIALOG DISCARDABLE 0, 0, 600, 400
+STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
+STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "OpenTTD command line help"
+FONT 8, "MS Sans Serif"
+BEGIN
+ DEFPUSHBUTTON "&OK",12,274,378,50,14,BS_CENTER
+ EDITTEXT 11,7,6,583,365,ES_MULTILINE | ES_READONLY | WS_VSCROLL | WS_HSCROLL
+END
+
+
#ifndef _MAC
/////////////////////////////////////////////////////////////////////////////
//
diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp
index 4ff4e3a2a..4374307f9 100644
--- a/src/os/windows/win32.cpp
+++ b/src/os/windows/win32.cpp
@@ -311,23 +311,72 @@ void CreateConsole()
#endif
}
+/** Temporary pointer to get the help message to the window */
+static const char *_help_msg;
+
+/** Callback function to handle the window */
+static INT_PTR CALLBACK HelpDialogFunc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam)
+{
+ switch (msg) {
+ case WM_INITDIALOG: {
+ char help_msg[8192];
+ const char *p = _help_msg;
+ char *q = help_msg;
+ while (q != lastof(help_msg) && *p != '\0') {
+ if (*p == '\n') {
+ *q++ = '\r';
+ if (q == lastof(help_msg)) {
+ q[-1] = '\0';
+ break;
+ }
+ }
+ *q++ = *p++;
+ }
+ *q = '\0';
+#if defined(UNICODE)
+ /* We need to put the text in a seperate buffer because the default
+ * buffer in MB_TO_WIDE might not be large enough (512 chars) */
+ wchar_t help_msgW[8192];
+#endif
+ SetDlgItemText(wnd, 11, MB_TO_WIDE_BUFFER(help_msg, help_msgW, lengthof(help_msgW)));
+ SendDlgItemMessage(wnd, 11, WM_SETFONT, (WPARAM)GetStockObject(ANSI_FIXED_FONT), FALSE);
+ } return TRUE;
+
+ case WM_COMMAND:
+ if (wParam == 12) ExitProcess(0);
+ return TRUE;
+ case WM_CLOSE:
+ ExitProcess(0);
+ }
+
+ return FALSE;
+}
+
void ShowInfo(const char *str)
{
if (_has_console) {
fprintf(stderr, "%s\n", str);
} else {
bool old;
-#if defined(UNICODE)
- /* We need to put the text in a seperate buffer because the default
- * buffer in MB_TO_WIDE might not be large enough (512 chars) */
- wchar_t help_msgW[8192];
-#endif
ReleaseCapture();
_left_button_clicked = _left_button_down = false;
old = MyShowCursor(true);
- if (MessageBox(GetActiveWindow(), MB_TO_WIDE_BUFFER(str, help_msgW, lengthof(help_msgW)), _T("OpenTTD"), MB_ICONINFORMATION | MB_OKCANCEL) == IDCANCEL) {
- CreateConsole();
+ if (strlen(str) > 2048) {
+ /* The minimum length of the help message is 2048. Other messages sent via
+ * ShowInfo are much shorter, or so long they need this way of displaying
+ * them anyway. */
+ _help_msg = str;
+ DialogBox(GetModuleHandle(NULL), MAKEINTRESOURCE(101), NULL, HelpDialogFunc);
+ } else {
+#if defined(UNICODE)
+ /* We need to put the text in a seperate buffer because the default
+ * buffer in MB_TO_WIDE might not be large enough (512 chars) */
+ wchar_t help_msgW[8192];
+#endif
+ if (MessageBox(GetActiveWindow(), MB_TO_WIDE_BUFFER(str, help_msgW, lengthof(help_msgW)), _T("OpenTTD"), MB_ICONINFORMATION | MB_OKCANCEL) == IDCANCEL) {
+ CreateConsole();
+ }
}
MyShowCursor(old);
}