upnpframework/upnpaiwengine/data/upnpaiwengineresources.rss
branchIOP_Improvements
changeset 40 08b5eae9f9ff
parent 39 6369bfd1b60d
child 41 b4d83ea1d6e2
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
     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:  Resource definitions for project UpnpAiwEngine
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 NAME UPAE
       
    20 
       
    21 // INCLUDES
       
    22 #include <avkon.rh>
       
    23 #include <avkon.hrh>
       
    24 #include <avkon.rsg>
       
    25 #include <avkon.mbg>
       
    26 #include <eikon.rh>
       
    27 #include <avkon.loc>            // For "Processing" wait note.
       
    28 #include <upnpframework.loc>
       
    29 
       
    30 // RESOURCE IDENTIFIERS
       
    31 
       
    32 RESOURCE RSS_SIGNATURE { }
       
    33 RESOURCE TBUF { buf=""; }
       
    34 
       
    35 // --------------------------------------------------------------------------
       
    36 // R_AIW_DRM_SKIP_INFO_NOTE
       
    37 // "Skipping DRM protected files." - note
       
    38 // Used to indicate that DRM protected files will be skipped.
       
    39 // --------------------------------------------------------------------------
       
    40 //
       
    41 RESOURCE DIALOG r_aiw_drm_skip_info_note
       
    42     {
       
    43     flags = EAknInformationNoteFlags | EEikDialogFlagWait;
       
    44     buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
    45     items =
       
    46         {
       
    47         DLG_LINE
       
    48             {
       
    49             type = EAknCtNote;
       
    50             id = EGeneralNote;
       
    51             control = AVKON_NOTE
       
    52                 {
       
    53                 layout = EGeneralLayout;
       
    54                 singular_label = qtn_iupnp_drm_file_text;
       
    55                 imageid = EMbmAvkonQgn_note_info;
       
    56                 imagemask = EMbmAvkonQgn_note_info_mask;
       
    57                 animation = R_QGN_NOTE_INFO_ANIM;
       
    58                 };
       
    59             }
       
    60         };
       
    61     }
       
    62 
       
    63 // --------------------------------------------------------------------------
       
    64 // R_AIW_ENABLE_SHARING_WAIT_NOTE
       
    65 // --------------------------------------------------------------------------
       
    66 RESOURCE DIALOG r_aiw_enable_sharing_wait_note
       
    67     {
       
    68     flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
    69     buttons=R_AVKON_SOFTKEYS_CANCEL;
       
    70     items=
       
    71         {
       
    72         DLG_LINE
       
    73             {
       
    74             type=EAknCtNote;
       
    75             id=EGeneralNote;
       
    76             control=AVKON_NOTE
       
    77                 {
       
    78                 layout = EWaitLayout;
       
    79                 singular_label = qtn_iupnp_command_prep_playback;
       
    80                 imageid = EMbmAvkonQgn_note_progress;
       
    81                 imagemask = EMbmAvkonQgn_note_progress_mask;
       
    82                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
    83                 };
       
    84             }
       
    85         };
       
    86     }
       
    87 
       
    88 // ---------------------------------------------------------------------------
       
    89 // R_AIW_DRM_FILTERING_WAIT_NOTE
       
    90 // ---------------------------------------------------------------------------
       
    91 RESOURCE DIALOG r_aiw_drm_filtering_wait_note   
       
    92     {   
       
    93     flags = EAknWaitNoteFlags; 
       
    94     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
    95     items =   
       
    96         {   
       
    97         DLG_LINE   
       
    98             {   
       
    99             type = EAknCtNote;   
       
   100             id = EGeneralNote;  
       
   101             control = AVKON_NOTE   
       
   102                 {   
       
   103                 layout = EWaitLayout;
       
   104                 singular_label = qtn_gen_note_processing;
       
   105                 imageid = EMbmAvkonQgn_note_progress;   
       
   106                 imagemask = EMbmAvkonQgn_note_progress_mask;
       
   107                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;   
       
   108                 };   
       
   109             }   
       
   110         };   
       
   111     }  
       
   112 
       
   113 // --------------------------------------------------------------------------
       
   114 // r_aiw_info_copy_ext_one_text
       
   115 // Note shown when one file has been copied to extenal server device.
       
   116 // --------------------------------------------------------------------------
       
   117 RESOURCE TBUF r_aiw_info_copy_ext_one_text
       
   118     { 
       
   119     buf = qtn_iupnp_info_copy_ext_one;
       
   120     }
       
   121 
       
   122 // --------------------------------------------------------------------------
       
   123 // r_aiw_info_copy_ext_many_text
       
   124 // Note shown when many files have been copied to extenal server device.
       
   125 // --------------------------------------------------------------------------
       
   126 RESOURCE TBUF r_aiw_info_copy_ext_many_text
       
   127     { 
       
   128     buf = qtn_iupnp_info_copy_ext_many;
       
   129     }
       
   130 
       
   131 // --------------------------------------------------------------------------
       
   132 // r_aiw_info_move_ext_one_text
       
   133 // Note shown when one file has been moved to extenal server device.
       
   134 // --------------------------------------------------------------------------
       
   135 RESOURCE TBUF r_aiw_info_move_ext_one_text
       
   136     { 
       
   137     buf = qtn_iupnp_info_move_ext_one;
       
   138     }
       
   139 
       
   140 // --------------------------------------------------------------------------
       
   141 // r_aiw_info_move_ext_many_text
       
   142 // Note shown when many files have been copied to extenal server device.
       
   143 // --------------------------------------------------------------------------
       
   144 RESOURCE TBUF r_aiw_info_move_ext_many_text
       
   145     { 
       
   146     buf = qtn_iupnp_info_move_ext_many;
       
   147     }
       
   148 
       
   149 // End of file