📄 sayhello.h
字号:
#ifndef _SAYHELLO_H
#define _SAYHELLO_H
//include head files
#include "windows.h"
#include "basefunc.H"
class CSayHello
{
public:
CSayHello();
~CSayHello();
private:
char m_szWords[128];
int m_iX, m_iY, m_iDir;
CMySize m_objFontSize;
DWORD m_dwTimeStart;
int m_iOff;
private:
void DrawHelloBox();
void Clear();
void ShowHelloWords();
public:
void ShowWords(int iScrX, int iScrY, int iDir);
void SetWords(const char* pszWords);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -