-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathReadSettingDialog1.h
More file actions
39 lines (32 loc) · 866 Bytes
/
Copy pathReadSettingDialog1.h
File metadata and controls
39 lines (32 loc) · 866 Bytes
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
#pragma once
#include "afxwin.h"
class CReadSettingDialog1 : public CDialog
{
DECLARE_DYNAMIC(CReadSettingDialog1)
public:
CReadSettingDialog1(CWnd* pParent = nullptr);
~CReadSettingDialog1() override;
enum { IDD = IDD_READSETTING_1 };
protected:
void DoDataExchange(CDataExchange* pDX) override;
DECLARE_MESSAGE_MAP()
public:
void Load(void);
void Save(void);
bool m_SettingAtCopy;
BOOL m_TestRead;
BOOL m_ExtMenu;
BOOL m_AnalyzeSubQ;
BOOL m_IgnoreReaderror;
BOOL m_FastErrorskip;
BOOL m_BurstErrorScan;
BOOL m_SwapChannel;
BOOL m_AutoDetectReadMethod;
CComboBox m_DataSpeed;
CComboBox m_AudioSpeed;
CComboBox m_AudioMethod;
BOOL OnInitDialog() override;
afx_msg void OnBnClickedExtmenu();
afx_msg void OnBnClickedAutodetectCommand();
void SetLanguage(void);
};