tetrisappui.h
来自「在symbian2.0平台上开发的完整的俄罗斯方块的源码。」· C头文件 代码 · 共 44 行
H
44 行
#ifndef __TETRISAPPUI_H
#define __TETRISAPPUI_H
#include <aknappui.h>
// Forward reference
class CTetrisContainer;
class CTetrisDocument;
class CTetrisAppUi : public CAknAppUi
{
public:
void ConstructL();
CTetrisAppUi(CTetrisDocument* aDocument);
~CTetrisAppUi();
private:
// from CAknAppUi
void HandleCommandL(TInt aCommand);
// handle key event
TKeyResponse HandleKeyEventL(const TKeyEvent &aKeyEvent, TEventCode aType);
public:
void Quit();
////////////////////////////////////////////////////////////////////
// data
private:
CTetrisDocument* iDocument;
CTetrisContainer* iAppContainer; // has a
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?