cmdshelledit.h
来自「软件源代码,共享。有2个文件」· C头文件 代码 · 共 32 行
H
32 行
#pragma once
#include "cmdshelledit.h"
#include ".\servershellhandle.h"
// CCmdShellEdit
class CCmdShellEdit : public CEdit
{
DECLARE_DYNAMIC(CCmdShellEdit)
public:
void AddText(LPCWSTR szText);
CCmdShellEdit();
virtual ~CCmdShellEdit();
void BindSocket(CServerShellHandle* h)
{
m_hServer = h;
}
protected:
CServerShellHandle* m_hServer;
int m_TextdwLen;
DECLARE_MESSAGE_MAP()
public:
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg UINT OnGetDlgCode();
afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?