?? bufwnd.h
字號:
/////////////////
// Buffer window for TRACEWIN.
//
// CBufWnd implements the trace buffer.
// Implements its own editing commands commands: Copy, Clear, Select All.
// In order to work, the CBufWnd must be connected to the app's command
// route by overriding CMainFrame::OnCmdMsg.
//
class CBufWnd : public CEdit {
CFont m_font; // monotype font
public:
CBufWnd();
public:
virtual ~CBufWnd();
BOOL Create(CWnd* pParentWnd, UINT nID);
BOOL IsEmpty();
protected:
//{{AFX_MSG(CBufWnd)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnEditClearAll();
afx_msg void OnEditCopy();
afx_msg void OnEditSelectAll();
afx_msg void OnUpdateEditClearAll(CCmdUI* pCmdUI);
afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
afx_msg void OnUpdateEditSelectAll(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -