-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDHTMLDialogDlg.h
More file actions
37 lines (28 loc) · 830 Bytes
/
Copy pathDHTMLDialogDlg.h
File metadata and controls
37 lines (28 loc) · 830 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
// DHTMLDialogDlg.h : header file
//
#pragma once
// CDHTMLDialogDlg dialog
class CDHTMLDialogDlg : public CDHtmlDialog
{
// Construction
public:
CDHTMLDialogDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_DHTMLDIALOG_DIALOG, IDH = IDR_HTML_DHTMLDIALOG_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
HRESULT OnButtonOK(IHTMLElement *pElement);
HRESULT OnButtonCancel(IHTMLElement *pElement);
HRESULT OnCheckClick(IHTMLElement *pElement);
// Implementation
protected:
HICON m_hIcon;
bool m_LinkActive;
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
DECLARE_DHTML_EVENT_MAP()
};