⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log.h

📁 网络编程
💻 H
字号:
#if !defined LOG_INCLUDED_
#define LOG_INCLUDED_
// Log.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CLog dialog
class CMainSheet;

class CLog : public CPropertyPage
{
	DECLARE_DYNCREATE(CLog)

// Construction
public:
	void SetOwner(CMainSheet* pSheet);
	CLog();
	~CLog();

	virtual BOOL PreTranslateMessage (MSG* pMsg);

// Dialog Data
	//{{AFX_DATA(CLog)
	enum { IDD = IDD_LOG };
	CEdit	m_edtLog;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CLog)
	public:
	virtual BOOL OnSetActive();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	CMainSheet* m_pMainSheet;
	// Generated message map functions
	//{{AFX_MSG(CLog)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

protected:
	CToolTipCtrl m_tooltip;
};

#endif

⌨️ 快捷键说明

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