diff -r 8bda91a87a00 -r 8ee96d21d9bf gssettingsuis/Gs/Data/GSCommonResources.rss --- a/gssettingsuis/Gs/Data/GSCommonResources.rss Thu Aug 19 10:12:30 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,189 +0,0 @@ -/* -* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Common resources for internal GS plugins. This .rss is -* included by other .rss files. This should not be compiled - alone. -* -*/ - -// RESOURCE IDENTIFIER -//NAME GSCR // 4 letter ID - -// INCLUDES -#include // Common localized GS strings -#include // Common GS resource structures - -#include -#include -#include -#include -#include - -// CONSTANTS - -// ----------------------------------------------------------------------------- -// -// r_gs_menubar_change_exit -// GS menu with 'change' and 'exit' items. -// -// ----------------------------------------------------------------------------- -// -RESOURCE MENU_BAR r_gs_menubar_change_exit - { - titles = - { - MENU_TITLE - { - menu_pane = r_gs_menu_item_exit; - }, - MENU_TITLE - { - menu_pane = r_gs_menu_item_help; - }, - MENU_TITLE - { - menu_pane = r_gs_menu_item_change; - } - }; - } - -// ----------------------------------------------------------------------------- -// -// r_gs_menubar_open_exit -// GS menu with 'Open' and 'Exit' items. -// -// ----------------------------------------------------------------------------- -// -RESOURCE MENU_BAR r_gs_menubar_open_exit - { - titles = - { - MENU_TITLE - { - menu_pane = r_gs_menu_item_exit; - }, - MENU_TITLE - { - menu_pane = r_gs_menu_item_help; - }, - MENU_TITLE - { - menu_pane = r_gs_menu_item_open; - } - }; - } - -//---------------------------------------------------- -// -// r_gs_menu_item_open -// Open item. -// -//---------------------------------------------------- - -RESOURCE MENU_PANE r_gs_menu_item_open - { - items = - { - MENU_ITEM - { - command = EAknSoftkeyOpen; - txt = qtn_set_options_open; - flags = EEikMenuItemAction; // action command - } - }; - } - - -// ----------------------------------------------------------------------------- -// -// r_gs_menu_item_exit -// -// ----------------------------------------------------------------------------- -// -RESOURCE MENU_PANE r_gs_menu_item_exit - { - items = - { - MENU_ITEM - { - command = EAknCmdExit; - txt = qtn_options_exit; - } - }; - } - - -// ----------------------------------------------------------------------------- -// -// r_gs_menu_item_change -// Change item. -// -// ----------------------------------------------------------------------------- -// -RESOURCE MENU_PANE r_gs_menu_item_change - { - items = - { - MENU_ITEM - { - command = EGSCmdAppChange; - txt = qtn_set_options_change; - flags = EEikMenuItemAction; // action command - } - }; - } - -// ----------------------------------------------------------------------------- -// -// r_gs_menu_item_help -// Change item. -// -// ----------------------------------------------------------------------------- -// -RESOURCE MENU_PANE r_gs_menu_item_help - { - items = - { - MENU_ITEM - { - command = EAknCmdHelp; - txt = qtn_options_help; - } - }; - } - - -// ----------------------------------------------------------------------------- -// -// r_setting_listbox -// Common listbox editor resource for setting pages. -// -// ----------------------------------------------------------------------------- -// -RESOURCE LISTBOX r_setting_listbox - { - flags = EEikListBoxMultipleSelection; - } - - -// ----------------------------------------------------------------------------- -// -// r_gs_cba_exit -// Exit text for RSK -// -// ----------------------------------------------------------------------------- -// -RESOURCE TBUF r_gs_cba_exit { buf = text_softkey_exit; } - -//End of File