forked from hiyohiyo/CrystalDiskInfo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundSettingDlg.h
More file actions
48 lines (38 loc) · 1.17 KB
/
Copy pathSoundSettingDlg.h
File metadata and controls
48 lines (38 loc) · 1.17 KB
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
/*---------------------------------------------------------------------------*/
// Author : hiyohiyo
// Mail : hiyohiyo@crystalmark.info
// Web : https://crystalmark.info/
// License : The MIT License
/*---------------------------------------------------------------------------*/
#pragma once
#include "DialogCx.h"
#include "ButtonCx.h"
#include "StaticCX.h"
class CSoundSettingDlg : public CDialogCx
{
DECLARE_DYNCREATE(CSoundSettingDlg)
static const int SIZE_X = 488;
static const int SIZE_Y = 76;
static const int SIZE_X_SJ = 480;
static const int SIZE_Y_SJ = 480;
public:
CSoundSettingDlg(CWnd* pParent = NULL);
virtual ~CSoundSettingDlg();
enum { IDD = IDD_SOUND_SETTINGS};
protected:
virtual void DoDataExchange(CDataExchange* pDX);
virtual BOOL OnInitDialog();
virtual void UpdateDialogSize();
CString m_FilePath;
CStaticCx m_CtrlFilePath;
CButtonCx m_CtrlSelectFile;
CButtonCx m_CtrlPlay;
CButtonCx m_CtrlDefault;
CButtonCx m_CtrlOk;
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButtonSelectFile();
afx_msg void OnBnClickedButtonPlay();
afx_msg void OnBnClickedButtonDefault();
afx_msg void OnBnClickedButtonOk();
};