-
Notifications
You must be signed in to change notification settings - Fork 9
/
ReadSettingDialog.h
50 lines (40 loc) · 1.1 KB
/
ReadSettingDialog.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
#pragma once
#include "afxwin.h"
#include "CDController.h"
#include "afxcmn.h"
#include "devicelist.h"
#include "readsettingdialog1.h"
#include "readsettingdialog2.h"
#include "readsettingdialog3.h"
#include "readsettingdialog4.h"
class CReadSettingDialog : public CDialog
{
DECLARE_DYNAMIC(CReadSettingDialog)
public:
CReadSettingDialog(CWnd* pParent = nullptr);
~CReadSettingDialog() override;
enum { IDD = IDD_READSETTING };
protected:
void DoDataExchange(CDataExchange* pDX) override;
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedBrowsfile();
CString m_ImageName;
afx_msg void OnBnClickedOk();
BOOL OnInitDialog() override;
afx_msg void OnBnClickedCancel();
CCDController* m_CD;
bool m_SettingAtCopy;
void SetLanguage(void);
CDeviceList m_DriveList;
afx_msg void OnCbnSelchangeDrivelist();
CComboBox m_EngineList;
protected:
CReadSettingDialog1 m_Page1;
CReadSettingDialog2 m_Page2;
CReadSettingDialog3 m_Page3;
CReadSettingDialog4 m_Page4;
int m_CurrentEngine;
public:
afx_msg void OnCbnSelchangeEnginelist();
};