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

📄 outputview.h

📁 BCGCBDotNetExample 修改后的通用模板
💻 H
字号:
// OutputView.h: interface for the COutputViewBar class.
//


/////////////////////////////////////////////////////////////////////////////
// COutputList window

class COutputList : public CListBox
{
// Construction
public:
	COutputList();

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(COutputList)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~COutputList();

	// Generated message map functions
protected:
	//{{AFX_MSG(COutputList)
	afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
	afx_msg void OnEditCopy();
	afx_msg void OnEditClear();
	afx_msg void OnOutputGotoError();
	afx_msg void OnViewOutput();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

#if !defined(AFX_OUTPUTVIEW_H__F9C28949_2C41_47AD_9BAB_E2516CEEC6E0__INCLUDED_)
#define AFX_OUTPUTVIEW_H__F9C28949_2C41_47AD_9BAB_E2516CEEC6E0__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class COutputViewBar : public CBCGPDockingControlBar  
{
// Construction
public:
	COutputViewBar();

// Attributes
protected:

	CFont		m_Font;
	COutputList	m_wndOutput;

protected:
	void FillDebugWindow ();
	void FillBuildWindow ();
	void AdjusrHorzScroll (CListBox& wndListBox);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(COutputViewBar)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~COutputViewBar();

	// Generated message map functions
protected:
	//{{AFX_MSG(COutputViewBar)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnPaint();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#endif // !defined(AFX_OUTPUTVIEW_H__F9C28949_2C41_47AD_9BAB_E2516CEEC6E0__INCLUDED_)

⌨️ 快捷键说明

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