bluegpsclient.rss

来自「S60系统下的蓝牙GPS连接程序 包括client和server端的连接方式」· RSS 代码 · 共 135 行

RSS
135
字号

/*****************************************************************************
 File: BlueGPSClient.rss

 COPYRIGHT All rights reserved Sony Ericsson Mobile Communications AB 2003.

 The software is the copyrighted work of Sony Ericsson Mobile Communications AB.
 The use of the software is subject to the terms of the end-user license
 agreement which accompanies or is included with the software. The software is
 provided "as is" and Sony Ericsson specifically disclaim any warranty or
 condition whatsoever regarding merchantability or fitness for a specific
 purpose, title or non-infringement. No warranty of any kind is made in
 relation to the condition, suitability, availability, accuracy, reliability,
 merchantability and/or non-infringement of the software provided herein.

 *****************************************************************************/

NAME HELO

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

#include "BlueGPSClient.hrh"

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF
    {
    buf = "";
    }

RESOURCE EIK_APP_INFO
    {
    hotkeys = r_BlueGPSClient_hotkeys;
    menubar = r_BlueGPSClient_menubar;
    }

RESOURCE HOTKEYS r_BlueGPSClient_hotkeys
    {
    control =
        {
        HOTKEY
            {
            command = EEikCmdExit;
            key = 'e';
            }
        };
    }

RESOURCE MENU_BAR r_BlueGPSClient_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_BlueGPSClient_menu;
            txt = "BlueGPS";
            },
		MENU_TITLE
			{
			menu_pane = r_BlueGPSClient_menu2;
			txt = "View";
			}
        };
    }

RESOURCE MENU_PANE r_BlueGPSClient_menu
    {
    items =
        {
        MENU_ITEM
            {
            command = EBlueGPSClientCmd0;
            txt = "Select device";
            },
		MENU_ITEM
            {
            command = EBlueGPSClientCmd1;
            txt = "Connect";
            },
		MENU_ITEM
			{
			command = EBlueGPSClientCmd4;
			txt = "Disconnect";
			},
        MENU_ITEM
            {
            command = EEikCmdExit;
            txt = "Close";
            }
        };
    }

 RESOURCE MENU_PANE r_BlueGPSClient_menu2
    {
    items =
        {
        MENU_ITEM
            {
            command = EBlueGPSClientCmd2;
            txt = "Text";
            },
		MENU_ITEM
            {
            command = EBlueGPSClientCmd3;
            txt = "Graphics";
            }
        };
    }



RESOURCE TBUF r_BlueGPSClient_text_item0
    {
    buf = "Item 0...";
    }

RESOURCE TBUF r_BlueGPSClient_text_item1
    {
    buf = "Sel remote...";
    }

RESOURCE TBUF r_BlueGPSClient_text_item2
    {
    buf = "Item 2...";
    }

RESOURCE TBUF r_BlueGPSClient_text_hello
    {
    buf = "Hello world!...";
    }


RESOURCE TBUF80 r_game_info_reset_connection { buf = "Close connection first"; }
RESOURCE TBUF80 r_game_info_already_connected { buf = "Already connected!"; }

⌨️ 快捷键说明

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