mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-19 19:33:03 +00:00
7b55e994ec
Change to using Registry's 'Configuration\Slot n' for disk ii image pathnames (was 'Preferences'). Delete Registry's 'Configuration\Slot n' section each time there's a change of card. Add same functionality to conf.ini. LoadConfiguration(): load from the new Slot-n section (or otherwise the old legacy key). Only update Registry's 'Starting Directory' for s6,d1. Update help doc.
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "IPropertySheetPage.h"
|
|
#include "PropertySheetDefs.h"
|
|
class CPropertySheetHelper;
|
|
|
|
class CPageDisk : private IPropertySheetPage
|
|
{
|
|
public:
|
|
CPageDisk(CPropertySheetHelper& PropertySheetHelper) :
|
|
m_Page(PG_DISK),
|
|
m_PropertySheetHelper(PropertySheetHelper)
|
|
{
|
|
CPageDisk::ms_this = this;
|
|
}
|
|
virtual ~CPageDisk(){}
|
|
|
|
static INT_PTR CALLBACK DlgProc(HWND hWnd, UINT message, WPARAM wparam, LPARAM lparam);
|
|
|
|
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);
|
|
void InitComboFloppyDrive(HWND hWnd, UINT slot);
|
|
void InitComboHDD(HWND hWnd, UINT slot);
|
|
void EnableHDD(HWND hWnd, BOOL bEnable);
|
|
void EnableFloppyDrive(HWND hWnd, BOOL bEnable, UINT slot);
|
|
void HandleHDDCombo(HWND hWnd, UINT driveSelected, UINT comboSelected);
|
|
void HandleFloppyDriveCombo(HWND hWnd, UINT driveSelected, UINT comboSelected, UINT comboOther, UINT slot);
|
|
void HandleHDDSwap(HWND hWnd);
|
|
UINT RemovalConfirmation(UINT uCommand);
|
|
|
|
static CPageDisk* ms_this;
|
|
static const TCHAR m_defaultDiskOptions[];
|
|
static const TCHAR m_defaultHDDOptions[];
|
|
|
|
const PAGETYPE m_Page;
|
|
CPropertySheetHelper& m_PropertySheetHelper;
|
|
};
|