uifw/AvKon/tsrc/bc/S60_SDK5.0/bctestmix50/group/bctestmix50.rss
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 16:06:26 +0300
changeset 22 75713bee6484
parent 0 2f259fa3e83a
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2006 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:  resources for the module
*
*/


//  RESOURCE IDENTIFIER
NAME MIX5

//  INCLUDES

#include <eikon.rh>
#include <eikon.rsg>
#include <avkon.hrh>
#include <avkon.mbg>
#include <avkon.rsg>
#include <avkon.rh>
#include <avkonicons.hrh>

#include <appinfo.rh>

#include "bctestmix50.hrh"
#include "bctestmix50.loc"


//  RESOURCE DEFINITIONS
//-----------------------------------------------------------------------------
//
//----------------------------------------------------------------------------
//
STRUCT BCTouchPane
    {
    BYTE version;
    LONG flags;
    }

//  RESOURCE DEFINITIONS
//----------------------------------------------------------------------------
//
//    RSS_SIGNATURE
//
//-----------------------------------------------------------------------------
//
RESOURCE RSS_SIGNATURE
    {
    }


//-----------------------------------------------------------------------------
//
//    TBUF16
//
//
//-----------------------------------------------------------------------------
//
RESOURCE TBUF16
    {
    buf = qtn_bctestmix50_buff;
    }


//-----------------------------------------------------------------------------
//
//    EIK_APP_INFO
//
//
//-----------------------------------------------------------------------------
//
RESOURCE EIK_APP_INFO
    {
    menubar = r_bctestmix50_menubar_main;
    cba = r_bctestmix50_cba_options_next;
    }


