alarmnotification.rss

来自「this is used to get the alarm on the mob」· RSS 代码 · 共 79 行

RSS
79
字号
// ====================================================================
// File: alarmnotification.rss
// Created: 10/16/06
// Author: 
// Copyright (c): , All rights reserved
// ==================================================================== */

NAME HELL

#include <eikon.rh>
#include <eikon.rsg>
#include <avkon.rh>
#include <avkon.rsg>

#include "alarmnotification.hrh"


// ---------------------------------------------------------
//   
//    Define the resource file signature 
//    This resource should be empty.
//
// ---------------------------------------------------------
//
RESOURCE RSS_SIGNATURE { }

// ---------------------------------------------------------
//   
//    Default Document Name
//
// ---------------------------------------------------------
//
RESOURCE TBUF r_default_document_name { buf=""; }

// ---------------------------------------------------------
//   
//    Define default menu and CBA key.
//
// ---------------------------------------------------------
//
RESOURCE EIK_APP_INFO
    {
    menubar = r_alarmnotification_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }


// ---------------------------------------------------------
//   
//   r_alarmnotification_menubar
//   Menubar for alarmnotification example
//
// ---------------------------------------------------------
//
RESOURCE MENU_BAR r_alarmnotification_menubar
    {
    titles =
        {
        MENU_TITLE {menu_pane = r_alarmnotification_menu;}
        };
    }


// ---------------------------------------------------------
//   
//   r_alarmnotification_menu
//   Menu for "Options"
//
// ---------------------------------------------------------
//
RESOURCE MENU_PANE r_alarmnotification_menu
    {
    items = 
        {
        MENU_ITEM {command = EalarmnotificationCommand1;  txt = "Subscribe";},
        MENU_ITEM {command = EAknSoftkeyExit;   txt = "Exit";}
        };
    }

⌨️ 快捷键说明

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