idlehomescreen/xmluirendering/uiengine/src/xnuiengine.rss
changeset 0 f72a12da539e
child 2 08c6ee43b396
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2005-2007 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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // ========== RESOURCE IDENTIFIER =============================================
       
    20 
       
    21 NAME    XNAI
       
    22 
       
    23 // ========== INCLUDE FILES ===================================================
       
    24 
       
    25 #include <eikon.rh>
       
    26 #include <eikcore.rsg>
       
    27 #include <avkon.rsg>
       
    28 #include <avkon.rh>
       
    29 #include <avkon.mbg>
       
    30 #include <e32keys.h>
       
    31 #include <activeidle3.loc>
       
    32 // ========== RESOURCE DEFINITIONS ============================================
       
    33 
       
    34 RESOURCE RSS_SIGNATURE { }
       
    35 RESOURCE TBUF { buf = ""; }
       
    36 
       
    37 // Select widget-dialog
       
    38 RESOURCE AVKON_LIST_QUERY r_listquery_add_widget
       
    39     {
       
    40     items =
       
    41         {
       
    42         AVKON_LIST_QUERY_DLG_LINE
       
    43             {
       
    44             control = AVKON_LIST_QUERY_CONTROL
       
    45                 {
       
    46                 listtype = EAknCtSinglePopupMenuListBox;
       
    47                 heading = qtn_hs_select_widget;
       
    48                 listbox = AVKON_LIST_QUERY_LIST
       
    49                     {
       
    50                     // dynamically filled
       
    51                     };
       
    52                 };
       
    53             }
       
    54         };
       
    55     softkeys = R_AVKON_SOFTKEYS_SELECT_BACK;
       
    56     }
       
    57 
       
    58 
       
    59 // xml listquery dialog
       
    60 RESOURCE AVKON_LIST_QUERY r_xml_listquery
       
    61     {
       
    62     items =
       
    63         {
       
    64         AVKON_LIST_QUERY_DLG_LINE
       
    65             {
       
    66             control = AVKON_LIST_QUERY_CONTROL
       
    67                 {
       
    68                 listtype = EAknCtSinglePopupMenuListBox;
       
    69                 // heading = dynamically filled
       
    70                 listbox = AVKON_LIST_QUERY_LIST
       
    71                     {
       
    72                     // dynamically filled
       
    73                     };
       
    74                 };
       
    75             }
       
    76         };
       
    77     softkeys = R_AVKON_SOFTKEYS_SELECT_BACK;
       
    78     }
       
    79 
       
    80 RESOURCE TBUF r_qtn_hs_add_widget_full
       
    81   {
       
    82   buf = qtn_hs_add_widget_full;
       
    83   }
       
    84 
       
    85 RESOURCE TBUF r_qtn_hs_error_widgets_removed
       
    86     {
       
    87     buf = qtn_hs_error_widgets_removed;
       
    88     }
       
    89 
       
    90 RESOURCE TBUF r_qtn_hs_hs_memory_full
       
    91     {
       
    92     buf = qtn_hs_hs_memory_full;
       
    93     }
       
    94 
       
    95 RESOURCE TBUF r_qtn_hs_max_amount_of_pages_note 
       
    96     { 
       
    97     buf = qtn_hs_max_amount_of_pages_note; 
       
    98     } 
       
    99 
       
   100 RESOURCE TBUF r_qtn_hs_delete_page 
       
   101     { 
       
   102     buf = qtn_hs_delete_current_page; 
       
   103     }
       
   104     
       
   105 RESOURCE TITLE_PANE r_qtn_hs_title_editmode 
       
   106     { 
       
   107     txt = qtn_hs_title_editing; 
       
   108     }
       
   109 
       
   110 RESOURCE DIALOG r_yes_no_hs_remove_view 
       
   111     { 
       
   112     flags = EGeneralQueryFlags; 
       
   113     buttons = R_AVKON_SOFTKEYS_YES_NO; 
       
   114     items = 
       
   115         { 
       
   116         DLG_LINE 
       
   117             { 
       
   118             type = EAknCtQuery; 
       
   119             id = EGeneralQuery; 
       
   120             control = AVKON_CONFIRMATION_QUERY 
       
   121                 { 
       
   122                 layout = EConfirmationQueryLayout; 
       
   123                 label = qtn_hs_delete_current_page; 
       
   124                 }; 
       
   125             } 
       
   126         }; 
       
   127     }
       
   128 
       
   129 RESOURCE ARRAY r_array_change_wallpaper
       
   130     {
       
   131     items =
       
   132         {
       
   133         LBUF {txt = qtn_hs_default; },
       
   134         LBUF {txt = qtn_hs_image; },
       
   135         LBUF {txt = qtn_hs_slideshow; }
       
   136         };
       
   137     }
       
   138     
       
   139 // Change wallpaper-dialog
       
   140 RESOURCE AVKON_LIST_QUERY r_listquery_change_wallpaper
       
   141     {
       
   142     items =
       
   143         {
       
   144         AVKON_LIST_QUERY_DLG_LINE
       
   145             {
       
   146             control = AVKON_LIST_QUERY_CONTROL
       
   147                 {
       
   148                 listtype = EAknCtSinglePopupMenuListBox;
       
   149                 heading = qtn_hs_title_change_wallpaper;
       
   150                 listbox = AVKON_LIST_QUERY_LIST
       
   151                     {
       
   152                     array_id = r_array_change_wallpaper;
       
   153                     };
       
   154                 };
       
   155             }
       
   156         };
       
   157     softkeys = R_AVKON_SOFTKEYS_SELECT_BACK;
       
   158     }
       
   159 
       
   160 RESOURCE TBUF r_qtn_hs_operation_failed_no_disk 
       
   161     { 
       
   162     buf = qtn_hs_operation_failed_no_disk; 
       
   163     }