Files
itgmania212121/stepmania/src/arch/LoadingWindow/LoadingWindow_Win32.cpp
T

87 lines
1.9 KiB
C++
Raw Normal View History

2003-02-16 04:02:21 +00:00
#include "../../global.h"
#include "../../RageUtil.h"
#include "LoadingWindow_Win32.h"
#include "../../resource.h"
#include <windows.h>
2003-09-05 08:22:06 +00:00
HBITMAP g_hBitmap = NULL;
BOOL CALLBACK LoadingWindow_Win32::WndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
{
2003-09-05 08:22:06 +00:00
AppInstance handle;
switch( msg )
{
case WM_INITDIALOG:
g_hBitmap =
(HBITMAP)LoadImage(
handle.Get(),
"Data\\splash.bmp",
IMAGE_BITMAP,
0, 0,
LR_LOADFROMFILE );
2003-09-13 19:09:01 +00:00
SendMessage(
GetDlgItem(hWnd,IDC_SPLASH),
STM_SETIMAGE,
(WPARAM) IMAGE_BITMAP,
(LPARAM) (HANDLE) g_hBitmap );
2003-09-05 08:22:06 +00:00
break;
2003-09-13 19:09:01 +00:00
2003-09-05 08:22:06 +00:00
case WM_DESTROY:
DeleteObject( g_hBitmap );
g_hBitmap = NULL;
break;
}
return FALSE;
}
LoadingWindow_Win32::LoadingWindow_Win32()
{
2002-12-16 02:08:58 +00:00
hwnd = CreateDialog(handle.Get(), MAKEINTRESOURCE(IDD_LOADING_DIALOG), NULL, WndProc);
SetText("Initializing hardware...");
Paint();
}
LoadingWindow_Win32::~LoadingWindow_Win32()
{
if(hwnd)
DestroyWindow( hwnd );
}
void LoadingWindow_Win32::Paint()
{
SendMessage( hwnd, WM_PAINT, 0, 0 );
/* Process all queued messages since the last paint. This allows the window to
* come back if it loses focus during load. */
MSG msg;
while( PeekMessage( &msg, hwnd, 0, 0, PM_NOREMOVE ) ) {
GetMessage(&msg, hwnd, 0, 0 );
DispatchMessage( &msg );
}
}
void LoadingWindow_Win32::SetText(CString str)
{
CStringArray asMessageLines;
split( str, "\n", asMessageLines, false );
SendDlgItemMessage( hwnd, IDC_STATIC_MESSAGE1, WM_SETTEXT, 0,
(LPARAM)(LPCTSTR)asMessageLines[0]);
SendDlgItemMessage( hwnd, IDC_STATIC_MESSAGE2, WM_SETTEXT, 0,
(LPARAM)(LPCTSTR)(asMessageLines.size()>=2 ? asMessageLines[1] : ""));
SendDlgItemMessage( hwnd, IDC_STATIC_MESSAGE3, WM_SETTEXT, 0,
(LPARAM)(LPCTSTR)(asMessageLines.size()>=3 ? asMessageLines[2] : ""));
}
/*
* Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
*
* Chris Danford
* Glenn Maynard
*/