email/imum/Mtms/Data/SmtpMtmUiData.ra
branchRCL_3
changeset 27 7fdbb852d323
parent 0 72b543305e3a
equal deleted inserted replaced
26:ebe688cedc25 27:7fdbb852d323
       
     1 /*
       
     2 * Copyright (c) 2002 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: SmtpMtmUiData.ra
       
    15 *     
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #include <mtmuidef.hrh>
       
    21 #include <MtmExtendedCapabilities.hrh>
       
    22 
       
    23 // Default function array
       
    24 RESOURCE MTUD_FUNCTION_ARRAY r_smtpud_function_array
       
    25     {
       
    26    functions=  
       
    27         {
       
    28         MTUD_FUNCTION 
       
    29             { 
       
    30             functiontext = qtn_query_send_via_email;
       
    31             command = KMtmUiFunctionSendAs;
       
    32             flags = EMtudCommandSendAs;
       
    33             },
       
    34         MTUD_FUNCTION 
       
    35             { 
       
    36             functiontext = qtn_mce_inbox_write_email;
       
    37             command = KMtmUiMceWriteMessageSubmenu;
       
    38             flags = EMtudCommandTransferSend;
       
    39             },
       
    40         MTUD_FUNCTION 
       
    41             { 
       
    42             functiontext = qtn_mce_pop_up_email;
       
    43             command = KMtmUiMceWriteMessagePopup;
       
    44             flags = EMtudCommandTransferSend;
       
    45             },
       
    46         MTUD_FUNCTION 
       
    47             { 
       
    48             functiontext = qtn_mce_settings_mail;
       
    49             command = KMtmUiMceSettings;
       
    50             flags = EMtudCommandTransferSend;
       
    51             },
       
    52         MTUD_FUNCTION 
       
    53             { 
       
    54             functiontext = qtn_mce_info;
       
    55             command = KMtmUiFunctionMessageInfo;
       
    56             flags = EMtudContextSpecific|EMtudAsynchronous|EMtudCommandTransferReceive;
       
    57             }
       
    58         };
       
    59     }
       
    60 
       
    61 // Function array used when KFeatureIdFfEmailFramework is enabled
       
    62 RESOURCE MTUD_FUNCTION_ARRAY r_smtpud_function_array_ffemail
       
    63     {
       
    64    functions=  
       
    65         {
       
    66         MTUD_FUNCTION 
       
    67             { 
       
    68             functiontext = qtn_query_send_via_email;
       
    69             command = KMtmUiFunctionSendAs;
       
    70             flags = EMtudCommandSendAs;
       
    71             },
       
    72         MTUD_FUNCTION 
       
    73             { 
       
    74             functiontext = qtn_mce_pop_up_email;
       
    75             command = KMtmUiMceWriteMessagePopup;
       
    76             flags = EMtudCommandTransferSend;
       
    77             },
       
    78         MTUD_FUNCTION 
       
    79             { 
       
    80             functiontext = qtn_mce_settings_mail;
       
    81             command = KMtmUiMceSettings;
       
    82             flags = EMtudCommandTransferSend;
       
    83             },
       
    84         MTUD_FUNCTION 
       
    85             { 
       
    86             functiontext = qtn_mce_info;
       
    87             command = KMtmUiFunctionMessageInfo;
       
    88             flags = EMtudContextSpecific|EMtudAsynchronous|EMtudCommandTransferReceive;
       
    89             }
       
    90         };
       
    91     }
       
    92 
       
    93 RESOURCE TBUF r_smtp_outbox_status_sending        
       
    94     { 
       
    95     buf = qtn_mce_outbox_status_sending; 
       
    96     }
       
    97 
       
    98 RESOURCE TBUF r_smtp_outbox_status_suspended      
       
    99     { 
       
   100     buf = qtn_mce_outbox_status_suspended; 
       
   101     }
       
   102 RESOURCE TBUF r_smtp_outbox_status_queued         
       
   103     { 
       
   104     buf = qtn_mce_outbox_status_queued; 
       
   105     }
       
   106 RESOURCE TBUF r_smtp_outbox_status_failed         
       
   107     { 
       
   108     buf = qtn_mce_outbox_status_failed; 
       
   109     }