deviceencryption/DevEncUi/data/DevEncUi.rss
changeset 0 6a9f87576119
equal deleted inserted replaced
-1:000000000000 0:6a9f87576119
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Application resource file.
       
    15 *
       
    16 */
       
    17 
       
    18 //  RESOURCE IDENTIFIER
       
    19 NAME DENC    // 4 letter ID
       
    20 
       
    21 //  INCLUDES
       
    22 #include <appinfo.rh>
       
    23 #include <avkon.loc>
       
    24 #include <avkon.mbg> // For wait note
       
    25 #include <avkon.rh>
       
    26 #include <avkon.rsg>
       
    27 #include <eikon.rh>
       
    28 #include <devenc.loc>
       
    29 #include "DevEnc.hrh"
       
    30 #include "DevEncUiDef.h"
       
    31 
       
    32 
       
    33 //  RESOURCE DEFINITIONS
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 //    Define the resource file signature
       
    38 //    This resource should be empty.
       
    39 //
       
    40 // -----------------------------------------------------------------------------
       
    41 //
       
    42 RESOURCE RSS_SIGNATURE
       
    43     {
       
    44     }
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 //
       
    48 //    Default Document Name
       
    49 //
       
    50 // -----------------------------------------------------------------------------
       
    51 //
       
    52 RESOURCE TBUF r_default_document_name
       
    53     {
       
    54     buf = "DevEncUi";
       
    55     }
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 //
       
    59 //    Define default menu and CBA key.
       
    60 //
       
    61 // -----------------------------------------------------------------------------
       
    62 //
       
    63 RESOURCE EIK_APP_INFO
       
    64     {
       
    65     cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
       
    66     }
       
    67 
       
    68 // -----------------------------------------------------------------------------
       
    69 //
       
    70 //    Localizable application information
       
    71 //
       
    72 // -----------------------------------------------------------------------------
       
    73 //
       
    74 RESOURCE LOCALISABLE_APP_INFO r_devencui_localisable_app_info
       
    75     {
       
    76     short_caption = qtn_apps_encryption_grid;
       
    77     caption_and_icon = CAPTION_AND_ICON_INFO
       
    78         {
       
    79         caption = qtn_encryption_title;
       
    80 
       
    81         // TBD: Is this valid?
       
    82         number_of_icons = 1;
       
    83         icon_file = "\\resource\\apps\\DevEncUi_aif.mif";
       
    84         };
       
    85     }
       
    86 
       
    87 // ---------------------------------------------------------
       
    88 //
       
    89 //    r_devencui_mainview
       
    90 //    Define main view
       
    91 //
       
    92 // ---------------------------------------------------------
       
    93 //
       
    94 RESOURCE AVKON_VIEW r_devencui_mainview
       
    95     {
       
    96     menubar = r_devencui_menubar_main;
       
    97     cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
       
    98     }
       
    99 
       
   100 // ---------------------------------------------------------
       
   101 //
       
   102 //    r_devencui_encrview
       
   103 //    Define encryption view
       
   104 //
       
   105 // ---------------------------------------------------------
       
   106 //
       
   107 RESOURCE AVKON_VIEW r_devencui_encrview
       
   108     {
       
   109     menubar = r_devencui_menubar_encr;
       
   110     cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
       
   111     }
       
   112 
       
   113 // ---------------------------------------------------------
       
   114 //
       
   115 //    r_devencui_decrview
       
   116 //    Define decryption view
       
   117 //
       
   118 // ---------------------------------------------------------
       
   119 //
       
   120 RESOURCE AVKON_VIEW r_devencui_decrview
       
   121     {
       
   122     menubar = r_devencui_menubar_decr;
       
   123     cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
       
   124     }
       
   125 
       
   126 // -----------------------------------------------------------------------------
       
   127 //
       
   128 //   r_devencui_menubar_encr
       
   129 //   Menubar for NFEUI example
       
   130 //
       
   131 // -----------------------------------------------------------------------------
       
   132 //
       
   133 RESOURCE MENU_BAR r_devencui_menubar_encr
       
   134     {
       
   135     titles =
       
   136         {
       
   137         MENU_TITLE { menu_pane = r_devencui_menu_encr; }
       
   138         };
       
   139     }
       
   140 
       
   141 // -----------------------------------------------------------------------------
       
   142 //
       
   143 //   r_devencui_menubar_decr
       
   144 //   Menubar for NFEUI example
       
   145 //
       
   146 // -----------------------------------------------------------------------------
       
   147 //
       
   148 RESOURCE MENU_BAR r_devencui_menubar_decr
       
   149     {
       
   150     titles =
       
   151         {
       
   152         MENU_TITLE { menu_pane = r_devencui_menu_decr; }
       
   153         };
       
   154     }
       
   155 
       
   156 // -----------------------------------------------------------------------------
       
   157 //
       
   158 //   r_devencui_menubar
       
   159 //   Menubar for NFEUI example
       
   160 //
       
   161 // -----------------------------------------------------------------------------
       
   162 //
       
   163 RESOURCE MENU_BAR r_devencui_menubar_main
       
   164     {
       
   165     titles =
       
   166         {
       
   167         MENU_TITLE { menu_pane = r_devencui_menu_main; }
       
   168         };
       
   169     }
       
   170 
       
   171 // -----------------------------------------------------------------------------
       
   172 //
       
   173 //   r_devencui_menu_main
       
   174 //   Main menu options
       
   175 //
       
   176 // -----------------------------------------------------------------------------
       
   177 //
       
   178 RESOURCE MENU_PANE r_devencui_menu_main
       
   179     {
       
   180     items =
       
   181         {
       
   182         MENU_ITEM
       
   183                 {
       
   184                 command = EDevEncUiCommandChange;
       
   185                 txt = qtn_options_change;
       
   186                 flags = EEikMenuItemAction;
       
   187                 },
       
   188         MENU_ITEM
       
   189                 {
       
   190                 command = EDevEncUiCommandHelp;
       
   191                 txt = qtn_options_help;
       
   192                 },
       
   193         MENU_ITEM
       
   194                 {
       
   195                 command = EAknSoftkeyExit;
       
   196                 txt = qtn_options_exit;
       
   197                 }
       
   198         };
       
   199     }
       
   200 
       
   201 // -----------------------------------------------------------------------------
       
   202 //
       
   203 //   r_devencui_menu_encr
       
   204 //   Encryption menu options
       
   205 //
       
   206 // -----------------------------------------------------------------------------
       
   207 //
       
   208 RESOURCE MENU_PANE r_devencui_menu_encr
       
   209     {
       
   210     items =
       
   211         {
       
   212         MENU_ITEM
       
   213                 {
       
   214                 command = EDevEncUiCommandHelp;
       
   215                 txt = qtn_options_help;
       
   216                 },
       
   217         MENU_ITEM
       
   218                 {
       
   219                 command = EAknSoftkeyExit;
       
   220                 txt = qtn_options_exit;
       
   221                 }
       
   222         };
       
   223     }
       
   224 
       
   225 // -----------------------------------------------------------------------------
       
   226 //
       
   227 //   r_devencui_menu_decr
       
   228 //   Decryption menu options
       
   229 //
       
   230 // -----------------------------------------------------------------------------
       
   231 //
       
   232 RESOURCE MENU_PANE r_devencui_menu_decr
       
   233     {
       
   234     items =
       
   235         {
       
   236         MENU_ITEM
       
   237                 {
       
   238                 command = EDevEncUiCommandHelp;
       
   239                 txt = qtn_options_help;
       
   240                 },
       
   241         MENU_ITEM
       
   242                 {
       
   243                 command = EAknSoftkeyExit;
       
   244                 txt = qtn_options_exit;
       
   245                 }
       
   246         };
       
   247     }
       
   248 
       
   249 //----------------------------------------------------
       
   250 //
       
   251 //    r_settingslist_setting_item_list
       
   252 //    settings item list for the application
       
   253 //
       
   254 //----------------------------------------------------
       
   255 //
       
   256 RESOURCE AVKON_SETTING_ITEM_LIST r_devencui_setting_item_list
       
   257     {
       
   258     items =
       
   259         {
       
   260         AVKON_SETTING_ITEM
       
   261             {
       
   262             identifier = EPhoneEncryptionSettingItem;
       
   263             setting_page_resource = r_settingslist_phonememory_setting_page;
       
   264             associated_resource = r_settingslist_phonememory_popup_setting_texts;
       
   265             name = qtn_encryption_phonememory;
       
   266             },
       
   267         AVKON_SETTING_ITEM
       
   268             {
       
   269             identifier = EMemoryCardEncryptionSettingItem;
       
   270             setting_page_resource = r_settingslist_memorycard_setting_page;
       
   271             associated_resource = r_settingslist_memorycard_popup_setting_texts;
       
   272             name = qtn_encryption_memorycard;
       
   273             }
       
   274         };
       
   275     }
       
   276 
       
   277 //----------------------------------------------------
       
   278 //
       
   279 //    r_settingslist_phonememory_setting_page
       
   280 //    hints setting page for the setting list
       
   281 //
       
   282 //----------------------------------------------------
       
   283 //
       
   284 RESOURCE AVKON_SETTING_PAGE r_settingslist_phonememory_setting_page
       
   285     {
       
   286     label = qtn_encryption_phonememory_setting_title;
       
   287     type = EAknCtPopupSettingList;
       
   288     editor_resource_id = r_settingslist_phonememory_popup_setting_list;
       
   289     }
       
   290 
       
   291 //----------------------------------------------------
       
   292 //
       
   293 //    r_settingslist_phonememory_encryption_setting_page
       
   294 //    hints setting page for the setting list
       
   295 //
       
   296 //----------------------------------------------------
       
   297 //
       
   298 RESOURCE AVKON_SETTING_PAGE r_settingslist_memorycard_setting_page
       
   299     {
       
   300     label = qtn_encryption_memorycard_setting_title;
       
   301     type = EAknCtPopupSettingList;
       
   302     editor_resource_id = r_settingslist_memorycard_popup_setting_list;
       
   303     }
       
   304 
       
   305 //----------------------------------------------------
       
   306 //
       
   307 //    r_settingslist_phonememory_popup_setting_texts
       
   308 //    popup setting list for the hint item of the
       
   309 //    setting list
       
   310 //
       
   311 //----------------------------------------------------
       
   312 //
       
   313 RESOURCE POPUP_SETTING_LIST r_settingslist_phonememory_popup_setting_list
       
   314     {
       
   315     }
       
   316 
       
   317 //----------------------------------------------------
       
   318 //
       
   319 //    r_settingslist_phonememory_popup_setting_texts
       
   320 //    popup setting list for the hint item of the
       
   321 //    setting list
       
   322 //
       
   323 //----------------------------------------------------
       
   324 //
       
   325 RESOURCE POPUP_SETTING_LIST r_settingslist_memorycard_popup_setting_list
       
   326     {
       
   327     }
       
   328 
       
   329 //----------------------------------------------------
       
   330 //
       
   331 //    r_settingslist_hints_popup_setting_texts
       
   332 //    popped up and non-popped up texts for the hint
       
   333 //    item of the setting list
       
   334 //
       
   335 //----------------------------------------------------
       
   336 //
       
   337 RESOURCE AVKON_POPUP_SETTING_TEXTS r_settingslist_phonememory_popup_setting_texts
       
   338     {
       
   339     setting_texts_resource = r_settingslist_encryption_state_texts;
       
   340     popped_up_texts_resource = r_settingslist_hints_popup_texts;
       
   341     }
       
   342 
       
   343 //----------------------------------------------------
       
   344 //
       
   345 //    r_settingslist_hints_popup_setting_texts
       
   346 //    popped up and non-popped up texts for the hint
       
   347 //    item of the setting list
       
   348 //
       
   349 //----------------------------------------------------
       
   350 //
       
   351 RESOURCE AVKON_POPUP_SETTING_TEXTS r_settingslist_memorycard_popup_setting_texts
       
   352     {
       
   353     setting_texts_resource = r_settingslist_encryption_state_texts;
       
   354     popped_up_texts_resource = r_settingslist_hints_popup_texts;
       
   355     }
       
   356 
       
   357 //----------------------------------------------------
       
   358 //
       
   359 //    r_settingslist_hints_texts
       
   360 //    non-popped up texts for the hint
       
   361 //    item of the setting list
       
   362 //
       
   363 //----------------------------------------------------
       
   364 //
       
   365 RESOURCE ARRAY r_settingslist_encryption_state_texts
       
   366     {
       
   367     items =
       
   368         {
       
   369         AVKON_ENUMERATED_TEXT
       
   370             {
       
   371             value = 1;
       
   372             text = qtn_encryption_phonememory_setting_on;
       
   373             },
       
   374         AVKON_ENUMERATED_TEXT
       
   375             {
       
   376             value = 0;
       
   377             text = qtn_encryption_phonememory_setting_off;
       
   378             }
       
   379 
       
   380         };
       
   381     }
       
   382 
       
   383 //----------------------------------------------------
       
   384 //
       
   385 //    r_settingslist_hints_popup_texts
       
   386 //    popped up texts for the hint
       
   387 //    item of the setting list
       
   388 //
       
   389 //----------------------------------------------------
       
   390 //
       
   391 RESOURCE ARRAY r_settingslist_hints_popup_texts
       
   392     {
       
   393     items =
       
   394         {
       
   395         LBUF
       
   396             {
       
   397             txt = qtn_encryption_phonememory_setting_on;
       
   398             },
       
   399         LBUF
       
   400             {
       
   401             txt = qtn_encryption_phonememory_setting_off;
       
   402             }
       
   403         };
       
   404     }
       
   405 
       
   406 //----------------------------------------------------
       
   407 //
       
   408 //    r_devencui_confirmation_query
       
   409 //    confirmation query for the application
       
   410 //
       
   411 //----------------------------------------------------
       
   412 //
       
   413 RESOURCE DIALOG r_devencui_confirmation_query
       
   414     {
       
   415     flags = EGeneralQueryFlags;
       
   416     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   417     items =
       
   418         {
       
   419         DLG_LINE
       
   420             {
       
   421             type = EAknCtQuery;
       
   422             id = EDevEncUiDlgCIdConfirmationQuery;
       
   423             control = AVKON_CONFIRMATION_QUERY
       
   424                 {
       
   425                 layout = EConfirmationQueryLayout;
       
   426                 label = qtn_encryption_note_lock;
       
   427                 };
       
   428             }
       
   429         };
       
   430     }
       
   431 
       
   432 // ---------------------------------------------------------
       
   433 //
       
   434 //   r_devencui_encrypt_confirmation_query_dialog
       
   435 //   About dialog - show version and copyright info etc.
       
   436 //
       
   437 // ---------------------------------------------------------
       
   438 //
       
   439 
       
   440 RESOURCE DIALOG r_devencui_encrypt_confirmation_query_dialog
       
   441     {
       
   442     flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
       
   443     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   444     items=
       
   445         {
       
   446         DLG_LINE
       
   447             {
       
   448             type = EAknCtPopupHeadingPane;
       
   449             id = EAknMessageQueryHeaderId;
       
   450             control = AVKON_HEADING
       
   451                 {
       
   452                 label = qtn_encryption_note_header;
       
   453                 headinglayout = R_AVKON_WML_SIGN_QUERY_HEADING_PANE;
       
   454                 };
       
   455             },
       
   456         DLG_LINE
       
   457             {
       
   458             type = EAknCtMessageQuery;
       
   459             id = EAknMessageQueryContentId;
       
   460             control = AVKON_MESSAGE_QUERY
       
   461                 {
       
   462                 message = qtn_encryption_note_lock;
       
   463                 };
       
   464             }
       
   465         };
       
   466     }
       
   467 
       
   468 //----------------------------------------------------
       
   469 //
       
   470 //    r_devencui_data_query
       
   471 //    data query for the application
       
   472 //
       
   473 //----------------------------------------------------
       
   474 RESOURCE DIALOG r_devencui_data_query
       
   475     {
       
   476     flags = EGeneralQueryFlags;
       
   477     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   478     items =
       
   479         {
       
   480         DLG_LINE
       
   481             {
       
   482             type = EAknCtQuery;
       
   483             id = EDevEncUiDlgCIdDataQuery;
       
   484             control = AVKON_DATA_QUERY
       
   485                 {
       
   486                 layout = EDataLayout;
       
   487                 control =
       
   488                     EDWIN
       
   489                         {
       
   490                         width = KMaxFileNameLength;
       
   491                         lines = 1;
       
   492                         maxlength = KMaxFileNameLength;
       
   493                         };
       
   494                 };
       
   495             }
       
   496         };
       
   497     }
       
   498 
       
   499 //----------------------------------------------------
       
   500 //
       
   501 //    r_devencui_code_query
       
   502 //    secret data query for the application
       
   503 //
       
   504 //----------------------------------------------------
       
   505 RESOURCE DIALOG r_devencui_code_query
       
   506     {
       
   507     flags   = EGeneralQueryFlags;
       
   508     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   509     items   =
       
   510         {
       
   511         DLG_LINE
       
   512             {
       
   513             type    = EAknCtQuery;
       
   514             id      = EDevEncUiSecretCodeQueryId;
       
   515             control = AVKON_DATA_QUERY
       
   516                 {
       
   517                 layout  = ECodeLayout;
       
   518                 label   = qtn_encryption_passphrase_ask;
       
   519                 control = SECRETED
       
   520                     {
       
   521                     num_letters = KMaxPasswordLength;
       
   522                     };
       
   523                 };
       
   524             }
       
   525         };
       
   526     }
       
   527 
       
   528 //----------------------------------------------------
       
   529 //   
       
   530 //    r_devencui_list_query
       
   531 //    list query for the application
       
   532 //
       
   533 //----------------------------------------------------
       
   534 //
       
   535 //RESOURCE AVKON_LIST_QUERY r_devencui_list_query
       
   536 //    {
       
   537 //    items =
       
   538 //        {
       
   539 //        AVKON_LIST_QUERY_DLG_LINE
       
   540 //            {
       
   541 //            control = AVKON_LIST_QUERY_CONTROL
       
   542 //                {
       
   543 //                listtype = EAknCtSinglePopupMenuListBox;
       
   544 //                heading = qtn_encryption_selectkey;
       
   545 //                listbox = AVKON_LIST_QUERY_LIST
       
   546 //                    {
       
   547 //                    // array of items will be defined dynamically
       
   548 //                    };
       
   549 //                };
       
   550 //            }
       
   551 //        };
       
   552 //    }
       
   553 RESOURCE DIALOG r_devencui_list_query
       
   554     {
       
   555     flags = EGeneralQueryFlags;
       
   556     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   557     items =
       
   558         {
       
   559         DLG_LINE
       
   560             {
       
   561             type = EAknCtListQueryControl;
       
   562             id = EListQueryControl;
       
   563             control = AVKON_LIST_QUERY_CONTROL
       
   564                 {
       
   565                 listtype = EAknCtSinglePopupMenuListBox;
       
   566                 heading = qtn_encryption_selectkey;
       
   567                 listbox = AVKON_LIST_QUERY_LIST
       
   568                     {
       
   569                     };
       
   570                 };
       
   571             }
       
   572         };
       
   573     }
       
   574 
       
   575 // ---------------------------------------------------------
       
   576 //  r_devencui_encryption_listbox
       
   577 //
       
   578 //
       
   579 // ---------------------------------------------------------
       
   580 //
       
   581 RESOURCE LISTBOX r_devencui_encryption_listbox
       
   582     {
       
   583     array_id = r_devencui_encryption_listbox_items;
       
   584     flags = EAknListBoxSelectionList;
       
   585     }
       
   586 
       
   587 // ---------------------------------------------------------
       
   588 //  r_devencui_encryption_listbox_items
       
   589 //
       
   590 //
       
   591 // ---------------------------------------------------------
       
   592 //
       
   593 RESOURCE ARRAY r_devencui_encryption_listbox_items
       
   594     {
       
   595     items =
       
   596         {
       
   597         LBUF
       
   598             {
       
   599             txt = "\t"qtn_encryption_encrypt"\t\t";
       
   600             },
       
   601         LBUF
       
   602             {
       
   603             txt = "\t"qtn_encryption_encryptsave"\t\t";
       
   604             },
       
   605         LBUF
       
   606             {
       
   607             txt = "\t"qtn_encryption_encryptload"\t\t";
       
   608             }
       
   609         };
       
   610     }
       
   611 
       
   612 // ---------------------------------------------------------
       
   613 //  r_devencui_decryption_listbox
       
   614 //
       
   615 //
       
   616 // ---------------------------------------------------------
       
   617 //
       
   618 RESOURCE LISTBOX r_devencui_decryption_listbox
       
   619     {
       
   620     array_id = r_devencui_decryption_listbox_items;
       
   621     flags = EAknListBoxSelectionList;
       
   622     }
       
   623 
       
   624 // ---------------------------------------------------------
       
   625 //  r_devencui_decryption_listbox_items
       
   626 //
       
   627 //
       
   628 // ---------------------------------------------------------
       
   629 //
       
   630 RESOURCE ARRAY r_devencui_decryption_listbox_items
       
   631     {
       
   632     items =
       
   633         {
       
   634         LBUF
       
   635             {
       
   636             txt = "\t"qtn_encryption_decrypt"\t\t";
       
   637             },
       
   638         LBUF
       
   639             {
       
   640             txt = "\t"qtn_encryption_decryptturnoff"\t\t";
       
   641             }
       
   642         };
       
   643     }
       
   644 
       
   645 RESOURCE DIALOG r_devencui_creating_key_waitnote
       
   646     {
       
   647     flags = EAknWaitNoteFlags;
       
   648     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   649     items =
       
   650         {
       
   651         DLG_LINE
       
   652             {
       
   653             type = EAknCtNote;
       
   654             id = EDevEncUiWaitNoteId;
       
   655             control = AVKON_NOTE
       
   656                 {
       
   657                 layout = EWaitLayout;
       
   658                 singular_label = qtn_encryption_note_wait;
       
   659                 //imagefile = "z:\\system\data\avkon.mbm";
       
   660                 imagefile = "z:\\resource\apps\avkon2.mbm";
       
   661                 imageid = EMbmAvkonQgn_note_progress;
       
   662                 imagemask = EMbmAvkonQgn_note_progress_mask;
       
   663                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   664                 };
       
   665             }
       
   666         };
       
   667     }
       
   668 
       
   669 // -----------------------------------------------------------------------------
       
   670 //
       
   671 // Resources for messages.
       
   672 //
       
   673 // -----------------------------------------------------------------------------
       
   674 
       
   675 RESOURCE TBUF r_devencui_text_encryption_on { buf =
       
   676                     qtn_encryption_phonememory_setting_on; }
       
   677 
       
   678 RESOURCE TBUF r_devencui_text_encryption_off { buf =
       
   679                     qtn_encryption_phonememory_setting_off; }
       
   680 
       
   681 RESOURCE TBUF r_devencui_text_apps_grid { buf =
       
   682                     qtn_apps_encryption_grid; }
       
   683 
       
   684 RESOURCE TBUF r_devencui_text_title { buf =
       
   685                     qtn_encryption_title; }
       
   686 
       
   687 RESOURCE TBUF r_devencui_text_phonememory { buf =
       
   688                     qtn_encryption_phonememory; }
       
   689 
       
   690 RESOURCE TBUF r_devencui_text_memorycard { buf =
       
   691                     qtn_encryption_memorycard; }
       
   692 
       
   693 RESOURCE TBUF r_devencui_text_note_lock { buf =
       
   694                     qtn_encryption_note_lock; }
       
   695 
       
   696 RESOURCE TBUF r_devencui_text_note_encrypting { buf =
       
   697                     qtn_encryption_note_encrypting; }
       
   698 
       
   699 RESOURCE TBUF r_devencui_text_note_phone_decrypting { buf =
       
   700                     qtn_encryption_note_phone_decrypting; }
       
   701 
       
   702 RESOURCE TBUF r_devencui_text_encrypt { buf =
       
   703                     qtn_encryption_encrypt; }
       
   704 
       
   705 RESOURCE TBUF r_devencui_text_encryptsave { buf =
       
   706                     qtn_encryption_encryptsave; }
       
   707 
       
   708 RESOURCE TBUF r_devencui_text_encryptload { buf =
       
   709                     qtn_encryption_encryptload; }
       
   710 
       
   711 RESOURCE TBUF r_devencui_text_note_wait { buf =
       
   712                     qtn_encryption_note_wait; }
       
   713 
       
   714 RESOURCE TBUF r_devencui_text_passphrase_protect { buf =
       
   715                     qtn_encryption_passphrase_protect; }
       
   716 
       
   717 RESOURCE TBUF r_devencui_text_filename { buf =
       
   718                     qtn_encryption_filename; }
       
   719 
       
   720 RESOURCE TBUF r_devencui_text_note_saveinfo { buf =
       
   721                     qtn_encryption_note_saveinfo; }
       
   722 
       
   723 RESOURCE TBUF r_devencui_text_selectkey { buf =
       
   724                     qtn_encryption_selectkey; }
       
   725 
       
   726 RESOURCE TBUF r_devencui_text_passphrase_ask { buf =
       
   727                     qtn_encryption_passphrase_ask; }
       
   728 
       
   729 RESOURCE TBUF r_devencui_text_note_memorycard_encrypted { buf =
       
   730                     qtn_encryption_note_memorycard_encrypted; }
       
   731 
       
   732 RESOURCE TBUF r_devencui_text_decrypt { buf =
       
   733                     qtn_encryption_decrypt; }
       
   734 
       
   735 RESOURCE TBUF r_devencui_text_decryptturnoff { buf =
       
   736                     qtn_encryption_decryptturnoff; }
       
   737 
       
   738 RESOURCE TBUF r_devencui_text_note_decrypting { buf =
       
   739                     qtn_encryption_note_decrypting; }
       
   740 
       
   741 RESOURCE TBUF r_devencui_text_note_decryptingdestroy { buf =
       
   742                     qtn_encryption_note_decryptingdestroy; }
       
   743 
       
   744 RESOURCE TBUF r_devencui_text_note_decrypt_loadkey { buf =
       
   745                     qtn_encryption_note_decrypt_loadkey; }
       
   746 
       
   747 RESOURCE TBUF r_devencui_text_note_insertunencrypted { buf =
       
   748                     qtn_encryption_note_insertunencrypted; }
       
   749 
       
   750 RESOURCE TBUF r_devencui_text_note_decrypt_nomemrycard { buf =
       
   751                     qtn_encryption_note_decrypt_nomemrycard; }
       
   752 
       
   753 RESOURCE TBUF r_devencui_text_note_memorycard_unencrypted { buf =
       
   754                     qtn_encryption_note_memorycard_unencrypted; }
       
   755 
       
   756 RESOURCE TBUF r_devencui_text_note_insertencrypted { buf =
       
   757                     qtn_encryption_note_insertencrypted; }
       
   758 
       
   759 RESOURCE TBUF r_devencui_text_note_encryptioninterrupt { buf =
       
   760                     qtn_encryption_note_encryptioninterrupt; }
       
   761 
       
   762 RESOURCE TBUF r_devencui_text_phonememory_setting_title { buf =
       
   763                     qtn_encryption_phonememory_setting_title; }
       
   764 
       
   765 RESOURCE TBUF r_devencui_text_memorycard_setting_title { buf =
       
   766                     qtn_encryption_memorycard_setting_title; }
       
   767 
       
   768 RESOURCE TBUF r_devencui_text_note_wrongkeyfile { buf =
       
   769                     qtn_encryption_note_wrongkeyfile; }
       
   770 
       
   771 RESOURCE TBUF r_devencui_text_note_unusedmemorycard { buf =
       
   772                     qtn_encryption_note_unusedmemorycard; }
       
   773 
       
   774 RESOURCE TBUF r_devencui_text_encrypt_process { buf =
       
   775                     qtn_encryption_encrypt_process; }
       
   776 
       
   777 RESOURCE TBUF r_devencui_text_decrypt_process { buf =
       
   778                     qtn_encryption_decrypt_process; }
       
   779 
       
   780 RESOURCE TBUF r_devencui_text_note_insertoff_unusedmemorycard { buf =
       
   781                     qtn_encryption_note_insertoff_unusedmemorycard; }
       
   782 
       
   783 RESOURCE TBUF r_devencui_text_note_inserton_unusedmemorycard { buf =
       
   784                     qtn_encryption_note_inserton_unusedmemorycard; }
       
   785 
       
   786 RESOURCE TBUF r_devencui_text_phonememory_setting_on { buf =
       
   787                     qtn_encryption_phonememory_setting_on; }
       
   788 
       
   789 RESOURCE TBUF r_devencui_text_phonememory_setting_off { buf =
       
   790                     qtn_encryption_phonememory_setting_off; }
       
   791 
       
   792 RESOURCE TBUF r_devencui_text_memorycard_setting_on { buf =
       
   793                     qtn_encryption_memorycard_setting_on; }
       
   794 
       
   795 RESOURCE TBUF r_devencui_text_memorycard_setting_off { buf =
       
   796                     qtn_encryption_memorycard_setting_off; }
       
   797 
       
   798 RESOURCE TBUF r_devencui_text_apps_list { buf =
       
   799                     qtn_apps_encryption_list; }
       
   800 
       
   801 RESOURCE TBUF r_devencui_note_header { buf =
       
   802                     qtn_encryption_note_header; }
       
   803 
       
   804 RESOURCE TBUF r_devencui_note_admin_control { buf =
       
   805                     qtn_encryption_note_admin_control; }
       
   806 
       
   807 // Own text buffers
       
   808 
       
   809 RESOURCE TBUF r_devencui_text_corrupted { buf =
       
   810                     qtn_encryption_corrupted; }
       
   811 
       
   812 RESOURCE TBUF r_devencui_text_battery_low { buf =
       
   813                     qtn_encryption_battery_low; }
       
   814 
       
   815 RESOURCE TBUF r_devencui_text_no_keys_found { buf =
       
   816                     qtn_encryption_note_no_keys_found; }
       
   817 
       
   818 RESOURCE TBUF r_devencui_text_invalid_password { buf =
       
   819                     qtn_encryption_note_invalid_password; }
       
   820 
       
   821 RESOURCE TBUF r_devencui_text_key_error { buf =
       
   822                     qtn_encryption_note_key_error; }
       
   823 
       
   824 RESOURCE TBUF r_devencui_text_bad_name { buf =
       
   825                     qtn_encryption_note_bad_name; }
       
   826 
       
   827 RESOURCE TBUF r_devencui_text_file_exists { buf =
       
   828                     qtn_encryption_note_file_exists; }
       
   829 
       
   830 RESOURCE TBUF r_devencui_fota_not_poss { buf = 
       
   831                     qtn_conf_encr_not_poss; }
       
   832 
       
   833 //----------------------------------------------------
       
   834 //   
       
   835 //    r_devencui_confirmation_query_ok_empty
       
   836 //
       
   837 //----------------------------------------------------
       
   838 //
       
   839 RESOURCE DIALOG r_devencui_confirmation_query_ok_empty
       
   840   { 
       
   841   flags = EGeneralQueryFlags;
       
   842   buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
   843   items=
       
   844     {
       
   845     DLG_LINE
       
   846       {
       
   847       type = EAknCtQuery;
       
   848       id = EGeneralQuery;
       
   849       control = AVKON_CONFIRMATION_QUERY
       
   850         {
       
   851         layout = EConfirmationLayout;
       
   852         };
       
   853       }
       
   854     };
       
   855   } 
       
   856 
       
   857 // END OF FILE