phonebookui/Phonebook2/CommandsExtension/rss/SendContactCmd.rss
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     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:  This file contains resources for Phonebook 2
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 /**
       
    20  * 'Select fields to send' listbox for contact list views.
       
    21  */
       
    22 RESOURCE LISTBOX r_phonebook2_send_options
       
    23 	{
       
    24 	array_id = r_phonebook2_send_options_texts;
       
    25     flags = EAknListBoxMenuList;
       
    26 	}
       
    27 
       
    28 
       
    29 /**
       
    30  * 'Select fields to send' listbox texts for contact list views.
       
    31  */
       
    32 RESOURCE ARRAY r_phonebook2_send_options_texts
       
    33     {
       
    34     items = 
       
    35         {
       
    36         LBUF { txt=qtn_bcard_send_sms_no_image; },
       
    37         LBUF { txt=qtn_bcard_send_sms_image; }
       
    38         };
       
    39     }
       
    40 
       
    41 /**
       
    42  * 'Select fields to send' listbox for contact info view.
       
    43  */
       
    44 RESOURCE LISTBOX r_pbk2_contactinfo_send_options
       
    45 	{
       
    46 	array_id = r_pbk2_contactinfo_send_options_texts; 
       
    47     flags = EAknListBoxMenuList;
       
    48 	}
       
    49 
       
    50 
       
    51 /**
       
    52  * 'Select fields to send' listbox for contact info view.
       
    53  */
       
    54 RESOURCE LISTBOX r_pbk2_contactinfo_send_options_sms_thumbnail
       
    55 	{
       
    56 	array_id = r_pbk2_contactinfo_send_options_texts_sms_thumbnail; 
       
    57     flags = EAknListBoxMenuList;
       
    58 	}
       
    59 
       
    60 
       
    61 /**
       
    62  * 'Select fields to send' listbox for contact info view.
       
    63  */
       
    64 RESOURCE LISTBOX r_pbk2_contactinfo_send_options_sms_thumbnail_no_field
       
    65 	{
       
    66 	array_id = r_pbk2_contactinfo_send_options_texts_sms_thumbnail_no_field;
       
    67     flags = EAknListBoxMenuList;
       
    68 	}
       
    69 
       
    70 
       
    71 /**
       
    72  * 'Select fields to send' listbox texts for contact info view.
       
    73  */
       
    74 RESOURCE ARRAY r_pbk2_contactinfo_send_options_texts
       
    75     {
       
    76     items = 
       
    77         {
       
    78         LBUF { txt=qtn_bcard_choice_send_item_data; },
       
    79         LBUF { txt=qtn_bcard_choice_send_all_data; }
       
    80         };
       
    81     }
       
    82 
       
    83 /**
       
    84  * 'Select fields to send' listbox texts for contact info view.
       
    85  */
       
    86 RESOURCE ARRAY r_pbk2_contactinfo_send_options_texts_sms_thumbnail
       
    87     {
       
    88     items = 
       
    89         {
       
    90         LBUF { txt=qtn_bcard_choice_send_item_data; },
       
    91 		LBUF { txt=qtn_bcard_send_detail_without_p; },	
       
    92 		LBUF { txt=qtn_bcard_send_detail_with_pict; }
       
    93         };
       
    94     }
       
    95 
       
    96 
       
    97 /**
       
    98  * 'Select fields to send' listbox texts for contact info view.
       
    99  */
       
   100 RESOURCE ARRAY r_pbk2_contactinfo_send_options_texts_sms_thumbnail_no_field
       
   101     {
       
   102     items = 
       
   103         {
       
   104 		LBUF { txt=qtn_bcard_send_detail_without_p; },
       
   105 		LBUF { txt=qtn_bcard_send_detail_with_pict; }
       
   106         };
       
   107     }
       
   108     
       
   109 RESOURCE TBUF r_pbk2_businesscard_send_heading
       
   110     { 
       
   111     buf = qtn_bcard_qtl_send_data; 
       
   112     }
       
   113     
       
   114 RESOURCE TBUF r_pbk2_businesscard_send_heading_several
       
   115     { 
       
   116     buf = qtn_bcard_qtl_send_data_several; 
       
   117     }
       
   118 
       
   119 // Field type for lastname name
       
   120 RESOURCE VPBK_FIELD_TYPE_MAPPING_LIST r_lname_field_type
       
   121     {            
       
   122     items =
       
   123         {
       
   124         VPBK_FIELD_TYPE_MAPPING
       
   125             {
       
   126             versitProperty = VBK_FIELD_VERSIT_PROPERTY
       
   127                 {
       
   128                 name = EVPbkVersitNameN;
       
   129                 subField = EVPbkVersitSubFieldFamilyName;
       
   130                 };
       
   131             } 
       
   132         };
       
   133     }
       
   134     
       
   135 // Field type for first name
       
   136 RESOURCE VPBK_FIELD_TYPE_MAPPING_LIST r_fname_field_type
       
   137     {            
       
   138     items =
       
   139         {
       
   140         VPBK_FIELD_TYPE_MAPPING
       
   141             {
       
   142             versitProperty = VBK_FIELD_VERSIT_PROPERTY
       
   143                 {
       
   144                 name = EVPbkVersitNameN;
       
   145                 subField = EVPbkVersitSubFieldGivenName;
       
   146                 };
       
   147             } 
       
   148         };
       
   149     }    
       
   150     
       
   151 
       
   152 /**
       
   153  * Converting to business card for sending wait note.
       
   154  */
       
   155 RESOURCE DIALOG r_qtn_sm_wait_business_card
       
   156     {
       
   157     flags = EAknWaitNoteFlags;
       
   158     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   159     items =
       
   160         {	    
       
   161         DLG_LINE
       
   162             {
       
   163             type = EAknCtNote;
       
   164             id = EPbk2NoteConvertingToBusinessCard;
       
   165             control = AVKON_NOTE 
       
   166                 { 
       
   167                 layout = EWaitLayout;
       
   168                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   169                 singular_label = qtn_sm_wait_business_card;
       
   170                 };
       
   171             }
       
   172         };
       
   173     }    
       
   174 // End of file