📄 dlgblockurl.h
字号:
#if !defined(AFX_DLGBLOCKURL_H__EC585461_07BF_11D9_AA68_FF88F3E0B079__INCLUDED_)
#define AFX_DLGBLOCKURL_H__EC585461_07BF_11D9_AA68_FF88F3E0B079__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DlgBlockUrl.h : header file
//作者:孟庆远
/////////////////////////////////////////////////////////////////////////////
// CDlgBlockUrl dialog
#define LEO_DLGURLLISTADD WM_USER+1001
#define LEO_DLGURLLISTDEL WM_USER+1002
#define LEO_DLGURLLISTDELALL WM_USER+1003
#include "ButtonXP.h"
typedef struct _LEO_DLGURLINFO
{
int index;
LPCTSTR str;
} LEO_DLGURLINFO;
class CDlgBlockUrl : public CDialog
{
// Construction
public:
CDlgBlockUrl(CWnd* pParent = NULL); // standard constructor
int nCount;
// Dialog Data
//{{AFX_DATA(CDlgBlockUrl)
enum { IDD = IDD_DIALOG_URL };
CButtonXP m_buOk;
CButtonXP m_buDelAll;
CButtonXP m_buDel;
CButtonXP m_buAdd;
CComboBox m_BlockUrlCom;
CListCtrl m_BlockUrlList;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDlgBlockUrl)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CDlgBlockUrl)
virtual BOOL OnInitDialog();
afx_msg void OnButtonAdd();
afx_msg void OnButtonDel();
afx_msg void OnButtonDelAll();
afx_msg void OnClickListUrl(NMHDR* pNMHDR, LRESULT* pResult);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DLGBLOCKURL_H__EC585461_07BF_11D9_AA68_FF88F3E0B079__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -