stringinfoview.h
来自「网络游戏魔域源代码 测试可以完整变异」· C头文件 代码 · 共 35 行
H
35 行
// StringInfoView.h: interface for the CStringInfoView class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STRINGINFOVIEW_H__68FD8816_525E_4636_BBF7_21C699DDF018__INCLUDED_)
#define AFX_STRINGINFOVIEW_H__68FD8816_525E_4636_BBF7_21C699DDF018__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "IInfoView.h"
#include "BaseFunc.h"
class CStringInfoView : public IInfoView
{
public:
CStringInfoView();
virtual ~CStringInfoView();
private:
char m_szStr[_MAX_STRING];
CMyPos m_posShow;
DWORD m_dwColor;
public:
virtual void Show();
public:
static CStringInfoView* CreateNew(char* pszStr, CMyPos posShow, DWORD dwColor);
BOOL Create(char* pszStr, CMyPos posShow, DWORD dwColor);
};
#endif // !defined(AFX_STRINGINFOVIEW_H__68FD8816_525E_4636_BBF7_21C699DDF018__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?