infotextlibrary.h
来自「c++系统开发实例精粹内附的80例源代码 环境:windows2000,c++」· C头文件 代码 · 共 41 行
H
41 行
//////////////////////////////////////////////////////////////////////
// FileFury
// Copyright (c) 2000 Tenebril Incorporated
// All rights reserved.
//
// This source code is governed by the Tenebril open source
// license (http://www.tenebril.com/developers/opensource/license.html)
//
// For more information on this and other open source applications,
// visit the Tenebril OpenSource page:
// http://www.tenebril.com/developers/opensource
//
//////////////////////////////////////////////////////////////////////
// InfoTextLibrary.h: interface for the CInfoTextLibrary class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_INFOTEXTLIBRARY_H__E089AEC3_70FE_11D3_B8DD_00600838CD5F__INCLUDED_)
#define AFX_INFOTEXTLIBRARY_H__E089AEC3_70FE_11D3_B8DD_00600838CD5F__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CInfoTextLibrary
{
public:
CString GetNextMessage();
CInfoTextLibrary();
virtual ~CInfoTextLibrary();
protected:
void ScrambleItems();
int m_nNextMessage;
CStringArray m_cszaInfoText;
void Init();
};
#endif // !defined(AFX_INFOTEXTLIBRARY_H__E089AEC3_70FE_11D3_B8DD_00600838CD5F__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?