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

📄 customctrldlg.rss

📁 series60 应用程序开发的源代码 series60 应用程序开发的源代码
💻 RSS
字号:
/**
* 
* @brief Resource file for CustomCtrlDlg application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/

//  RESOURCE IDENTIFIER
NAME    DLG2 // 4 letter ID

//  INCLUDES

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

#include "customctrldlg.rh"
#include "customctrldlg.hrh"
#include "customctrldlg.loc"

//  RESOURCE DEFINITIONS 

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf="CustomCtrlDlg"; }

RESOURCE EIK_APP_INFO
{

    menubar=r_customctrldlg_menubar; 
}

//----------------------------------------------------
//   
//    r_customctrldlg_menubar
//    options menu for the application
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_customctrldlg_menubar
{
    titles=
    {
        MENU_TITLE 
        {
            txt = ""; // the text is not used in Series 60
            menu_pane = r_customctrldlg_menu_pane;
        }
    };
}


//----------------------------------------------------
//   
//    r_customctrldlg4_menu_pane
//    options menu pane for the application
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_customctrldlg_menu_pane
{
    items =
    {
        MENU_ITEM
        {
            command = ECustomCtrlDlgCmdNewGame;
            txt = NEW_GAME_TEXT;
        },
        MENU_ITEM
        {
            command = EAknCmdExit;
            txt = EXIT_TEXT;
        }
    };
}


//----------------------------------------------------
//   
//        r_customctrldlg_dialog
//        definition of the main application window dialog
//        N.B. The dialog is modeless, as it is the main 
//        application window.
//
//----------------------------------------------------
//
RESOURCE DIALOG r_customctrldlg_dialog
{
    flags=EEikDialogFlagNoDrag | 
        EEikDialogFlagNoTitleBar | 
        EEikDialogFlagFillAppClientRect | 
        EEikDialogFlagCbaButtons | 
        EEikDialogFlagModeless;
    buttons=R_AVKON_SOFTKEYS_OPTIONS_BACK; 
    items=
    {
        DLG_LINE
        {
            id=ECustomCtrlDlgDlgCIdGameName;
            type=EEikCtLabel;
            control= LABEL 
            { 
                txt = GAME_NAME_TEXT; 
            };
        }
    };
}

//----------------------------------------------------
//   
//        r_customctrldlg_custom_control_dialog
//        definition of the custom control dialog
//
//----------------------------------------------------
//
RESOURCE DIALOG r_customctrldlg_custom_control_dialog
{
    flags=EEikDialogFlagNoDrag | 
        EEikDialogFlagCbaButtons |
        EEikDialogFlagWait;
    buttons=R_AVKON_SOFTKEYS_OK_CANCEL; 
    items=
    {
        DLG_LINE
        {
            id=ECustomCtrlDlgDlgCIdCustomControl;
            type=ECustomCtrlDlgCtCustomControl;
        }
    };    
}
// End of File

⌨️ 快捷键说明

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