1 | /*
|
---|
2 | -----------------------------------------------------------------------------
|
---|
3 | This source file is part of OGRE
|
---|
4 | (Object-oriented Graphics Rendering Engine)
|
---|
5 | For the latest info, see http://www.ogre3d.org/
|
---|
6 |
|
---|
7 | Copyright (c) 2000-2005 The OGRE Team
|
---|
8 | Also see acknowledgements in Readme.html
|
---|
9 |
|
---|
10 | This program is free software; you can redistribute it and/or modify it under
|
---|
11 | the terms of the GNU Lesser General Public License as published by the Free Software
|
---|
12 | Foundation; either version 2 of the License, or (at your option) any later
|
---|
13 | version.
|
---|
14 |
|
---|
15 | This program is distributed in the hope that it will be useful, but WITHOUT
|
---|
16 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
17 | FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU Lesser General Public License along with
|
---|
20 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
---|
21 | Place - Suite 330, Boston, MA 02111-1307, USA, or go to
|
---|
22 | http://www.gnu.org/copyleft/lesser.txt.
|
---|
23 | -----------------------------------------------------------------------------
|
---|
24 | */
|
---|
25 | #include "OgreWin32ErrorDialog.h"
|
---|
26 | #include "resource.h"
|
---|
27 |
|
---|
28 | namespace {
|
---|
29 | Ogre::Win32ErrorDialog* dlg; // This is a pointer to instance, since this is a static member
|
---|
30 | }
|
---|
31 |
|
---|
32 | namespace Ogre
|
---|
33 | {
|
---|
34 | Win32ErrorDialog::Win32ErrorDialog(HINSTANCE hInst)
|
---|
35 | {
|
---|
36 | mHInstance = hInst;
|
---|
37 | }
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | #if OGRE_ARCHITECTURE_64 == OGRE_ARCH_TYPE
|
---|
42 | INT_PTR CALLBACK Win32ErrorDialog::DlgProc(HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
|
---|
43 | #else
|
---|
44 | BOOL CALLBACK Win32ErrorDialog::DlgProc(HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
|
---|
45 | #endif
|
---|
46 | {
|
---|
47 | HWND hwndDlgItem;
|
---|
48 |
|
---|
49 | switch (iMsg)
|
---|
50 | {
|
---|
51 |
|
---|
52 | case WM_INITDIALOG:
|
---|
53 | // Center myself
|
---|
54 | int x, y, screenWidth, screenHeight;
|
---|
55 | RECT rcDlg;
|
---|
56 | GetWindowRect(hDlg, &rcDlg);
|
---|
57 | screenWidth = GetSystemMetrics(SM_CXFULLSCREEN);
|
---|
58 | screenHeight = GetSystemMetrics(SM_CYFULLSCREEN);
|
---|
59 |
|
---|
60 | x = (screenWidth / 2) - ((rcDlg.right - rcDlg.left) / 2);
|
---|
61 | y = (screenHeight / 2) - ((rcDlg.bottom - rcDlg.top) / 2);
|
---|
62 |
|
---|
63 | MoveWindow(hDlg, x, y, (rcDlg.right - rcDlg.left),
|
---|
64 | (rcDlg.bottom - rcDlg.top), TRUE);
|
---|
65 |
|
---|
66 | // Fill in details of error
|
---|
67 | hwndDlgItem = GetDlgItem(hDlg, IDC_ERRMSG);
|
---|
68 | SetWindowText(hwndDlgItem, dlg->mErrorMsg.c_str());
|
---|
69 |
|
---|
70 | return TRUE;
|
---|
71 | case WM_COMMAND:
|
---|
72 | switch (LOWORD(wParam))
|
---|
73 | {
|
---|
74 | case IDOK:
|
---|
75 |
|
---|
76 | EndDialog(hDlg, TRUE);
|
---|
77 | return TRUE;
|
---|
78 | }
|
---|
79 | }
|
---|
80 |
|
---|
81 | return FALSE;
|
---|
82 |
|
---|
83 | }
|
---|
84 |
|
---|
85 |
|
---|
86 | void Win32ErrorDialog::display(const String& errorMessage, String logName)
|
---|
87 | {
|
---|
88 | // Display dialog
|
---|
89 | // Don't return to caller until dialog dismissed
|
---|
90 | dlg = this;
|
---|
91 | mErrorMsg = errorMessage;
|
---|
92 | DialogBox(mHInstance, MAKEINTRESOURCE(IDD_DLG_ERROR), NULL, DlgProc);
|
---|
93 |
|
---|
94 |
|
---|
95 | }
|
---|
96 | }
|
---|