classicui_plat/extended_setting_pages_api/tsrc/data/testdomsetpage.rss
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 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:  test akntransparentcamerasettingpage.h
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 //  RESOURCE IDENTIFIER
       
    21 NAME PAGE
       
    22 
       
    23 //  INCLUDES
       
    24 #include <eikon.rh>
       
    25 #include <avkon.rh>
       
    26 #include <avkon.rsg>
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 //    Define the resource file signature
       
    31 //    This resource should be empty.
       
    32 //
       
    33 // -----------------------------------------------------------------------------
       
    34 //
       
    35 RESOURCE RSS_SIGNATURE
       
    36     {
       
    37     }
       
    38 
       
    39 //-----------------------------------------------------------------------------
       
    40 //
       
    41 //    r_setting_page
       
    42 //
       
    43 //-----------------------------------------------------------------------------
       
    44 //
       
    45 RESOURCE AVKON_SETTING_PAGE r_setting_page
       
    46     {
       
    47     number = 1;
       
    48     label = qtn_aknatlist_multi_title;
       
    49     type = EAknSetListBox;
       
    50     editor_resource_id = r_listbox;
       
    51     }
       
    52 
       
    53 //-----------------------------------------------------------------------------
       
    54 //
       
    55 //    r_listbox
       
    56 //
       
    57 //-----------------------------------------------------------------------------
       
    58 //
       
    59 
       
    60 RESOURCE LISTBOX r_listbox
       
    61     {
       
    62     array_id = r_item_array;
       
    63     flags = EAknListBoxSelectionList;
       
    64     }
       
    65 
       
    66 //-----------------------------------------------------------------------------
       
    67 //
       
    68 //    r_item_array
       
    69 //
       
    70 //-----------------------------------------------------------------------------
       
    71 //
       
    72 RESOURCE ARRAY r_item_array
       
    73     {
       
    74     items =
       
    75         {
       
    76         LBUF
       
    77             {
       
    78             txt = "first";
       
    79             },
       
    80         LBUF
       
    81             {
       
    82             txt = "second";
       
    83             }
       
    84         };
       
    85     }
       
    86