mirror of
https://github.com/fadden/ciderpress.git
synced 2024-10-31 16:04:54 +00:00
d8223dbcfd
This moves method comments from the .cpp file to the .h file, where users of the methods can find them. This also makes it possible for the IDE to show the comments when you mouse-hover over the method name, though Visual Studio is a bit weak in this regard. Also, added "override" keywords on overridden methods. Reasonably current versions of popular compilers seem to support this. Also, don't have the return type on a separate line in the .cpp file. The motivation for the practice -- quickly finding a method definition with "^name" -- is less useful in C++ than C, and modern IDEs provide more convenient ways to do the same thing. Also, do some more conversion from unsigned types to uintXX_t. This commit is primarily for the "app" directory.
75 lines
2.0 KiB
C++
75 lines
2.0 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Choose file name and characteristics for a file imported from an audio
|
|
* cassette tape.
|
|
*/
|
|
#ifndef APP_CASSIMPTARGETDIALOG_H
|
|
#define APP_CASSIMPTARGETDIALOG_H
|
|
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Get a filename, allow them to override the file type, and get a hexadecimal
|
|
* start address for binary files.
|
|
*/
|
|
class CassImpTargetDialog : public CDialog {
|
|
public:
|
|
CassImpTargetDialog(CWnd* pParentWnd = NULL) :
|
|
CDialog(IDD_CASSIMPTARGET, pParentWnd),
|
|
fStartAddr(0x0800),
|
|
fFileTypeIndex(0)
|
|
{}
|
|
virtual ~CassImpTargetDialog(void) {}
|
|
|
|
/*
|
|
* Get the selected file type. Call this after the modal dialog exits.
|
|
*/
|
|
long GetFileType(void) const;
|
|
|
|
/*
|
|
* Convert a ProDOS file type into a radio button enum.
|
|
*/
|
|
void SetFileType(long type);
|
|
|
|
CString fFileName;
|
|
unsigned short fStartAddr; // start addr for BIN files
|
|
long fFileLength; // used for BIN display
|
|
|
|
private:
|
|
virtual BOOL OnInitDialog(void) override;
|
|
virtual void DoDataExchange(CDataExchange* pDX) override;
|
|
|
|
/*
|
|
* They selected a different file type. Enable or disable the address
|
|
* entry window.
|
|
*/
|
|
afx_msg void OnTypeChange(void);
|
|
|
|
/*
|
|
* If the user changes the address, update the "end of range" field.
|
|
*/
|
|
afx_msg void OnAddrChange(void);
|
|
|
|
MyEdit fAddrEdit; // replacement edit ctrl for addr field
|
|
|
|
/*
|
|
* Get the start address (entered as a 4-digit hex value).
|
|
*
|
|
* Returns -1 if something was wrong with the string (e.g. empty or has
|
|
* invalid chars).
|
|
*/
|
|
long GetStartAddr(void) const;
|
|
|
|
/* for radio button; enum must match order of controls in dialog */
|
|
enum { kTypeBAS = 0, kTypeINT, kTypeBIN };
|
|
int fFileTypeIndex;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_CASSIMPTARGETDIALOG_H*/
|