2008-09-18 03:15:49 +00:00
|
|
|
#include "../../User Interface.h"
|
|
|
|
#include "Settings Page.h"
|
|
|
|
#include "Settings Page - Game - Status.h"
|
|
|
|
|
|
|
|
CGameStatusPage::CGameStatusPage (HWND hParent, const RECT & rcDispay )
|
|
|
|
{
|
|
|
|
Create(hParent);
|
|
|
|
if (m_hWnd == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SetWindowPos(HWND_TOP,&rcDispay,SWP_HIDEWINDOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::ShowPage()
|
|
|
|
{
|
|
|
|
ShowWindow(SW_SHOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::HidePage()
|
|
|
|
{
|
|
|
|
ShowWindow(SW_HIDE);
|
2008-11-14 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::ApplySettings( bool UpdateScreen )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CGameStatusPage::EnableReset ( void )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameStatusPage::ResetPage()
|
|
|
|
{
|
|
|
|
Notify().BreakPoint(__FILE__,__LINE__);
|
2008-09-18 03:15:49 +00:00
|
|
|
}
|