⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chelpdlg.h

📁 3D游戏疯狂的鸡蛋
💻 H
字号:
/*
	Crazy Eggs Remade By Kevin Lynx

	File : CHelpDlg.h
	Desc : create the help dialog
	Date : 2007.1.25
*/
#ifndef	CHELPDLG_H
#define	CHELPDLG_H

#include	<SexyAppBase.h>
#include	<Dialog.h>
#include	<DialogListener.h>
#include	<Graphics.h>

using	namespace	Sexy;

class	CHelpDlg : public Dialog, public DialogListener
{
public:
	enum
	{
		DLG_ID = 1,
	};

public:
	CHelpDlg();
	~CHelpDlg();

	void	Draw( Graphics *g );

	void	DialogButtonDepress( int theDialogId, int theButtonId );

	void	MouseDrag( int x, int y );
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -