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

📄 testui_app_ui.cpp

📁 linux下的一款播放器
💻 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 + -