mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#include "stdafx.h"
|
|
#include "hammer.h"
|
|
#include "MDIClientWnd.h"
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
#include <tier0/memdbgon.h>
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CMDIClientWnd, CWnd)
|
|
//{{AFX_MSG_MAP(CMDIClientWnd)
|
|
ON_WM_ERASEBKGND()
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Constructor.
|
|
//-----------------------------------------------------------------------------
|
|
CMDIClientWnd::CMDIClientWnd()
|
|
{
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Destructor.
|
|
//-----------------------------------------------------------------------------
|
|
CMDIClientWnd::~CMDIClientWnd()
|
|
{
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Makes our background color mesh with the splash screen for maximum effect.
|
|
//-----------------------------------------------------------------------------
|
|
BOOL CMDIClientWnd::OnEraseBkgnd(CDC *pDC)
|
|
{
|
|
// Set brush to desired background color
|
|
CBrush backBrush(RGB(141, 136, 130)); // This color blends with the splash image!
|
|
|
|
// Save old brush
|
|
CBrush *pOldBrush = pDC->SelectObject(&backBrush);
|
|
|
|
CRect rect;
|
|
pDC->GetClipBox(&rect); // Erase the area needed
|
|
|
|
pDC->PatBlt(rect.left, rect.top, rect.Width(), rect.Height(), PATCOPY);
|
|
|
|
pDC->SelectObject(pOldBrush);
|
|
return TRUE;
|
|
}
|
|
|