diff -r 000000000000 -r f72a12da539e idlehomescreen/xmluirendering/uiengine/src/xnuiengine.rss --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlehomescreen/xmluirendering/uiengine/src/xnuiengine.rss Thu Dec 17 08:40:49 2009 +0200 @@ -0,0 +1,163 @@ +/* +* Copyright (c) 2005-2007 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: +* +*/ + + +// ========== RESOURCE IDENTIFIER ============================================= + +NAME XNAI + +// ========== INCLUDE FILES =================================================== + +#include +#include +#include +#include +#include +#include +#include +// ========== RESOURCE DEFINITIONS ============================================ + +RESOURCE RSS_SIGNATURE { } +RESOURCE TBUF { buf = ""; } + +// Select widget-dialog +RESOURCE AVKON_LIST_QUERY r_listquery_add_widget + { + items = + { + AVKON_LIST_QUERY_DLG_LINE + { + control = AVKON_LIST_QUERY_CONTROL + { + listtype = EAknCtSinglePopupMenuListBox; + heading = qtn_hs_select_widget; + listbox = AVKON_LIST_QUERY_LIST + { + // dynamically filled + }; + }; + } + }; + softkeys = R_AVKON_SOFTKEYS_SELECT_BACK; + } + + +// xml listquery dialog +RESOURCE AVKON_LIST_QUERY r_xml_listquery + { + items = + { + AVKON_LIST_QUERY_DLG_LINE + { + control = AVKON_LIST_QUERY_CONTROL + { + listtype = EAknCtSinglePopupMenuListBox; + // heading = dynamically filled + listbox = AVKON_LIST_QUERY_LIST + { + // dynamically filled + }; + }; + } + }; + softkeys = R_AVKON_SOFTKEYS_SELECT_BACK; + } + +RESOURCE TBUF r_qtn_hs_add_widget_full + { + buf = qtn_hs_add_widget_full; + } + +RESOURCE TBUF r_qtn_hs_error_widgets_removed + { + buf = qtn_hs_error_widgets_removed; + } + +RESOURCE TBUF r_qtn_hs_hs_memory_full + { + buf = qtn_hs_hs_memory_full; + } + +RESOURCE TBUF r_qtn_hs_max_amount_of_pages_note + { + buf = qtn_hs_max_amount_of_pages_note; + } + +RESOURCE TBUF r_qtn_hs_delete_page + { + buf = qtn_hs_delete_current_page; + } + +RESOURCE TITLE_PANE r_qtn_hs_title_editmode + { + txt = qtn_hs_title_editing; + } + +RESOURCE DIALOG r_yes_no_hs_remove_view + { + flags = EGeneralQueryFlags; + buttons = R_AVKON_SOFTKEYS_YES_NO; + items = + { + DLG_LINE + { + type = EAknCtQuery; + id = EGeneralQuery; + control = AVKON_CONFIRMATION_QUERY + { + layout = EConfirmationQueryLayout; + label = qtn_hs_delete_current_page; + }; + } + }; + } + +RESOURCE ARRAY r_array_change_wallpaper + { + items = + { + LBUF {txt = qtn_hs_default; }, + LBUF {txt = qtn_hs_image; }, + LBUF {txt = qtn_hs_slideshow; } + }; + } + +// Change wallpaper-dialog +RESOURCE AVKON_LIST_QUERY r_listquery_change_wallpaper + { + items = + { + AVKON_LIST_QUERY_DLG_LINE + { + control = AVKON_LIST_QUERY_CONTROL + { + listtype = EAknCtSinglePopupMenuListBox; + heading = qtn_hs_title_change_wallpaper; + listbox = AVKON_LIST_QUERY_LIST + { + array_id = r_array_change_wallpaper; + }; + }; + } + }; + softkeys = R_AVKON_SOFTKEYS_SELECT_BACK; + } + +RESOURCE TBUF r_qtn_hs_operation_failed_no_disk + { + buf = qtn_hs_operation_failed_no_disk; + }