retroappui.h
来自「symbian系统上的2D图形游戏」· C头文件 代码 · 共 42 行
H
42 行
// ------------
// RetroAppUi.h
// ------------
//
// Copyright (c) 2003 Nokia Phones Ltd All rights reserved.
//
#ifndef __RETROAPPUI_H__
#define __RETROAPPUI_H__
#include <aknappui.h>
//class CRetroAppViewOld;
class CRetroAppView;
class CRetroAppUi : public CAknAppUi
{
public:
void ConstructL();
CRetroAppUi();
~CRetroAppUi();
public:
// from CEikAppUi
void HandleCommandL(TInt aCommand);
void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
private:
// CRetroAppViewOld* iAppView;
CRetroAppView* iAppView;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?