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

📄 s60oplruntimedialog.cpp

📁 在手机操作系统symbina上使用的一个脚本扩展语言的代码实现,可以参考用于自己的开发
💻 CPP
字号:

#include "OplStartUpDialog.h"

#include <avkon.hrh>
#include <aknappui.h>
#include <EikFUtil.h>
#include <MsvIds.h>

COplRuntimeStartUpDialog::~COplRuntimeStartUpDialog()
    {
    }

// This function is called when either of the two softkeys is pressed.

TBool COplRuntimeStartUpDialog::OkToExitL(TInt aButtonId)
	{
    if (aButtonId == EAknSoftkeyOptions)
        iAvkonAppUi->ProcessCommandL(EAknSoftkeyOptions);
    else if (aButtonId == EAknSoftkeyExit)
        iAvkonAppUi->ProcessCommandL(EEikCmdExit);
    
    return EFalse;
	}

void COplRuntimeStartUpDialog::PreLayoutDynInitL()
    {
    }



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -