📄 testappui.cpp
字号:
/* testappui.cpp * * Test Application UI class * * Copyright 2004 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#include "testappui.h"#include "testappview.h"#include "testui.hrh"#include <test.rsg>CTestAppUi::CTestAppUi() {}void CTestAppUi::ConstructL() { BaseConstructL(); iAppView = new (ELeave) CTestAppView(*this); iAppView->ConstructL(ClientRect()); AddToStackL(iAppView);}CTestAppUi::~CTestAppUi() { RemoveFromStack(iAppView); delete iAppView;}void CTestAppUi::HandleCommandL(TInt aCommand) { switch (aCommand) { case EAknSoftkeyBack: case EAknSoftkeyExit: case EEikCmdExit: { Exit(); break; } default: break; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -