terminalsecurity/SCP/SCPClient/data/SCPNotifier.rss
changeset 0 b497e44ab2fc
child 2 5594fba90824
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2000 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: Implementation of terminalsecurity components
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  RESOURCE IDENTIFIER
       
    20 NAME SCPN
       
    21 
       
    22 //  INCLUDES
       
    23 #include <bldvariant.hrh>
       
    24 #include <eikon.rh>
       
    25 #include <eikcore.rsg>
       
    26 
       
    27 #include <avkon.loc>
       
    28 
       
    29 #include "SCPNotifier.hrh"
       
    30 #include <scpnotifier.loc>
       
    31 
       
    32 #include <avkon.rsg>
       
    33 #include <avkon.rh>
       
    34 #include <avkon.hrh>
       
    35 #include <avkon.mbg>
       
    36 
       
    37 RESOURCE RSS_SIGNATURE { }
       
    38 
       
    39 //RESOURCE TBUF16 { buf=""; }
       
    40 RESOURCE TBUF { buf= ""; }
       
    41 
       
    42 RESOURCE EIK_APP_INFO
       
    43     {
       
    44     }
       
    45 
       
    46 //  RESOURCE DEFINITIONS 
       
    47 
       
    48 #define ESCPQueryFlags (EGeneralQueryFlags | EEikDialogFlagNotifyEsc)
       
    49 
       
    50 // ---------------------------------------------------------
       
    51 //   
       
    52 //    r_scp_code_query
       
    53 //    Used to request the enhanced security code from the user
       
    54 //
       
    55 // ---------------------------------------------------------
       
    56 //
       
    57 RESOURCE DIALOG r_scp_code_query
       
    58     {
       
    59     flags = ESCPQueryFlags | EEikDialogFlagVirtualInput;
       
    60     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
    61     items=
       
    62         {
       
    63         DLG_LINE
       
    64             {
       
    65             type = EAknCtQuery;
       
    66             id = EGeneralQuery;
       
    67             control = AVKON_DATA_QUERY 
       
    68                 { 
       
    69                     layout = ECodeLayout;                    
       
    70                     control = SECRETED
       
    71                         {                         
       
    72                         };
       
    73                 };
       
    74             }
       
    75         };
       
    76     }   
       
    77 
       
    78 RESOURCE TBUF r_scpdialog_ok_text
       
    79     {
       
    80     buf = text_softkey_ok;
       
    81     }
       
    82 
       
    83 RESOURCE DIALOG r_scpdialog_emergencycalls_only
       
    84     {
       
    85     flags=ESCPQueryFlags;
       
    86     buttons=R_AVKON_SOFTKEYS_EMPTY;
       
    87     items=
       
    88         {
       
    89         DLG_LINE
       
    90             {
       
    91             type=EAknCtNote;
       
    92             id=EGeneralNote;
       
    93             control= AVKON_NOTE 
       
    94                 { 
       
    95                     layout = EGeneralLayout;
       
    96                     singular_label = qtn_emerg_emergency_only;
       
    97                     animation = R_QGN_NOTE_ERROR_ANIM;
       
    98                 };
       
    99             }
       
   100         };
       
   101     }
       
   102         	
       
   103 RESOURCE TBUF r_set_sec_code
       
   104     {
       
   105     buf = qtn_set_sec_code_setting_query;
       
   106     }
       
   107 /*RESOURCE TBUF r_set_sec_code_startup_query
       
   108     {
       
   109     buf = qtn_set_sec_code_startup_query;
       
   110     }*/
       
   111 // end of file
       
   112