⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testappui.cpp

📁 大名鼎鼎的远程登录软件putty的Symbian版源码
💻 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 + -