📄 shapeapp.h
字号:
#if !defined(ShapeApp_h)
#define ShapeApp_h
#include "AEEModGen.h" // Module interface definitions
#include "AEEAppGen.h" // Applet interface definitions
class CList; // forward declaration
class ShapeApp : public AEEApplet
{
public:
static boolean HandleEvent(ShapeApp * pApp, AEEEvent eCode, uint16 wparam, uint32 dwParam);
static boolean initAppData(IApplet * pIApplet);
static void freeAppData(ShapeApp * pApp);
protected:
void freeData();
boolean onEvent(AEEEvent evt, uint16 wParam, uint32 dwParam);
boolean initData();
private:
CList *m_pShapes;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -