firewallidedlg.h

来自「简单防火墙功能程序 开发平台: windows XP SP2 Visua」· C头文件 代码 · 共 57 行

H
57
字号
// FireWallIDEDlg.h : 头文件
//

#pragma once
#include "DataAndConst.h"
#include "afxwin.h"
#include "afxcmn.h"
#include <fltdefs.h>

// CFireWallIDEDlg 对话框
class CFireWallIDEDlg : public CDialog
{
// 构造
public:
	CFireWallIDEDlg(CWnd* pParent = NULL);	// 标准构造函数
	~CFireWallIDEDlg();

// 对话框数据
	enum { IDD = IDD_FIREWALLIDE_DIALOG };

	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV 支持
private:
	CImageList m_imagelist;
 	CFont m_font;
	NOTIFYICONDATA nid;
// 实现
protected:
	HICON m_hIcon;

	// 生成的消息映射函数
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
	DWORD dwLocalIP;
	FilterEntry FilterArray[20];
	int nFilterNumber;
	int nCurrentLogNo;
	bool bFilting;
public:
	afx_msg void OnBnClickedStartFilter();
	afx_msg void OnBnClickedStopFilter();
	afx_msg void OnBnClickedSetFilter();
	afx_msg LRESULT OnTrayIconClick(WPARAM wparm, LPARAM lparm);
	CButton CButtonStart;
	CButton CButtonStop;
	CButton CButtonSetFilter;
	CListCtrl CListFilterCtrl;
	CString strStateInfo;
	void AddFilter(const FilterEntry* pFilterEntry);
	afx_msg void OnClose();
	afx_msg void OnBnClickedExitprocess();
	INTERFACE_HANDLE s_hIf;
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?