systemsettings/GSAccessoryPlugin/data/gscommonresources.rss
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2005-2008 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Common resources for internal GS plugins. This .rss is
       
    15 *                included by other .rss files. This should not be compiled
       
    16 *                alone.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #include    <avkon.loc>
       
    22 #include    <avkon.rh>
       
    23 #include    <eikon.rh>
       
    24 #include    <eikon.rsg>
       
    25 #include    <gs.loc> // Common localized GS strings
       
    26 #include    <gscommon.rh> // Common GS resource structures
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // R_GS_MENUBAR_CHANGE_EXIT
       
    30 // ---------------------------------------------------------------------------
       
    31 //
       
    32 RESOURCE MENU_BAR r_gs_menubar_change_exit
       
    33     {
       
    34     titles =
       
    35         {
       
    36         MENU_TITLE
       
    37             {
       
    38             menu_pane = r_gs_menu_item_exit;
       
    39             },
       
    40         MENU_TITLE
       
    41             {
       
    42             menu_pane = r_gs_menu_item_help;
       
    43             },
       
    44         MENU_TITLE
       
    45             {
       
    46             menu_pane = r_gs_menu_item_change;
       
    47             }
       
    48         };
       
    49     }
       
    50 
       
    51 // ---------------------------------------------------------------------------
       
    52 // R_GS_MENUBAR_OPEN_EXIT
       
    53 // ---------------------------------------------------------------------------
       
    54 //
       
    55 RESOURCE MENU_BAR r_gs_menubar_open_exit
       
    56     {
       
    57     titles =
       
    58         {
       
    59         MENU_TITLE
       
    60             {
       
    61             menu_pane = r_gs_menu_item_exit;
       
    62             },
       
    63         MENU_TITLE
       
    64             {
       
    65             menu_pane = r_gs_menu_item_help;
       
    66             },
       
    67         MENU_TITLE
       
    68             {
       
    69             menu_pane = r_gs_menu_item_open;
       
    70             }
       
    71         };
       
    72     }
       
    73 
       
    74 // ---------------------------------------------------------------------------
       
    75 // R_GS_MENU_ITEM_OPEN
       
    76 // ---------------------------------------------------------------------------
       
    77 //
       
    78 RESOURCE MENU_PANE r_gs_menu_item_open
       
    79     {
       
    80     items =
       
    81         {
       
    82         MENU_ITEM
       
    83             {
       
    84             command = EAknSoftkeyOpen;
       
    85             txt = qtn_set_options_open;
       
    86 	    flags = EEikMenuItemAction;
       
    87             }
       
    88         };
       
    89     }
       
    90 
       
    91 // ---------------------------------------------------------------------------
       
    92 // R_GS_MENU_ITEM_EXIT
       
    93 // ---------------------------------------------------------------------------
       
    94 //
       
    95 RESOURCE MENU_PANE r_gs_menu_item_exit
       
    96     {
       
    97     items =
       
    98         {
       
    99         MENU_ITEM
       
   100             {
       
   101             command = EAknCmdExit;
       
   102             txt = qtn_options_exit;
       
   103             }
       
   104         };
       
   105     }
       
   106 
       
   107 // ---------------------------------------------------------------------------
       
   108 // R_GS_MENU_ITEM_CHANGE
       
   109 // ---------------------------------------------------------------------------
       
   110 //
       
   111 RESOURCE MENU_PANE r_gs_menu_item_change
       
   112     {
       
   113     items =
       
   114         {
       
   115         MENU_ITEM
       
   116             {
       
   117             command = EGSCmdAppChange;
       
   118             txt = qtn_set_options_change;
       
   119 	    flags = EEikMenuItemAction; // action command
       
   120             }
       
   121         };
       
   122     }
       
   123 
       
   124 // ---------------------------------------------------------------------------
       
   125 // R_GS_MENU_ITEM_HELP
       
   126 // ---------------------------------------------------------------------------
       
   127 //
       
   128 RESOURCE MENU_PANE r_gs_menu_item_help
       
   129     {
       
   130     items =
       
   131         {
       
   132         MENU_ITEM
       
   133             {
       
   134             command = EAknCmdHelp;
       
   135             txt = qtn_options_help;
       
   136             }
       
   137         };
       
   138     }
       
   139 
       
   140 // ---------------------------------------------------------------------------
       
   141 // R_SETTING_LISTBOX
       
   142 // ---------------------------------------------------------------------------
       
   143 //
       
   144 RESOURCE LISTBOX r_setting_listbox
       
   145     {
       
   146     flags = EEikListBoxMultipleSelection;
       
   147     }
       
   148 
       
   149 // ---------------------------------------------------------------------------
       
   150 // R_GS_CBA_EXIT
       
   151 // ---------------------------------------------------------------------------
       
   152 //
       
   153 RESOURCE TBUF r_gs_cba_exit
       
   154     {
       
   155     buf = text_softkey_exit;
       
   156     }