SmsManager/DLG_WarningSetup.h
2025-01-14 10:46:18 +08:00

42 lines
1.4 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
// DLG_WarningSetup 对话框
class DLG_WarningSetup : public CDialogEx
{
DECLARE_DYNAMIC(DLG_WarningSetup)
public:
DLG_WarningSetup(CWnd* pParent = nullptr); // 标准构造函数
virtual ~DLG_WarningSetup();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_WARNINGSETUP };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedOk();
public:
BOOL m_bEnable;
UINT m_lTimer;
BOOL m_bSound;
BOOL m_bFlash;
BOOL m_bWindow;
BOOL m_bOnlyContent;
BOOL m_bTimeout;
SM_Setup m_Setup;
public:
void SetSetup(SM_Setup setup);
SM_Setup GetSetup();
virtual BOOL OnInitDialog();
};