📄 testui_app_ui.cpp
字号:
#include "testui_app_ui.h"#include <eikon.hrh>#include <eikmenup.h>#include "testui_app_view.h"#include "testui.hrh"#include "testui.rsg"void CHXTestUIAppUI::ConstructL(){ BaseConstructL(); m_pAppView = CHXTestUIAppView::NewL(ClientRect());}CHXTestUIAppUI::~CHXTestUIAppUI(){ delete m_pAppView;}void CHXTestUIAppUI::HandleCommandL(TInt aCommand){ switch (aCommand) { case ETestUICmdRunTest: m_pAppView->RunTest(); break; case EAknSoftkeyExit: Exit(); break; }}void CHXTestUIAppUI::DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane){}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -