mirror of
https://github.com/DxWnd/DxWnd.reloaded
synced 2024-12-30 09:25:35 +01:00
66 lines
2.3 KiB
C++
66 lines
2.3 KiB
C++
// TabDebug.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "TargetDlg.h"
|
|
#include "TabDebug.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTabCompat dialog
|
|
|
|
CTabDebug::CTabDebug(CWnd* pParent /*=NULL*/)
|
|
// : CTargetDlg(pParent)
|
|
: CDialog(CTabDebug::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(CTabDebug)
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
void CTabDebug::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
CTargetDlg *cTarget = ((CTargetDlg *)(this->GetParent()->GetParent()));
|
|
DDX_Check(pDX, IDC_ASSERT, cTarget->m_AssertDialog);
|
|
DDX_Check(pDX, IDC_MARKBLIT, cTarget->m_MarkBlit);
|
|
DDX_Check(pDX, IDC_MARKLOCK, cTarget->m_MarkLock);
|
|
DDX_Check(pDX, IDC_MARKWING32, cTarget->m_MarkWinG32);
|
|
DDX_Check(pDX, IDC_MARKGDI32, cTarget->m_MarkGDI32);
|
|
DDX_Check(pDX, IDC_DUMPDIBSECTION, cTarget->m_DumpDIBSection);
|
|
DDX_Check(pDX, IDC_DUMPDEVCONTEXT, cTarget->m_DumpDevContext);
|
|
DDX_Check(pDX, IDC_NOBLT, cTarget->m_NoBlt);
|
|
DDX_Check(pDX, IDC_FASTBLT, cTarget->m_FastBlt);
|
|
DDX_Check(pDX, IDC_GDICOLORCONV, cTarget->m_GDIColorConv);
|
|
DDX_Check(pDX, IDC_ANALYTICMODE, cTarget->m_AnalyticMode);
|
|
DDX_Check(pDX, IDC_SURFACEWARN, cTarget->m_SurfaceWarn);
|
|
DDX_Check(pDX, IDC_CAPMASK, cTarget->m_CapMask);
|
|
DDX_Check(pDX, IDC_NOWINDOWHOOKS, cTarget->m_NoWindowHooks);
|
|
DDX_Check(pDX, IDC_NODDRAWBLT, cTarget->m_NoDDRAWBlt);
|
|
DDX_Check(pDX, IDC_NODDRAWFLIP, cTarget->m_NoDDRAWFlip);
|
|
DDX_Check(pDX, IDC_NOGDIBLT, cTarget->m_NoGDIBlt);
|
|
DDX_Check(pDX, IDC_ZBUFFERALWAYS, cTarget->m_ZBufferAlways);
|
|
DDX_Check(pDX, IDC_HOTPATCHALWAYS, cTarget->m_HotPatchAlways);
|
|
DDX_Check(pDX, IDC_FREEZEINJECTEDSON, cTarget->m_FreezeInjectedSon);
|
|
DDX_Check(pDX, IDC_STRESSRESOURCES, cTarget->m_StressResources);
|
|
DDX_Check(pDX, IDC_FULLRECTBLT, cTarget->m_FullRectBlt);
|
|
DDX_Check(pDX, IDC_CENTERTOWIN, cTarget->m_CenterToWin);
|
|
// DDX_Check(pDX, IDC_NOSYSTEMMEMORY, cTarget->m_NoSystemMemory);
|
|
}
|
|
|
|
BEGIN_MESSAGE_MAP(CTabDebug, CDialog)
|
|
//{{AFX_MSG_MAP(CTabCompat)
|
|
// NOTE: the ClassWizard will add message map macros here
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTabCompat message handlers
|
|
|
|
|