s60testappui.h
来自「基于Symbian OS的手机开发与应用:第12章游戏--俄罗斯方块示例源程序。」· C头文件 代码 · 共 35 行
H
35 行
#ifndef __S60TEST_APPUI_H__
#define __S60TEST_APPUI_H__
#include <aknappui.h>
#include "s60testengine.h"
class CS60TestDocument;
// Forward reference
class CS60TestAppView;
class CS60TestAppUi : public CAknAppUi
{
public:
void ConstructL();
CS60TestAppUi(CS60TestDocument *aDoc);
~CS60TestAppUi();
void UpdateBoard();
public: // from CAknAppUi
void HandleCommandL(TInt aCommand);
TKeyResponse HandleKeyEventL(const TKeyEvent& /*aKeyEvent*/,
TEventCode /*aType*/);
void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane *aMenuPane);
private:
CS60TestEngine *iEngine;
CS60TestAppView *iAppView;
CS60TestDocument *iDoc;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?