1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/host/TabSysLibs.cpp
gho tik b090498d29 v2_02_47_src
Former-commit-id: 38a199acb7537854a60dfd48bf3af78943eb775d
2017-03-06 11:38:33 -05:00

47 lines
1.2 KiB
C++

// TabGDI.cpp : implementation file
//
#include "stdafx.h"
#include "TargetDlg.h"
#include "TabSysLibs.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTabLogs dialog
CTabSysLibs::CTabSysLibs(CWnd* pParent /*=NULL*/)
: CDialog(CTabSysLibs::IDD, pParent)
{
//{{AFX_DATA_INIT(CTabSysLibs)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CTabSysLibs::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
CTargetDlg *cTarget = ((CTargetDlg *)(this->GetParent()->GetParent()));
// GDI
DDX_Radio(pDX, IDC_GDINONE, cTarget->m_DCEmulationMode);
DDX_Check(pDX, IDC_FIXTEXTOUT, cTarget->m_FixTextOut);
// OpenGL
DDX_Check(pDX, IDC_FORCEHOOKOPENGL, cTarget->m_ForceHookOpenGL);
DDX_Text(pDX, IDC_OPENGLLIB, cTarget->m_OpenGLLib);
}
BEGIN_MESSAGE_MAP(CTabSysLibs, CDialog)
//{{AFX_MSG_MAP(CTabLogs)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTabLogs message handlers