mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-19 19:33:03 +00:00
0139878dd7
Here are a few changes to make 64-bit build possible. The changes are mainly to use windows api in the correct way that works for both 32-bit and 64-bit builds.
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "PropertySheetDefs.h"
|
|
#include "IPropertySheetPage.h"
|
|
#include "Common.h"
|
|
|
|
class CPropertySheetHelper;
|
|
|
|
class CPageAdvanced : private IPropertySheetPage
|
|
{
|
|
public:
|
|
CPageAdvanced(CPropertySheetHelper& PropertySheetHelper) :
|
|
m_Page(PG_ADVANCED),
|
|
m_PropertySheetHelper(PropertySheetHelper),
|
|
m_uTheFreezesF8Rom(0)
|
|
{
|
|
CPageAdvanced::ms_this = this;
|
|
}
|
|
virtual ~CPageAdvanced(){}
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT message, WPARAM wparam, LPARAM lparam);
|
|
|
|
UINT GetTheFreezesF8Rom(void){ return m_uTheFreezesF8Rom; }
|
|
void SetTheFreezesF8Rom(UINT uValue){ m_uTheFreezesF8Rom = uValue; }
|
|
|
|
protected:
|
|
// IPropertySheetPage
|
|
virtual INT_PTR DlgProcInternal(HWND hWnd, UINT message, WPARAM wparam, LPARAM lparam);
|
|
virtual void DlgOK(HWND hWnd);
|
|
virtual void DlgCANCEL(HWND hWnd){}
|
|
|
|
private:
|
|
void InitOptions(HWND hWnd);
|
|
eApple2Type GetCloneType(DWORD NewMenuItem);
|
|
int GetCloneMenuItem(void);
|
|
void InitFreezeDlgButton(HWND hWnd);
|
|
void InitCloneDropdownMenu(HWND hWnd);
|
|
|
|
static CPageAdvanced* ms_this;
|
|
static const TCHAR m_CloneChoices[];
|
|
|
|
const PAGETYPE m_Page;
|
|
CPropertySheetHelper& m_PropertySheetHelper;
|
|
UINT m_uTheFreezesF8Rom;
|
|
};
|