forked from kuran-kuran/MZDiskExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditFile.h
54 lines (47 loc) · 1.01 KB
/
EditFile.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#pragma once
// EditFile ダイアログ
#include "MzDisk/Disk.hpp"
class EditFile : public CDialog
{
DECLARE_DYNAMIC(EditFile)
public:
CString DataPath;
CString FileName;
unsigned char Mode;
unsigned char Attr;
unsigned char Reserve;
int FileSize;
unsigned short LoadAdr;
unsigned short RunAdr;
// unsigned int Date;
int Year;
int Month;
int Day;
int Hour;
int Minute;
int FileType;
Disk *MzDiskClass;
int dirIndex;
EditFile(CWnd* pParent = nullptr); // 標準コンストラクター
virtual ~EditFile();
// ダイアログ データ
enum { IDD = IDD_EDITFILE };
CEdit m_Hour;
CEdit m_Month;
CEdit m_Minute;
CEdit m_Day;
CEdit m_Year;
CEdit m_RunAdr;
CComboBox m_Mode;
CEdit m_LoadAdr;
CEdit m_FileSize;
CEdit m_FileName;
CComboBox m_Attr;
CEdit m_Reserve;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
virtual void OnOK();
};