mirror of
https://github.com/fadden/ciderpress.git
synced 2024-12-22 05:29:43 +00:00
75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Options for creating a blank disk image.
|
|
*/
|
|
#ifndef __CREATE_IMAGE_DIALOG__
|
|
#define __CREATE_IMAGE_DIALOG__
|
|
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Get some options.
|
|
*/
|
|
class CreateImageDialog : public CDialog {
|
|
public:
|
|
/* this must match up with control IDs in dialog */
|
|
enum {
|
|
kFmtDOS32 = 0,
|
|
kFmtDOS33,
|
|
kFmtProDOS,
|
|
kFmtPascal,
|
|
kFmtHFS,
|
|
kFmtBlank
|
|
};
|
|
|
|
CreateImageDialog(CWnd* pParentWnd = NULL) :
|
|
CDialog(IDD_CREATEIMAGE, pParentWnd)
|
|
{
|
|
fDiskSizeIdx = 0;
|
|
fDiskFormatIdx = kFmtProDOS;
|
|
fAllocTracks_DOS = TRUE;
|
|
fDOSVolumeNum = 254;
|
|
fVolName_ProDOS = "NEW.DISK";
|
|
fVolName_Pascal = "BLANK";
|
|
fVolName_HFS = "New Disk";
|
|
fNumBlocks = -2; // -1 has special meaning
|
|
fExtendedOpts = false;
|
|
}
|
|
virtual ~CreateImageDialog(void) {}
|
|
|
|
int fDiskSizeIdx;
|
|
int fDiskFormatIdx;
|
|
BOOL fAllocTracks_DOS;
|
|
int fDOSVolumeNum;
|
|
CString fVolName_ProDOS;
|
|
CString fVolName_Pascal;
|
|
CString fVolName_HFS;
|
|
|
|
long fNumBlocks; // computed when DoModal finishes
|
|
|
|
private:
|
|
virtual BOOL OnInitDialog(void);
|
|
virtual void DoDataExchange(CDataExchange* pDX);
|
|
|
|
// BOOL OnHelpInfo(HELPINFO* lpHelpInfo);
|
|
|
|
afx_msg void OnFormatChangeRange(UINT nID);
|
|
afx_msg void OnSizeChangeRange(UINT nID);
|
|
afx_msg BOOL OnHelpInfo(HELPINFO* lpHelpInfo);
|
|
afx_msg void OnHelp(void);
|
|
|
|
bool IsValidVolumeName_DOS(const char* name);
|
|
bool IsValidVolumeName_ProDOS(const char* name);
|
|
bool IsValidVolumeName_Pascal(const char* name);
|
|
bool IsValidVolumeName_HFS(const char* name);
|
|
|
|
bool fExtendedOpts;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*__CREATE_IMAGE_DIALOG__*/ |