Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

72 lines
1.6 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
// DynamicDialogWnd.cpp : implementation file
//
#include "stdafx.h"
#include "hammer.h"
#include "DynamicDialogWnd.h"
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
/////////////////////////////////////////////////////////////////////////////
// CDynamicDialogWnd
CDynamicDialogWnd::CDynamicDialogWnd(CWnd *pParent)
{
m_pDialog = NULL;
Create(NULL, "DynamicDialogWnd", WS_BORDER | WS_CAPTION | WS_CHILD,
CRect(0, 0, 50, 50), pParent, 1);
SetWindowPos(&wndTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
}
CDynamicDialogWnd::~CDynamicDialogWnd()
{
SetDialogClass(0, NULL);
}
BEGIN_MESSAGE_MAP(CDynamicDialogWnd, CWnd)
//{{AFX_MSG_MAP(CDynamicDialogWnd)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDynamicDialogWnd message handlers
void CDynamicDialogWnd::SetDialogClass(UINT nID, CDialog *pDialog)
{
delete m_pDialog;
if(!pDialog)
return;
m_pDialog = pDialog;
CRect rWindow;
GetWindowRect(&rWindow);
SetRedraw(FALSE);
/*
m_pDialog->Create(nID, this);
// resize this window
CRect rDialog;
m_pDialog->GetWindowRect(&rDialog);
MoveWindow(rWindow.left, rWindow.top, rDialog.Width(), rDialog.Height());
*/
MoveWindow(0, 0, 50, 50);
SetRedraw(TRUE);
Invalidate();
UpdateWindow();
}