-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDialogLink.h
56 lines (47 loc) · 1.39 KB
/
DialogLink.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
46
47
48
49
50
51
52
53
54
55
56
#if !defined(AFX_DIALOGLINK_H__9991A6B8_8CEB_4AC1_ABE9_EB491E1DBB38__INCLUDED_)
#define AFX_DIALOGLINK_H__9991A6B8_8CEB_4AC1_ABE9_EB491E1DBB38__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DialogLink.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CDialogLink dialog
class CDialogLink : public CDialog
{
// Construction
public:
CDialogLink(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CDialogLink)
enum { IDD = IDD_ADDLINK };
CEdit m_dialogres_control;
CString m_dialogres;
int m_state;
BOOL m_internal;
BOOL m_leafnode;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDialogLink)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
void RefreshDialog();
// Generated message map functions
//{{AFX_MSG(CDialogLink)
afx_msg void OnInternal();
afx_msg void OnKillfocusDialog();
afx_msg void OnKillfocusState();
virtual void OnOK();
virtual BOOL OnInitDialog();
afx_msg void OnBrowse();
afx_msg void OnRemove();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DIALOGLINK_H__9991A6B8_8CEB_4AC1_ABE9_EB491E1DBB38__INCLUDED_)