// ---------------------------------------------------------
//    Provide Caption and Icon Info for Scalable UI
//
// ---------------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_bctestmix50_localisable_app_info
    {
    short_caption = qtn_apps_short_caption; 

    caption_and_icon = 
    CAPTION_AND_ICON_INFO
        {
        caption = qtn_apps_caption; 
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_view
//    AVKON_VIEW for CBCTestMix50View
//----------------------------------------------------------------------------
//
RESOURCE AVKON_VIEW r_bctestmix50_view
    {
    menubar = r_bctestmix50_menubar_main;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_menubar_main
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctestmix50_menubar_main
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctestmix50_menu;            
            },
        MENU_TITLE
            {
            menu_pane = r_bctestmix50_case_menu;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_case_menu
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_case_menu
    {
    items = 
        {
        MENU_ITEM
            {
            command = EBCTestCmdOutline1;
            txt = qtn_bctestmix50_outline1;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline2;
            txt = qtn_bctestmix50patch_outline2;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline3;
            txt = qtn_bctestmix50patch_outline3;
            },
        MENU_ITEM
        	{
        	command = EBCTestCmdOutline4;
        	txt = qtn_bctestmix50patch_outline4;
        	}
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_menu
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_menu
    {
    items =
        {
        MENU_ITEM
            {
            command = EProgCmdAutoTest;
            txt = qtn_bctestmix50_autotest;
            },
        MENU_ITEM
            {
            command = EAknCmdExit;
            txt = qtn_bctestmix50_menu_exit;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_cba_options_next
//    
//----------------------------------------------------------------------------
//
RESOURCE CBA r_bctestmix50_cba_options_next
    {
    buttons =
        {
        CBA_BUTTON 
            {
            id = EAknSoftkeyOptions; 
            txt = text_softkey_option;
            },
        AVKON_CBA_BUTTON
            {
            id = EBCTestMix50CbaCmdNext;
            txt = qtn_bctestmix50_cba_next;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_eikdialog
//    
//----------------------------------------------------------------------------
//
RESOURCE DIALOG r_bctestmix50_eikdialog
    {
    flags = EEikDialogFlagNoDrag | EEikDialogFlagCbaButtons
             | EEikDialogFlagWait;
    buttons = R_AVKON_SOFTKEYS_OK_BACK; 
    title = qtn_truncation;
    items =
        {
        DLG_LINE
            {
            type = EEikCtEdwin;
            id = EBcTestEdwin;
            prompt = qtn_truncation;
            control = EDWIN
                {
                flags = EAknEditorFlagDefault;
                width = qtn_eikdialog_width;
                lines = qtn_eikdialog_line;
                maxlength = qtn_eikdialog_base_line;
                };
            },
        DLG_LINE
            {
            type = EAknCtMessageQuery;
            id = EAknMessageQueryContentId;
            control = AVKON_MESSAGE_QUERY
                {
                };
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_slider
//    
//----------------------------------------------------------------------------
//
RESOURCE SLIDER r_bctestmix50_slider
    {
    layout = EAknFormSliderLayout1;
    minvalue = AKNEIK_SLIDER_MINIMUM_VALUE;
    maxvalue = AKNEIK_SLIDER_MAXIMUM_VALUE;
    step = AKNEIK_SLIDER_STEP_SIZE;
    valuetype = EAknSliderValueBareFigure;
    decimalplaces = 0;
    singular_valuelabel = qtn_bctestmix50_singular_txt;
    minlabel = qtn_bctestmix50_min_txt;
    maxlabel = qtn_bctestmix50_max_txt;
    valuelabel = qtn_bctestmix50_value_txt;
    graphical_image=0;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50setpage_text_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctestmix50setpage_text_setting_page
    {
    number = AKNEIK_TEXT_SETTING_PAGE_NUMBER;
    label = qtn_bctestmix50setpage_text_title;
    type = EEikCtEdwin;
    editor_resource_id = r_bctestmix50_edwin;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_edwin
//    
//----------------------------------------------------------------------------
//
RESOURCE EDWIN r_bctestmix50_edwin
    {
    width = AKNEIK_TEXT_SETTING_PAGE_WIDTH;
    lines = AKNEIK_TEXT_SETTING_PAGE_LINES;
    maxlength = AKNEIK_TEXT_SETTING_PAGE_MAXLENGTH20;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_volumecontrol
//    
//----------------------------------------------------------------------------
//
RESOURCE VOLUME r_bctestmix50_volumecontrol
    {
    flags = ESettingsVolumeControl;
    value = AKNEIK_VOLUME_SETTING_VALUE;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50_editor_edwin
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_UNIT_EDITOR r_bctestmix50_editor_edwin 
    {
    min = AKNEIK_EDITOR_MIN_VALUE;
    max = AKNEIK_EDITOR_MAX_VALUE;
    maxfractionaldigits = AKNEIK_EDITOR_MAXFRACT_VALUE;
    flags = EAknUnitEditorAllowUninitialized;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50patch_view
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_VIEW r_bctestmix50patch_view
    {
    menubar = r_bctestmix50patch_menubar_main;
    hotkeys = r_bctest_mix50patch_hotkey_command;
    }

//----------------------------------------------------------------------------
//    r_bctestmix50patch_menubar_main
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctestmix50patch_menubar_main
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctestmix50patch_menu;            
            },
        MENU_TITLE
            {
            menu_pane = r_bctestmix50patch_case_menu;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50patch_case_menu
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50patch_case_menu
    {
    items = 
        {
        MENU_ITEM
            {
            command = EBCTestCmdOutline2;
            txt = qtn_bctestmix50patch_outline1;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline3;
            txt = qtn_bctestmix50patch_outline2;
            },
        MENU_ITEM
        	{
        	command = EBCTestCmdOutline4;
        	txt = qtn_bctestmix50patch_outline4;
        	}
        };
    }

//----------------------------------------------------------------------------
//    r_bctesttoolbar_cba_options_next
//    
//----------------------------------------------------------------------------
//
RESOURCE CBA r_bctesttoolbar_cba_options_next
    {
    buttons =
        {
        CBA_BUTTON 
            {
            id=EAknSoftkeyOptions; 
            txt = text_softkey_option;
            },
        AVKON_CBA_BUTTON
            {
            id = EBCTestMix50PatchTempToolbarCbaCmdNext;
            txt = qtn_bctesttoolbar_cba_next;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50patch_menu
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50patch_menu
    {
    items =
        {
        MENU_ITEM
            {
            command = EProgCmdAutoTest;
            txt = qtn_bctestmix50patch_autotest;
            },
        MENU_ITEM // Menu "Exit"
            {
            command = EAknCmdExit;
            txt = qtn_bctestmix50patch_menu_exit;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50patch_cba_options_next
//    
//----------------------------------------------------------------------------
//
RESOURCE CBA r_bctestmix50patch_cba_options_next
    {
    buttons =
        {
        CBA_BUTTON 
            {
            id=EAknSoftkeyOptions; 
            txt = text_softkey_option;
            },
        AVKON_CBA_BUTTON
            {
            id = EBCTestMix50PatchCbaCmdNext;
            txt = qtn_bctestmix50patch_cba_next;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctestmix50patch_toolbar
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_TOOLBAR r_bctestmix50patch_toolbar
    {
    flags = KAknToolbarFixed;
    items =
        {
        TBAR_CTRL
            {
            type = EAknCtButton;
            id = EBCTestCmdEmptyOutline;
            control = AVKON_BUTTON
                {
                flags = KAknButtonTextInsideFrame;
                states =
                    {
                    AVKON_BUTTON_STATE
                        {
                        txt = "button";
                        }
                    };
                };
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_bmpanim_data_org
//    
//----------------------------------------------------------------------------
//
RESOURCE BMPANIM_DATA r_bctest_bmpanim_data_org
    {
    //identifier = 0;
    frameinterval = 300; // ms
    playmode = EAknBitmapAnimationPlayModePlay;
    flash = 0;
    bmpfile = AVKON_BITMAP_FILE;
    frames = r_bctest_note_error_anim_frames;
    backgroundframe = R_QGN_NOTE_QUERY_ANIM_FRAMES;    
    }
  
//----------------------------------------------------------------------------
//    r_bctest_note_error_anim_frames
//    
//----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctest_note_error_anim_frames
    {
    items=
        {
        BMPANIM_FRAME 
        	{
        	time=300; 
        	bmpid=EMbmAvkonQgn_note_error_2; 
        	maskid=EMbmAvkonQgn_note_error_2_mask;
        	},
        BMPANIM_FRAME 
            {
            time=300; 
            bmpid=EMbmAvkonQgn_note_error; 
            maskid=EMbmAvkonQgn_note_error_mask;
            },
        BMPANIM_FRAME 
            {
            time=300; 
            bmpid=EMbmAvkonQgn_note_error_2; 
            maskid=EMbmAvkonQgn_note_error_2_mask;
            },
        BMPANIM_FRAME 
            {
            time=300; 
            bmpid=EMbmAvkonQgn_note_error; 
            maskid=EMbmAvkonQgn_note_error_mask;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_enhanced_cba_button
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_CBA_BUTTON r_bctest_enhanced_cba_button
    {
    id = EBCTestMix50PatchEnhancedCBAButton;
    txt = "Enhanced CBA";
    }

//----------------------------------------------------------------------------
//    r_bctest_bmpanim_data
//    
//----------------------------------------------------------------------------
//
RESOURCE BMPANIM_DATA r_bctest_bmpanim_data
    {
    //identifier = 0;
    frameinterval = 300; // ms
    playmode = EAknBitmapAnimationPlayModePlay;
    bmpfile = AVKON_BITMAP_FILE;
    }

//----------------------------------------------------------------------------
//    r_bctest_cmdbt_label
//    
//----------------------------------------------------------------------------
//
RESOURCE NAVI_LABEL r_bctest_cmdbt_label
    {
    txt = "CmdButton";
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_hotkey_command
//    
//----------------------------------------------------------------------------
//
RESOURCE HOTKEYS r_bctest_mix50patch_hotkey_command
    {    
    plain = 
        {
        HOTKEY { command=EBCTestCmdOutline2; key= 'o'; }       
        };
    
    control =
        {
        HOTKEY { command=EBCTestCmdOutline2; key= 'o'; }       
        };  
    
    shift_control = 
        {
        HOTKEY { command=EBCTestCmdOutline3; key= 'o'; }       
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_image
//    
//----------------------------------------------------------------------------
//
RESOURCE NAVI_IMAGE r_bctest_mix50patch_image
    {
    bmpfile = AVKON_ICON_FILE;
    bmpid= EMbmAvkonQgn_indi_battery_strength;
    bmpmask= EMbmAvkonQgn_indi_battery_strength_mask;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_indicator
//    
//----------------------------------------------------------------------------
//
RESOURCE INDICATOR r_bctest_mix50patch_indicator
    {
    uid = EAknIndicatorIrActive;
    npriority = 10;
    wpriority = 20;
    bmpfile = AVKON_BITMAP_FILE;
    states = INDICATOR_STATE
        {
        id = EAknIndicatorStateAnimate;
        icons = INDICATOR_ICON
            {
            widebmpid = EMbmAvkonQgn_stat_ir_blank;
            narrowbmpid = EMbmAvkonQgn_stat_ir_uni_blank;
            };
        icons = INDICATOR_ICON
            {
            widebmpid = EMbmAvkonQgn_stat_ir;
            narrowbmpid = EMbmAvkonQgn_stat_ir_uni;
            };
        };
    }  

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_note_icon
//    
//----------------------------------------------------------------------------
//
RESOURCE DIALOG r_bctest_mix50patch_note_icon
    {
    flags = EAknDialogGenericNoteFlags | EEikDialogFlagWait;
    items =
        {
        DLG_LINE
            {
            type = EAknCtNote;
            id = EBCTestMix50PatchNoteCtrlIdNoImageNote;
            control = AVKON_NOTE
                {
                layout = ENoteWithImageLayout;
                singular_label = qtn_bctest_mix50patch_note_singular;
                plural_label = qtn_bctest_mix50patch_note_plural;
                };
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_lbbut
//    
//----------------------------------------------------------------------------
//
RESOURCE LBBUT r_bctest_mix50patch_lbbut
    {
    buttontype=0; // EEikCtCommandButton
    button = CMBUT
        {
        version=0;
        behavior=0;
        layout=0; // ETextRightPictureLeft|EEikCmdButShareExcess
        helptxt="";
        extension=0;
        txt="";
        bmpfile = AVKON_ICON_FILE;
        bmpid= EMbmAvkonQgn_indi_battery_strength;
        bmpmask= EMbmAvkonQgn_indi_battery_strength_mask;
    };
    hotkey=0;
    flags=1; // EEikLabeledButtonShowHotKey
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_iconfile
//    
//----------------------------------------------------------------------------
//
RESOURCE TBUF256 r_bctest_mix50patch_iconfile
    {
    buf = qtn_bctestpopups_iconfile;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_volume_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_volume_setting_page
    {
    number = BCTEST_MIX50PATCH_VOLUME_SETTING_PAGE_NUMBER;
    label = qtn_bctest_mix50patch_setpage_volume_title;
    type = EAknCtVolumeControl;
    editor_resource_id = r_bctest_mix50patch_setpage_volume;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_volume
//    
//----------------------------------------------------------------------------
//
RESOURCE VOLUME r_bctest_mix50patch_setpage_volume
    {
    flags = ESettingsVolumeControl;
    value = BCTEST_MIX50PATCH_VOLUME_SETTING_PAGE_VALUE;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_text_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_setpage_text_setting_page
    {
    number = BCTEST_MIX50PATCH_TEXT_SETTING_PAGE_NUMBER;
    label = qtn_bctest_mix50patch_setpage_text_title;
    menubar = r_bctest_mix50patch_setpage_radiobtn_setpage_menubar;
    type = EEikCtEdwin;
    editor_resource_id = r_bctest_mix50patch_setpage_edwin;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_edwin
//    
//----------------------------------------------------------------------------
//
RESOURCE EDWIN r_bctest_mix50patch_setpage_edwin
    {
    width = BCTEST_MIX50PATCH_TEXT_SETTING_PAGE_WIDTH;
    lines = BCTEST_MIX50PATCH_TEXT_SETTING_PAGE_LINES;
    maxlength = BCTEST_MIX50PATCH_TEXT_SETTING_PAGE_MAXLENGTH20;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_radiobtn_setpage_menubar
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctest_mix50patch_setpage_radiobtn_setpage_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctest_mix50patch_setpage_radiobtn_setpage_menupane;
            txt = qtn_bctest_mix50patch_setpage_menubar;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_radiobtn_setpage_menupane
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctest_mix50patch_setpage_radiobtn_setpage_menupane
    {
    items =
        {
        MENU_ITEM 
            {
            command = EAknAtSetPageCmdSetItemArrayAndSelection;
            txt = qtn_bctest_mix50patch_setpage_radiobtn_setarray_select_item;
            },
        MENU_ITEM 
            {
            command = EAknAtSetPageCmdSelectCurrentItem;
            txt = qtn_bctest_mix50patch_setpage_radiobtn_selcur_item;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_slider_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_setpage_slider_setting_page
    {
    number = BCTEST_MIX50PATCH_SLIDER_SETTING_PAGE_NUMBER;
    label = qtn_bctest_mix50patch_setpage_slider_title;
    type = EAknCtSlider;
    editor_resource_id = r_bctest_mix50patch_setpage_slider;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_slider
//    
//----------------------------------------------------------------------------
//
RESOURCE SLIDER r_bctest_mix50patch_setpage_slider
    {
    layout = EAknSettingsItemSliderLayout;
    minvalue = BCTEST_MIX50PATCH_SLIDER_SETTING_PAGE_MINVALUE;
    maxvalue = BCTEST_MIX50PATCH_SLIDER_SETTING_PAGE_MAXVALUE;
    step = BCTEST_MIX50PATCH_SLIDER_SETTING_PAGE_STEP;
    valuetype = EAknSliderValuePercentage;
    minlabel = qtn_slider_minlabel;
    maxlabel = qtn_slider_maxlabel;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_setting_page
    {
    number = BCTEST_MIX50PATCH_AKNEIK_TEXT_SETTING_PAGE_NUMBER;
    label = qtn_bctest_mix50patch_text_title;
    menubar = r_bctest_mix50patch_setpage_radiobtn_setpage_menubar;
    type = EEikCtEdwin;
    editor_resource_id = r_bctest_mix50patch_edwin;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_edwin
//    
//----------------------------------------------------------------------------
//
RESOURCE EDWIN r_bctest_mix50patch_edwin
    {
    width = BCTEST_MIX50PATCH_AKNEIK_TEXT_SETTING_PAGE_WIDTH;
    lines = BCTEST_MIX50PATCH_AKNEIK_TEXT_SETTING_PAGE_LINES;
    maxlength = BCTEST_MIX50PATCH_AKNEIK_TEXT_SETTING_PAGE_MAXLENGTH20;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_list_item_array
//    
//----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctest_mix50patch_setpage_list_item_array
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list0;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list1;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list2;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list3;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list4;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list5;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list6;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list7;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list8;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_setpage_item_list9;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_password_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_password_setting_page
    {
    number = BCTEST_MIX50PATCH_ALPHA_PASSWORD_SETTING_PAGE_NUMBER;
    label = qtn_bctest_mix50patch_password_setpage_title;
    type = EEikCtSecretEd;
    editor_resource_id = r_bctest_mix50patch__setpage_password;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch__setpage_password
//    
//----------------------------------------------------------------------------
//
RESOURCE SECRETED r_bctest_mix50patch__setpage_password
    {
    num_letters = BCTEST_MIX50PATCH_ALPHA_PASSWORD_LENGTH_OF_STRING;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_radiobtn_setpage
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_setpage_radiobtn_setpage
    { 
    label = qtn_bctest_mix50patch_setpage_radiobtn_title;
    softkey_resource = R_AVKON_SOFTKEYS_OPTIONS_BACK;
    type = EAknSetListBox;
    editor_resource_id = r_bctest_mix50patch_setpage_radiobtn_setpage_listbox;
    menubar = r_bctest_mix50patch_setpage_radiobtn_setpage_menubar;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_radiobtn_setpage_listbox
//    
//----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctest_mix50patch_setpage_radiobtn_setpage_listbox 
    {
    flags = EEikListBoxMultipleSelection;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_radiobtn_setpage_menubar
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctest_mix50patch_radiobtn_setpage_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctest_mix50patch_setpage_radiobtn_setpage_menupane;
            txt = qtn_bctest_mix50patch_setpage_menubar;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_ipaddress_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_setpage_ipaddress_setting_page
    {   
    label= "IP";
    type = EAknCtIpFieldEditor;
    editor_resource_id = r_bctest_mix50patch_setpage_ipaddress_editor;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_ipaddress_editor
//    
//----------------------------------------------------------------------------
//
RESOURCE IP_FIELD_EDITOR r_bctest_mix50patch_setpage_ipaddress_editor
    {
    min_field_values = IP_FIELD
        { 
        first_field = BCTEST_MIX50PATCH_IPADDRESS_MIN_FIRST_FIELD_VALUE;
        second_field = BCTEST_MIX50PATCH_IPADDRESS_MIN_SECOND_FIELD_VALUE;
        third_field = BCTEST_MIX50PATCH_IPADDRESS_MIN_THIRD_FIELD_VALUE;
        fourth_field = BCTEST_MIX50PATCH_IPADDRESS_MIN_FOURTH_FIELD_VALUE;
        };
    max_field_values = IP_FIELD
        {
        first_field = BCTEST_MIX50PATCH_IPADDRESS_MAX_FIRST_FIELD_VALUE;
        second_field = BCTEST_MIX50PATCH_IPADDRESS_MAX_SECOND_FIELD_VALUE;
        third_field = BCTEST_MIX50PATCH_IPADDRESS_MAX_THIRD_FIELD_VALUE;
        fourth_field = BCTEST_MIX50PATCH_IPADDRESS_MAX_FOURTH_FIELD_VALUE;
        };
    flags = 0;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_time_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctest_mix50patch_setpage_time_setting_page
    {
    number = BCTEST_MIX50PATCH_TIME_SETTING_PAGE_NUMBER;
    label = "time";
    type = EEikCtTimeEditor;
    editor_resource_id = r_bctest_mix50patch_setpage_time_editor;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_setpage_time_editor
//    
//----------------------------------------------------------------------------
//
RESOURCE TIME_EDITOR r_bctest_mix50patch_setpage_time_editor
    {
    minTime = TIME
        {
        second = BCTEST_MIX50PATCH_TIME_EDITOR_MIN_SECOND;
        minute = BCTEST_MIX50PATCH_TIME_EDITOR_MIN_MINUTE;
        hour = BCTEST_MIX50PATCH_TIME_EDITOR_MIN_HOUR;
        };
    maxTime = TIME
        {
        second = BCTEST_MIX50PATCH_TIME_EDITOR_MAX_SECOND;
        minute = BCTEST_MIX50PATCH_TIME_EDITOR_MAX_MINUTE;
        hour = BCTEST_MIX50PATCH_TIME_EDITOR_MAX_HOUR;
        };
    }

//----------------------------------------------------------------------------
//    r_bctestlist_checkbox_setting_page
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctestlist_checkbox_setting_page
    {
    number = BCTEST_MIX50PATCH_CHECKBOX_SETTING_PAGE_NUMBER;
    label = qtn_bctest_mix50patch_list_multi_title;
    type = EAknSetListBox;
    editor_resource_id = r_bctest_mix50patch_list;
    menubar = r_bctest_mix50patch_list_checkbox_menubar;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_list
//    
//----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctest_mix50patch_list
    {
    array_id = r_bctest_mix50patch_list_item;
    flags = EAknListBoxSelectionList;
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_list_item
//    
//----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctest_mix50patch_list_item
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctest_mix50patch_list_item_s1;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_list_item_s3;
            },
        LBUF
            {
            txt = qtn_bctest_mix50patch_list_item_s4;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_list_checkbox_menubar
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctest_mix50patch_list_checkbox_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctest_mix50patch_list_checkbox_menupane;            
            }
        };
    }
    
//----------------------------------------------------------------------------
//    r_bctest_mix50patch_list_checkbox_menupane
//    
//----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctest_mix50patch_list_checkbox_menupane
    {
    items =
        {
        MENU_ITEM 
            {
            command = EProgSoftkeyNextOutline;
            txt = qtn_bctest_mix50patch_list_softkey_next;
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_toolbar
//    
//----------------------------------------------------------------------------
//
RESOURCE AVKON_TOOLBAR r_bctest_mix50patch_toolbar
    {
    flags = KAknToolbarFixed | KAknToolbarWithoutCba;
    items =
        {
        TBAR_CTRL
            {
            type = EAknCtButton;
            id = EBCTestMix50PatchToolbarCtrl;   
            control = AVKON_BUTTON
                {
                flags = 0;
                states =
                    {
                          
                    };
                };
            }
        };
    }

//----------------------------------------------------------------------------
//    r_bctest_mix50patch_touchpane
//    
//----------------------------------------------------------------------------
//
RESOURCE BCTouchPane r_bctest_mix50patch_touchpane
    {
    version = 1;
    flags = 0;
    }


//-----------------------------------------------------------------------------
//
//    r_bctestlist_view
//    AVKON_VIEW for CAknAtColumnView
//
//-----------------------------------------------------------------------------
//
RESOURCE AVKON_VIEW r_bctestmix50_list_view
    {
    menubar = r_bctestmix50_list_menubar_main;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_menubar_main
//    MenuBar
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctestmix50_list_menubar_main
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctestmix50_list_exit;
            },
        MENU_TITLE
            {
            menu_pane = r_bctestmix50_list_main_menu;
            }        
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_main_menu
//    Menu Pane
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_list_main_menu
    {
    items =
        {
        MENU_ITEM
            {
            cascade = r_bctestmix50_list_column_menu;
            txt = qtn_bctestmix50_list_menu_column;
            },
       
        MENU_ITEM
            {
            cascade = r_bctestmix50_list_other_menu;
            txt = qtn_bctestmix50_list_menu_other;
            }
        
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_column_menu
//    cascade menu for column list boxes
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_list_column_menu
    {
    items =
        {
        MENU_ITEM
            {
            command = EBCTestCmdOutline01;
            txt = qtn_bctestmix50_list_outline01;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline02;
            txt = qtn_bctestmix50_list_outline02;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline03;
            txt = qtn_bctestmix50_list_outline03;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline04;
            txt = qtn_bctestmix50_list_outline04;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline05;
            txt = qtn_bctestmix50_list_outline05;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline06;
            txt = qtn_bctestmix50_list_outline06;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline07;
            txt = qtn_bctestmix50_list_outline07;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline08;
            txt = qtn_bctestmix50_list_outline08;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline09;
            txt = qtn_bctestmix50_list_outline09;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline10;
            txt = qtn_bctestmix50_list_outline10;
            }        
        };
    }





//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_other_menu
//    cascade menu for other cases
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_list_other_menu
    {
    items =
        {
        MENU_ITEM
            {
            command = EBCTestCmdOutline43;
            txt = qtn_bctestmix50_list_outline43;
            },
        MENU_ITEM
            {
            command = EBCTestCmdOutline44;
            txt = qtn_bctestmix50_list_outline44;
            }        
        };
    }
    


//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_exit
//    Menu Pane
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_list_exit
    {
    items =
        {
        MENU_ITEM
            {
            command = EProgCmdAutoTest;
            txt = qtn_bctestmix50_list_autotest;
            },
        MENU_ITEM
            {
            command = EAknCmdExit;
            txt = qtn_bctestmix50_list_exit;
            }
        };
    }
    
//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_popupfind
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_popupfind
    {
    array_id = r_bctestmix50_list_item_single_popupfind;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_1_add_rm
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_1_add_rm
    {
    array_id = r_bctestmix50_list_item_single1_add_rm;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_markable
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_markable
    {
    array_id = r_bctestmix50_list_item_single_markable;
    flags = EAknListBoxMarkableList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_markable_shortcut
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_markable_shortcut
    {
    array_id = r_bctestmix50_list_item_single_markable;
    flags = EAknListBoxMarkableListWithShortcuts;
    }


//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_3
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_3
    {
    array_id = r_bctestmix50_list_item_single3;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_4
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_4
    {
    array_id = r_bctestmix50_list_item_single1;
    flags = EAknListBoxMarkableList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_5
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_5
    {
    array_id = r_bctestmix50_list_item_single4;
    flags = EAknListBoxMultiselectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_6
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_6
    {
    array_id = r_bctestmix50_list_item_single5;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_7
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_7
    {
    array_id = r_bctestmix50_list_item_single6;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_sub
//    ListBox( Single )
//
//-----------------------------------------------------------------------------
//
/*RESOURCE LISTBOX r_bctestmix50_list_single_sub
    {
    array_id = r_bctestmix50_list_item_single_sub;
    flags = EAknListBoxSelectionList;
    }
*/
//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_number
//    ListBox( Single Number )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_single_number
    {
    array_id = r_bctestmix50_list_item_single_number;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_setting
//    ListBox( Setting style )
//
//-----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_bctestmix50_list_setting_add_rm
    {
    array_id = r_bctestmix50_list_item_setting_add_rm;
    flags = EAknListBoxSelectionList;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_setting_number
//    ListBox( Setting style )
//
//-----------------------------------------------------------------------------
//
/*
RESOURCE LISTBOX r_bctestmix50_list_setting_number
    {
    array_id = r_bctestmix50_list_item_setting_number;
    flags = EAknListBoxSelectionList;
    }



*/

RESOURCE LISTBOX r_bctestmix50_list_markablelist_big_single
    {
    array_id = r_bctestmix50_list_item_big_single;
    flags = EAknListBoxMarkableList;
    }


//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single1
//    Items array for ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single1
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s4;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s6;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s7;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s8;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s9;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single1_add_rm
//    Items array for ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single1_add_rm
    {
    items =
        {
        LBUF { txt = qtn_bctestmix50_list_item_s9; },
        LBUF { txt = qtn_bctestmix50_list_item_s2_rm;  },
        LBUF { txt = qtn_bctestmix50_list_item_s3;     },
        LBUF { txt = qtn_bctestmix50_list_item_s4;     },
        LBUF { txt = qtn_bctestmix50_list_item_s5;     },
        LBUF { txt = qtn_bctestmix50_list_item_s6;     },
        LBUF { txt = qtn_bctestmix50_list_item_s7;     },
        LBUF { txt = qtn_bctestmix50_list_item_s8;     },
        LBUF { txt = qtn_bctestmix50_list_item_s1_add;     }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single_popupfind
//    Items array for ListBox( Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single_popupfind
    {
    items =
        {
        LBUF { txt = qtn_bctestmix50_list_item_popupfind; },
        LBUF { txt = qtn_bctestmix50_list_item_s1; },
        LBUF { txt = qtn_bctestmix50_list_item_s1; },
        LBUF { txt = qtn_bctestmix50_list_item_s2; },
        LBUF { txt = qtn_bctestmix50_list_item_s3; },
        LBUF { txt = qtn_bctestmix50_list_item_s4; },
        LBUF { txt = qtn_bctestmix50_list_item_s5; },
        LBUF { txt = qtn_bctestmix50_list_item_s6; },
        LBUF { txt = qtn_bctestmix50_list_item_s7; },
        LBUF { txt = qtn_bctestmix50_list_item_s8; },
        LBUF { txt = qtn_bctestmix50_list_item_s9; }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_item_bctestmix50_list_single_markable
//    Items array for ListBox
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single_markable
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_this_is;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_markable_list;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s10;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s12;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s4;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s6;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s7;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s8;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single3
//    Items array for ListBox( Single 3 )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single3
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s4;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single4
//    Items array for ListBox( Single 4 )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single4
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_this_is;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_multisel_list;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_press_0;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s10;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s11;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s6;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s7;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s8;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single5
//    Items array for ListBox( Single 5 )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single5
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s4;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s9;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s6;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s7;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single6
//    Items array for ListBox( Single 6 )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single6
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_open1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_open2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s4;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_s6;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_single_number
//    Items array for ListBox( Single Number )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_single_number
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn4;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn6;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn7;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_sn8;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_big_single
//    Items array for ListBox( Big Single )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_big_single
    {
    items =
        {
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs1;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs2;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs3;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs4;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs5;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs6;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs7;
            },
        LBUF
            {
            txt = qtn_bctestmix50_list_item_bs8;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_item_setting_add_rm
//    Items array for ListBox( Setting )
//
//-----------------------------------------------------------------------------
//
RESOURCE ARRAY r_bctestmix50_list_item_setting_add_rm
    {
    items =
        {
        LBUF { txt = qtn_bctestmix50_list_item_st1_add; },
        LBUF { txt = qtn_bctestmix50_list_item_st2_rm; },
        LBUF { txt = qtn_bctestmix50_list_item_st3; },
        LBUF { txt = qtn_bctestmix50_list_item_st4; },
        LBUF { txt = qtn_bctestmix50_list_item_st5; },
        LBUF { txt = qtn_bctestmix50_list_item_st6; },
        LBUF { txt = qtn_bctestmix50_list_item_st7; },
        LBUF { txt = qtn_bctestmix50_list_item_st8; }
        };
    }
/*



*/
//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_empty_setting_page
//    For outline 16.
//
//-----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_PAGE r_bctestmix50_list_empty_setting_page
    {   
    label= qtn_bctestmix50_list_setpage_empty_label;
    type = EAknCtPopupSettingList;
    editor_resource_id = r_bctestmix50_list_empty_setting_list;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_empty_setting_list
//    For outline 16.
//
//-----------------------------------------------------------------------------
//
RESOURCE POPUP_SETTING_LIST r_bctestmix50_list_empty_setting_list
    {
    }


//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_listdlg_cancelled
//    Note prompt for outline 109. 
//
//-----------------------------------------------------------------------------
//
RESOURCE TBUF256 r_bctestmix50_list_listdlg_cancelled
    {
    buf = qtn_bctestmix50_list_listdlg_cancelled;
    }

//-----------------------------------------------------------------------------
//
//    qtn_bctestmix50_list_listdlg_rec_obsevent
//    Note prompt for receiving observer event of list dialog. 
//
//-----------------------------------------------------------------------------
//
RESOURCE TBUF256 r_bctestmix50_list_listdlg_rec_obsevent
    {
    buf = qtn_bctestmix50_list_listdlg_rec_obsevent;
    }

//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_markable_dialog
//
//-----------------------------------------------------------------------------
//
RESOURCE DIALOG r_bctestmix50_list_markable_dialog
    {
    flags = EAknDialogMarkableList;
    buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
    items =
        {
        DLG_LINE
            {
            type = EAknCtSingleListBox;
            id = ESelectionListControl; 
            control = LISTBOX
                {
                flags = EAknListBoxMarkableList;
                };
            }
        };
    }
    
//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_single_selection_list_dialog
//
//-----------------------------------------------------------------------------
//
RESOURCE DIALOG r_bctestmix50_list_single_selection_list_dialog
    {
    flags = EAknDialogSelectionList;
    buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
    items =
        {
        DLG_LINE
            {
            type = EAknCtSingleListBox;
            id = EBCTestMix50ListDlgLbx;
            control = LISTBOX
                {
                flags = EAknListBoxSelectionList;
                };
            }
        };
    }
    


//-----------------------------------------------------------------------------
//
//    r_aknatsetpage_checkbox_setting_page
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_bctestmix50_list_checkbox_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_bctestmix50_list_checkbox_menupane;            
            }
        };
    }
    
//-----------------------------------------------------------------------------
//
//    r_bctestmix50_list_checkbox_menupane
//
//-----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_bctestmix50_list_checkbox_menupane
    {
    items =
        {
        MENU_ITEM 
            {
            command = EProgSoftkeyNextOutline;
            txt = qtn_bctestmix50_list_softkey_next;
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctesteditor_secret
//
//-----------------------------------------------------------------------------
//    
RESOURCE SECRETED r_bctesteditor_secret
   {
    num_letters=8;	
   }  

//-----------------------------------------------------------------------------
//
//    r_bctestaknquedlg_oneline_data_query
//    Resource of 1 line Data Query.
//
//-----------------------------------------------------------------------------

RESOURCE DIALOG r_bctestaknquedlg_oneline_data_query
    {
    flags = EGeneralQueryFlags;
    buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
    items =
        {
        DLG_LINE
            {
            type = EAknCtQuery;
            id = EGeneralQuery;
            control = AVKON_DATA_QUERY
                {
                layout = EStaticSizeDataLayout; // EDataLayout;
                label = "Query";
                control = EDWIN
                    {
                    flags = EEikEdwinNoHorizScrolling;// | EEikEdwinResizable;
                    width = AKNTAQUERY_EDWIN_WIDTH;
                    maxlength = AKNTAQUERY_EDWIN_MAXLENGTH;
                    };
                };
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctest_staticnote_dialog
//    Resource of static note dialog.
//
//-----------------------------------------------------------------------------
RESOURCE DIALOG r_bctest_staticnote_dialog
    {
    flags=EEikDialogFlagNoDrag | EEikDialogFlagNoTitleBar |
	      EEikDialogFlagCbaButtons | EEikDialogFlagWait;
    buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
    items=
        {
        DLG_LINE
            {
            type=EAknCtNote;
            id=EGeneralNote;
            control= AVKON_NOTE  
                { 
                layout = EGeneralLayout;
                singular_label = "ABC";
                animation = R_QGN_NOTE_INFO_ANIM;
                };
            }
        };
    }

//-----------------------------------------------------------------------------
//
//    r_bctest_number_edwin_control
//    edwin control of ENumberLayout.
//
//-----------------------------------------------------------------------------
RESOURCE AVKON_DATA_QUERY r_bctest_number_edwin_control
	{
	layout = ENumberLayout;
    label = "Number Layout Test";
	control = AVKON_INTEGER_EDWIN
		{
		maxlength = 0;
		min =			 -99999999;
		max =			  99999999;
		unset_value=	-100000000;
		extension1 = 0;
		extension2 = 0;
		};
	}

//-----------------------------------------------------------------------------
//
//    r_bctest_duration_edwin_control
//    edwin control of EDurationLayout.
//
//-----------------------------------------------------------------------------
RESOURCE AVKON_DATA_QUERY r_bctest_duration_edwin_control
	{
	layout = EDurationLayout;
    label = "Duration Layout Test";
	control = DURATION_EDITOR
		{
		minDuration = DURATION
			{ 
			seconds = 0;
			};
		maxDuration = DURATION
			{ 
			seconds = 0;
			};
		flags = 0;
		};
	}

//-----------------------------------------------------------------------------
//
//    r_bctest_date_edwin_control
//    edwin control of EDateLayout.
//
//-----------------------------------------------------------------------------
RESOURCE AVKON_DATA_QUERY r_bctest_date_edwin_control
	{
	layout = EDateLayout;
    label = "Date Layout Test";
	control = DATE_EDITOR
		{
		minDate = DATE
			{ 
			day = 0; 
			month = 0; 
			year = 2000; 
			};
		maxDate = DATE
			{ 
			day = 0; 
			month = 0; 
			year = 2009; 
			};
		flags=0;
		};
	}

//-----------------------------------------------------------------------------
//
//    r_bctest_ip_field
//    resource of ip field.
//
//-----------------------------------------------------------------------------
RESOURCE IP_FIELD r_bctest_ip_field
	{
	
	}

//-----------------------------------------------------------------------------
//
//    r_bctest_icon_array
//    resource of icon array.
//
//-----------------------------------------------------------------------------
RESOURCE AKN_ICON_ARRAY r_bctest_icon_array
	{
	type = EAknIconArraySimple;
	bmpfile = "z:\\system\\data\\avkon.mbm";
	icons =  
		{
		AKN_ICON
			{
			iconId = 0;
			maskId = 1;
			}
		};
	}
// End of File