?? 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 + -