mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-16 12:04:27 +00:00
49 lines
1.1 KiB
C
49 lines
1.1 KiB
C
|
/*
|
||
|
* CiderPress
|
||
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
||
|
* See the file LICENSE for distribution terms.
|
||
|
*/
|
||
|
/*
|
||
|
* Class definition for TwoImg properties edit dialog.
|
||
|
*/
|
||
|
#ifndef __TWOIMG_PROPS_DIALOG__
|
||
|
#define __TWOIMG_PROPS_DIALOG__
|
||
|
|
||
|
#include "resource.h"
|
||
|
#include "../diskimg/TwoImg.h"
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Dialog with a bunch of controls that map to fields in the TwoImg file
|
||
|
* header. We want to keep the "Save" button ("OK") dimmed until we have
|
||
|
* something to write.
|
||
|
*/
|
||
|
class TwoImgPropsDialog : public CDialog {
|
||
|
public:
|
||
|
TwoImgPropsDialog(CWnd* pParentWnd = NULL) :
|
||
|
CDialog(IDD_TWOIMG_PROPS, pParentWnd),
|
||
|
fpHeader(NULL), fReadOnly(false)
|
||
|
{}
|
||
|
|
||
|
|
||
|
void Setup(TwoImgHeader* pHeader, bool readOnly) {
|
||
|
fpHeader = pHeader;
|
||
|
fReadOnly = readOnly;
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
// overrides
|
||
|
virtual BOOL OnInitDialog(void);
|
||
|
virtual void DoDataExchange(CDataExchange* pDX);
|
||
|
|
||
|
afx_msg BOOL OnHelpInfo(HELPINFO* lpHelpInfo);
|
||
|
afx_msg void OnChange(void);
|
||
|
|
||
|
TwoImgHeader* fpHeader;
|
||
|
bool fReadOnly;
|
||
|
//bool fModified;
|
||
|
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
#endif /*__TWOIMG_PROPS_DIALOG__*/
|