📄 ddbouncingball_appui.h
字号:
// DDBouncingBall_AppUi.h
// ---------------------------
//
// Copyright (c) 2002 Symbian Ltd. All rights reserved.
//
////////////////////////////////////////////////////////////////////
//
// CDDBouncingBallAppUi
//
// Implements DynInitMenuPaneL() to ensure user can only Stop
// Bouncing ball if the ball is bouncing and vice versa.
//
//
////////////////////////////////////////////////////////////////////
#ifndef __DDBOUNCINGBALL_APPUI_H__
#define __DDBOUNCINGBALL_APPUI_H__
#include <aknappui.h>
class CDDBouncingBallAppView;
class CDDBouncingBallAppUi : public CAknAppUi
{
public:
void ConstructL();
CDDBouncingBallAppUi();
~CDDBouncingBallAppUi();
public:
// from CEikAppUi
void HandleCommandL(TInt aCommand);
void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
private:
CDDBouncingBallAppView* iAppView;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -