forked from deepskystacker/DSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmailSettings.h
45 lines (34 loc) · 825 Bytes
/
EmailSettings.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
#ifndef __EMAILSETTINGS_H__
#define __EMAILSETTINGS_H__
#include "LiveSettings.h"
class CEmailSettings : public CDialog
{
// Construction
public:
CEmailSettings(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_EMAILSETTINGS };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
private :
CLiveSettings * m_pLiveSettings;
CEdit m_Object;
CEdit m_SendTo;
CEdit m_SMTP;
CEdit m_Account;
CButton m_SendOnce;
public :
void SetLiveSettings(CLiveSettings * pLiveSettings)
{
m_pLiveSettings = pLiveSettings;
};
// Implementation
protected:
// Generated message map functions
virtual BOOL OnInitDialog();
virtual void OnOK();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedTest();
};
#endif // __EMAILSETTINGS_H__