satui/satapp/data/SatUi.rss
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     1 /*
       
     2 * Copyright (c) 2002-2009 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: 
       
    15 *    This file contains all the resources for the module.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 //  RESOURCE IDENTIFIER
       
    21 NAME    SATU
       
    22 
       
    23 //  INCLUDES
       
    24 #include <eikon.rsg>
       
    25 #include <eikon.rh>
       
    26 
       
    27 #include <avkon.rsg>
       
    28 #include <avkon.hrh>
       
    29 #include <avkon.rh>
       
    30 #include <avkon.loc>
       
    31 #include <avkon.mbg>
       
    32 #include <AvkonIcons.hrh>   // AVKON_ICON_FILE
       
    33 #include <appinfo.rh>       //2.8 SCALABLE UI 
       
    34 
       
    35 #include <satui.mbg>
       
    36 #include "satui.hrh"
       
    37 #include <satui.loc>
       
    38 #include <data_caging_paths_strings.hrh>
       
    39 
       
    40 
       
    41 #define satui_bitmap_file APP_BITMAP_DIR"\\satui.mbm"
       
    42 
       
    43 #define avkon_bitmap_file AVKON_ICON_FILE   
       
    44 
       
    45 #define space " "
       
    46 
       
    47 //  RESOURCE DEFINITIONS 
       
    48 
       
    49 // ---------------------------------------------------------
       
    50 //
       
    51 //    Standard resource signature.
       
    52 //
       
    53 // ---------------------------------------------------------
       
    54 //
       
    55 RESOURCE RSS_SIGNATURE { }
       
    56 
       
    57 // ---------------------------------------------------------
       
    58 //
       
    59 //    Unique name-identifier.
       
    60 //
       
    61 // ---------------------------------------------------------
       
    62 //
       
    63 RESOURCE TBUF16 { buf = "SATU"; }
       
    64 
       
    65 // ---------------------------------------------------------
       
    66 //
       
    67 //    This is used when you enter first time to
       
    68 //    the application.
       
    69 //
       
    70 // ---------------------------------------------------------
       
    71 //
       
    72 RESOURCE EIK_APP_INFO
       
    73     {
       
    74     }
       
    75 
       
    76 RESOURCE LOCALISABLE_APP_INFO r_satui_localisable_app_info
       
    77     {
       
    78     short_caption = qtn_apps_simapps_grid;
       
    79     caption_and_icon = 
       
    80     CAPTION_AND_ICON_INFO
       
    81         {
       
    82         caption = qtn_apps_simapps_list;
       
    83 #ifdef __SCALABLE_ICONS
       
    84     number_of_icons = 1;
       
    85 
       
    86 	icon_file = APP_BITMAP_DIR"\\Satui_aif.mif";
       
    87 
       
    88 #else
       
    89     number_of_icons = 2;
       
    90 
       
    91 	icon_file = APP_BITMAP_DIR"\\Satui_aif.mbm";
       
    92 
       
    93 #endif	//__SCALABLE_ICONS
       
    94         };
       
    95     }
       
    96 
       
    97 
       
    98 /******************** SET UP MENU *************************/
       
    99 
       
   100 //----------------------------------------------------------
       
   101 //
       
   102 //    r_satui_setupmenu_view
       
   103 //    Defines the main view
       
   104 //
       
   105 //----------------------------------------------------------
       
   106 //
       
   107 RESOURCE AVKON_VIEW r_satui_setupmenu_view
       
   108     {
       
   109     cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
       
   110     menubar = r_satui_setupmenu_menubar;
       
   111     }
       
   112 
       
   113 //----------------------------------------------------------
       
   114 //
       
   115 //    r_satui_setupmenu_menubar
       
   116 //    Defines the menu bar on the view
       
   117 //
       
   118 //----------------------------------------------------------
       
   119 //
       
   120 RESOURCE MENU_BAR r_satui_setupmenu_menubar
       
   121     {
       
   122     titles=
       
   123         {
       
   124         MENU_TITLE {menu_pane = r_satui_setupmenu_options_menu;}
       
   125         };
       
   126     }
       
   127 
       
   128 // ---------------------------------------------------------
       
   129 //
       
   130 //    r_satui_setupmenu_options_menu
       
   131 //    Defines the menu pane on the view
       
   132 //
       
   133 // ---------------------------------------------------------
       
   134 //
       
   135 RESOURCE MENU_PANE r_satui_setupmenu_options_menu
       
   136     {
       
   137     items=
       
   138         {
       
   139         MENU_ITEM 
       
   140             { command = ESatUiCmdSelect;
       
   141               txt = qtn_sat_option_select;
       
   142               flags = EEikMenuItemSpecific;
       
   143             },
       
   144         MENU_ITEM 
       
   145             { command = EAknCmdHelp;
       
   146               txt = qtn_options_help;
       
   147               flags = EEikMenuItemSpecific;
       
   148             },
       
   149         MENU_ITEM
       
   150             { command = EAknCmdExit;
       
   151               txt = qtn_options_exit;
       
   152             }
       
   153         };
       
   154     }
       
   155 
       
   156 /******************** SELECT ITEM *************************/
       
   157 
       
   158 // ---------------------------------------------------------
       
   159 //
       
   160 //    r_satui_selectitem_view
       
   161 //    Defines the SelectItem view
       
   162 //
       
   163 // ---------------------------------------------------------
       
   164 //
       
   165 RESOURCE AVKON_VIEW r_satui_selectitem_view
       
   166     {
       
   167     cba = R_AVKON_SOFTKEYS_SELECTION_LIST;
       
   168     menubar = r_satui_selectitem_menubar;
       
   169     }
       
   170 
       
   171 //----------------------------------------------------------
       
   172 //
       
   173 //    r_satui_selectitem_menubar
       
   174 //    Defines the menu bar on the view
       
   175 //
       
   176 //----------------------------------------------------------
       
   177 //
       
   178 RESOURCE MENU_BAR r_satui_selectitem_menubar
       
   179     {
       
   180     titles=
       
   181         {
       
   182         MENU_TITLE {menu_pane = r_satui_selectitem_options_menu;}
       
   183         };
       
   184     }
       
   185 
       
   186 // ---------------------------------------------------------
       
   187 //
       
   188 //    r_satui_selectitem_options_menu
       
   189 //    Defines the menu pane on the view
       
   190 //
       
   191 // ---------------------------------------------------------
       
   192 //
       
   193 RESOURCE MENU_PANE r_satui_selectitem_options_menu
       
   194     {
       
   195     items=
       
   196         {
       
   197         MENU_ITEM 
       
   198             { command = ESatUiCmdSelect;
       
   199               txt = qtn_sat_option_select;
       
   200               flags = EEikMenuItemSpecific;
       
   201             },
       
   202         MENU_ITEM
       
   203             { command = EAknCmdHelp;
       
   204              txt = qtn_options_help;
       
   205              flags = EEikMenuItemSpecific; 
       
   206             },
       
   207         MENU_ITEM 
       
   208             { command = ESatUiCmdExit;
       
   209               txt = qtn_options_exit;
       
   210             }
       
   211         };
       
   212     }
       
   213 
       
   214 // ---------------------------------------------------------
       
   215 //
       
   216 //    r_satui_listbox
       
   217 //    Defines the listbox on the main pane
       
   218 //
       
   219 // ---------------------------------------------------------
       
   220 //
       
   221 RESOURCE LISTBOX r_satui_listbox
       
   222     {
       
   223     flags = EAknListBoxSelectionList;
       
   224     }
       
   225 
       
   226 /******************** EMPTY MENU **************************/
       
   227 
       
   228 //----------------------------------------------------------
       
   229 //
       
   230 //    r_satui_emptymenu_view
       
   231 //    Defines the main view
       
   232 //
       
   233 //----------------------------------------------------------
       
   234 //
       
   235 RESOURCE AVKON_VIEW r_satui_emptymenu_view
       
   236     {
       
   237     cba = R_AVKON_SOFTKEYS_EMPTY;
       
   238     menubar = r_satui_setupmenu_menubar;
       
   239     }
       
   240 
       
   241 /********************** DIALOGS ***************************/
       
   242 
       
   243 //----------------------------------------------------------
       
   244 //
       
   245 //    r_satui_wait_note
       
   246 //    Defines the wait note
       
   247 //
       
   248 //----------------------------------------------------------
       
   249 //
       
   250 RESOURCE DIALOG r_satui_wait_note
       
   251     {
       
   252     flags = EAknWaitNoteFlags;
       
   253 
       
   254     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   255     items =
       
   256         {
       
   257         DLG_LINE
       
   258             {
       
   259             type = EAknCtNote;
       
   260             id = ESatUiWaitNote;
       
   261             control = AVKON_NOTE 
       
   262                 {
       
   263                 layout = EWaitLayout;
       
   264                 singular_label = qtn_gen_note_processing;
       
   265                 imagefile = satui_bitmap_file;
       
   266                 imageid = EMbmSatuiQgn_note_sim;
       
   267                 imagemask = EMbmSatuiQgn_note_sim_mask;
       
   268                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   269                 };
       
   270             }
       
   271         };
       
   272     }
       
   273 
       
   274 //----------------------------------------------------------
       
   275 //
       
   276 //    r_satui_wait_note_with_cancel
       
   277 //    Defines the wait note with cancel (modal dialog)
       
   278 //
       
   279 //----------------------------------------------------------
       
   280 //
       
   281 RESOURCE DIALOG r_satui_wait_note_with_cancel
       
   282     {
       
   283     flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   284 
       
   285     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   286     items =
       
   287         {
       
   288         DLG_LINE
       
   289             {
       
   290             type = EAknCtNote;
       
   291             id = ESatUiWaitNoteWithCancel;
       
   292             control = AVKON_NOTE 
       
   293                 {
       
   294                 layout = EWaitLayout;
       
   295                 singular_label = qtn_gen_note_processing;
       
   296                 imagefile = satui_bitmap_file;
       
   297                 imageid = EMbmSatuiQgn_note_sim;
       
   298                 imagemask = EMbmSatuiQgn_note_sim_mask;
       
   299                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   300                 };
       
   301             }
       
   302         };
       
   303     }
       
   304 
       
   305 //----------------------------------------------------------
       
   306 //
       
   307 //    r_satui_refresh_wait_note
       
   308 //    Defines the refresh wait note
       
   309 //
       
   310 //----------------------------------------------------------
       
   311 //
       
   312 RESOURCE DIALOG r_satui_refresh_wait_note
       
   313     {
       
   314     flags = EAknWaitNoteFlags;
       
   315 
       
   316     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   317     items =
       
   318         {
       
   319         DLG_LINE
       
   320             {
       
   321             type = EAknCtNote;
       
   322             id = ESatUiRefreshWaitNote;
       
   323             control = AVKON_NOTE 
       
   324                 { 
       
   325                 layout = EWaitLayout;
       
   326                 singular_label = qtn_sat_wait_refresh_update;
       
   327                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   328                 };
       
   329             }
       
   330         };
       
   331     }
       
   332 
       
   333 //----------------------------------------------------------
       
   334 //
       
   335 //    r_satui_sms_wait_note
       
   336 //    Defines the sms sending wait note
       
   337 //
       
   338 //----------------------------------------------------------
       
   339 //
       
   340 RESOURCE DIALOG r_satui_sms_wait_note
       
   341     {
       
   342     flags = EAknWaitNoteFlags;
       
   343 
       
   344     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   345     items =
       
   346         {
       
   347         DLG_LINE
       
   348             {
       
   349             type = EAknCtNote;
       
   350             id = ESatUiSmsWaitNote;
       
   351             control = AVKON_NOTE 
       
   352                 { 
       
   353                 layout = EWaitLayout;
       
   354                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   355                 };
       
   356             }
       
   357         };
       
   358     }
       
   359 
       
   360 //----------------------------------------------------------
       
   361 //
       
   362 //    r_satui_ss_wait_note
       
   363 //    Defines the ss sending wait note
       
   364 //
       
   365 //----------------------------------------------------------
       
   366 //
       
   367 RESOURCE DIALOG r_satui_ss_wait_note
       
   368     {
       
   369     flags = EAknWaitNoteFlags;
       
   370 
       
   371     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   372     items =
       
   373         {
       
   374         DLG_LINE
       
   375             {
       
   376             type = EAknCtNote;
       
   377             id = ESatUiSsWaitNote;
       
   378             control = AVKON_NOTE 
       
   379                 { 
       
   380                 layout = EWaitLayout;
       
   381                 singular_label = qtn_sat_sending_sms;
       
   382                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   383                 };
       
   384             }
       
   385         };
       
   386     }
       
   387 
       
   388 //----------------------------------------------------------
       
   389 //
       
   390 //    r_satui_dtmf_wait_note
       
   391 //    Defines the dtmf sending wait note
       
   392 //
       
   393 //----------------------------------------------------------
       
   394 //
       
   395 RESOURCE DIALOG r_satui_dtmf_wait_note
       
   396     {
       
   397     flags = EAknWaitNoteFlags;
       
   398 
       
   399     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   400     items =
       
   401         {
       
   402         DLG_LINE
       
   403             {
       
   404             type = EAknCtNote;
       
   405             id = ESatUiDtmfWaitNote;
       
   406             control = AVKON_NOTE 
       
   407                 {
       
   408                 // text will be set at run-time 
       
   409                 layout = EWaitLayout;
       
   410                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   411                 };
       
   412             }
       
   413         };
       
   414     }
       
   415 
       
   416 //----------------------------------------------------------
       
   417 //
       
   418 //    r_satui_permanent_note
       
   419 //    Defines the permanent note
       
   420 //
       
   421 //----------------------------------------------------------
       
   422 //
       
   423 RESOURCE DIALOG r_satui_permanent_note
       
   424     {
       
   425     flags = EEikDialogFlagNoDrag |
       
   426             EEikDialogFlagNoTitleBar |
       
   427             EEikDialogFlagCbaButtons;
       
   428 
       
   429     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   430     items =
       
   431         {
       
   432         DLG_LINE
       
   433             {
       
   434             type = EAknCtNote;
       
   435             id = ESatUiPermanentNote;
       
   436             control = AVKON_NOTE 
       
   437                 {
       
   438                 layout = EGeneralLayout;
       
   439                 };
       
   440             }
       
   441         };
       
   442     }
       
   443 
       
   444 //----------------------------------------------------------
       
   445 //
       
   446 //    r_satui_confirm_yes_no_query
       
   447 //    Defines the yes/no confirmation query
       
   448 //
       
   449 //----------------------------------------------------------
       
   450 //
       
   451 RESOURCE DIALOG r_satui_confirm_yes_no_query
       
   452     {
       
   453     flags = EGeneralQueryFlags;
       
   454     buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   455     items =
       
   456         {
       
   457         DLG_LINE
       
   458             {
       
   459             type = EAknCtQuery;
       
   460             id = EGeneralQuery;
       
   461             control = AVKON_CONFIRMATION_QUERY 
       
   462                 {
       
   463                 layout = EConfirmationLayout;
       
   464                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   465                 };
       
   466             }
       
   467         };
       
   468     }
       
   469     
       
   470 //----------------------------------------------------------
       
   471 //
       
   472 //    r_satui_confirm_yes_no_query_with_icon
       
   473 //    Defines the yes/no confirmation query with icon
       
   474 //
       
   475 //----------------------------------------------------------
       
   476 //
       
   477 RESOURCE DIALOG r_satui_confirm_yes_no_query_with_icon
       
   478     {
       
   479     flags = EGeneralQueryFlags;
       
   480     buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   481     items =
       
   482         {
       
   483         DLG_LINE 
       
   484             {
       
   485             type = EAknCtPopupHeadingPane;
       
   486             id = EAknMessageQueryHeaderId;
       
   487             control = AVKON_HEADING
       
   488                 {
       
   489                 label = space;
       
   490                 };
       
   491             },
       
   492         DLG_LINE
       
   493             {
       
   494             type = EAknCtQuery;
       
   495             id = EGeneralQuery;
       
   496             control = AVKON_CONFIRMATION_QUERY 
       
   497                 {
       
   498                 layout = EConfirmationLayout;
       
   499                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   500                 };
       
   501             }
       
   502         };
       
   503     }
       
   504 
       
   505 //----------------------------------------------------------
       
   506 //
       
   507 //    r_satui_immediate_digit_query
       
   508 //    Defines the immediate digit response query
       
   509 //
       
   510 //----------------------------------------------------------
       
   511 //
       
   512 RESOURCE DIALOG r_satui_immediate_digit_query
       
   513     {
       
   514     flags = EGeneralQueryFlags;
       
   515     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   516     items =
       
   517         {
       
   518         DLG_LINE
       
   519             {
       
   520             type = EAknCtQuery;
       
   521             id = EGeneralQuery;
       
   522             control = AVKON_CONFIRMATION_QUERY 
       
   523                 {
       
   524                 layout = EConfirmationLayout;
       
   525                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   526                 };
       
   527             }
       
   528         };
       
   529     }
       
   530     
       
   531 //----------------------------------------------------------
       
   532 //
       
   533 //    r_satui_immediate_digit_note_with_icon
       
   534 //    Defines the immediate digit response note with icon
       
   535 //
       
   536 //----------------------------------------------------------
       
   537 //
       
   538 RESOURCE DIALOG r_satui_immediate_digit_note_with_icon
       
   539     {
       
   540     flags = EGeneralQueryFlags;
       
   541     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   542     items =
       
   543         {
       
   544         DLG_LINE 
       
   545             {
       
   546             type = EAknCtPopupHeadingPane;
       
   547             id = EAknMessageQueryHeaderId;
       
   548             control = AVKON_HEADING
       
   549                 {
       
   550                 label = space;
       
   551                 };
       
   552             },
       
   553         DLG_LINE
       
   554             {
       
   555             type = EAknCtQuery;
       
   556             id = EGeneralQuery;
       
   557             control = AVKON_CONFIRMATION_QUERY 
       
   558                 {
       
   559                 layout = EConfirmationLayout;
       
   560                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   561                 };
       
   562             }
       
   563         };
       
   564     }
       
   565 
       
   566 //----------------------------------------------------------
       
   567 //
       
   568 //    r_satui_confirm_ok_cancel_query
       
   569 //    Defines the ok/cancel confirmation query
       
   570 //
       
   571 //----------------------------------------------------------
       
   572 //
       
   573 RESOURCE DIALOG r_satui_confirm_ok_cancel_query
       
   574     {
       
   575     flags = EGeneralQueryFlags;
       
   576     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   577     items =
       
   578         {
       
   579         DLG_LINE
       
   580             {
       
   581             type = EAknCtQuery;
       
   582             id = EGeneralQuery;
       
   583             control = AVKON_CONFIRMATION_QUERY 
       
   584                 {
       
   585                 layout = EConfirmationLayout;
       
   586                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   587                 };
       
   588             }
       
   589         };
       
   590     }
       
   591     
       
   592 //----------------------------------------------------------
       
   593 //
       
   594 //    r_satui_confirm_ok_cancel_query_with_icon
       
   595 //    Defines the ok/cancel confirmation query with icon
       
   596 //
       
   597 //----------------------------------------------------------
       
   598 //
       
   599 RESOURCE DIALOG r_satui_confirm_ok_cancel_query_with_icon
       
   600     {
       
   601     flags = EGeneralQueryFlags;
       
   602     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   603     items =
       
   604         {
       
   605         DLG_LINE 
       
   606             {
       
   607             type = EAknCtPopupHeadingPane;
       
   608             id = EAknMessageQueryHeaderId;
       
   609             control = AVKON_HEADING
       
   610                 {
       
   611                 label = space;
       
   612                 };
       
   613             },
       
   614         DLG_LINE
       
   615             {
       
   616             type = EAknCtQuery;
       
   617             id = EGeneralQuery;
       
   618             control = AVKON_CONFIRMATION_QUERY 
       
   619                 {
       
   620                 layout = EConfirmationLayout;
       
   621                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   622                 };
       
   623             }
       
   624         
       
   625         };
       
   626     }    
       
   627 
       
   628 //----------------------------------------------------------
       
   629 //
       
   630 //    r_satui_confirm_send_cancel_query
       
   631 //    Defines the send/cancel confirmation query
       
   632 //
       
   633 //----------------------------------------------------------
       
   634 //
       
   635 RESOURCE DIALOG r_satui_confirm_send_cancel_query
       
   636     {
       
   637     flags = EGeneralQueryFlags;
       
   638     buttons = r_satui_softkeys_send_cancel;
       
   639     items =
       
   640         {
       
   641         DLG_LINE
       
   642             {
       
   643             type = EAknCtQuery;
       
   644             id = EGeneralQuery;
       
   645             control = AVKON_CONFIRMATION_QUERY 
       
   646                 {
       
   647                 layout = EConfirmationLayout;
       
   648                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   649                 };
       
   650             }
       
   651         };
       
   652     }
       
   653 
       
   654 
       
   655 
       
   656 //----------------------------------------------------------
       
   657 //
       
   658 //    r_satui_confirm_call_cancel_query
       
   659 //    Defines the call/cancel confirmation query
       
   660 //
       
   661 //----------------------------------------------------------
       
   662 //
       
   663 RESOURCE DIALOG r_satui_confirm_call_cancel_query
       
   664     {
       
   665     flags = EGeneralQueryFlags;
       
   666     buttons = r_satui_softkeys_call_cancel;
       
   667     items =
       
   668         {
       
   669         DLG_LINE
       
   670             {
       
   671             type = EAknCtQuery;
       
   672             id = EGeneralQuery;
       
   673             control = AVKON_CONFIRMATION_QUERY 
       
   674                 {
       
   675                 layout = EConfirmationLayout;
       
   676                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   677                 };
       
   678             }
       
   679         };
       
   680     }
       
   681     
       
   682 //----------------------------------------------------------
       
   683 //
       
   684 //    r_satui_confirm_call_cancel_query_with_icon
       
   685 //    Defines the call/cancel confirmation query
       
   686 //
       
   687 //----------------------------------------------------------
       
   688 //
       
   689 RESOURCE DIALOG r_satui_confirm_call_cancel_query_with_icon
       
   690     {
       
   691     flags = EGeneralQueryFlags;
       
   692     buttons = r_satui_softkeys_call_cancel;
       
   693     items =
       
   694         {
       
   695         DLG_LINE 
       
   696             {
       
   697             type = EAknCtPopupHeadingPane;
       
   698             id = EAknMessageQueryHeaderId;
       
   699             control = AVKON_HEADING
       
   700                 {
       
   701                 label = space;
       
   702                 };
       
   703             },
       
   704         DLG_LINE
       
   705             {
       
   706             type = EAknCtQuery;
       
   707             id = EGeneralQuery;
       
   708             control = AVKON_CONFIRMATION_QUERY 
       
   709                 {
       
   710                 layout = EConfirmationLayout;
       
   711                 animation = R_QGN_NOTE_QUERY_ANIM;
       
   712                 };
       
   713             }
       
   714         
       
   715         };
       
   716     }   
       
   717 
       
   718 //----------------------------------------------------------
       
   719 //
       
   720 //    r_satui_information_note
       
   721 //    Defines the information note
       
   722 //
       
   723 //----------------------------------------------------------
       
   724 //
       
   725 RESOURCE DIALOG r_satui_information_note
       
   726     {
       
   727     flags = EEikDialogFlagNoDrag |
       
   728             EEikDialogFlagNoTitleBar |
       
   729             EEikDialogFlagCbaButtons |
       
   730 	    EEikDialogFlagWait;
       
   731 
       
   732     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   733     items =
       
   734         {
       
   735         DLG_LINE
       
   736             {
       
   737             type = EAknCtNote;
       
   738             id = ESatUiInformationNote;
       
   739             control = AVKON_NOTE 
       
   740                 { 
       
   741                 layout = EGeneralLayout;
       
   742                 singular_label = space;
       
   743                 animation = R_QGN_NOTE_INFO_ANIM;
       
   744                 };
       
   745             }
       
   746         };
       
   747     }
       
   748 
       
   749 //----------------------------------------------------------
       
   750 //
       
   751 //    r_satui_call_control_note
       
   752 //    Defines the call control
       
   753 //
       
   754 //----------------------------------------------------------
       
   755 //
       
   756 RESOURCE DIALOG r_satui_call_control_note
       
   757     {
       
   758     flags = EGeneralQueryFlags;
       
   759 
       
   760     buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
   761     items =
       
   762         {
       
   763         DLG_LINE
       
   764             {
       
   765             type = EAknCtNote;
       
   766             id = ESatUiInformationNote;
       
   767             control = AVKON_NOTE 
       
   768                 { 
       
   769                 layout = EGeneralLayout;
       
   770                 singular_label = space;
       
   771                 animation = R_QGN_NOTE_INFO_ANIM;
       
   772                 };
       
   773             }
       
   774         };
       
   775     }
       
   776 
       
   777 //----------------------------------------------------------
       
   778 //
       
   779 //    r_satui_mosm_control_note
       
   780 //    Defines the mo sm control note
       
   781 //
       
   782 //----------------------------------------------------------
       
   783 //
       
   784 RESOURCE DIALOG r_satui_mosm_control_note
       
   785     {
       
   786     flags = EGeneralQueryFlags;
       
   787 
       
   788     buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
   789     items =
       
   790         {
       
   791         DLG_LINE
       
   792             {
       
   793             type = EAknCtNote;
       
   794             id = ESatUiInformationNote;
       
   795             control = AVKON_NOTE 
       
   796                 { 
       
   797                 layout = EGeneralLayout;
       
   798                 singular_label = space;
       
   799                 animation = R_QGN_NOTE_INFO_ANIM;
       
   800                 };
       
   801             }
       
   802         };
       
   803     }
       
   804 
       
   805 //----------------------------------------------------------
       
   806 //   
       
   807 //    r_satui_message
       
   808 //    Defines the message query
       
   809 //
       
   810 //----------------------------------------------------------
       
   811 //
       
   812 RESOURCE DIALOG r_satui_message
       
   813     {
       
   814     flags = EGeneralQueryFlags|
       
   815             EEikDialogFlagNoBorder|
       
   816             EEikDialogFlagNoShadow|
       
   817             EEikDialogFlagWait;
       
   818 
       
   819     buttons = R_AVKON_SOFTKEYS_OK_BACK;
       
   820     items =
       
   821         {
       
   822         DLG_LINE 
       
   823             {
       
   824             type = EAknCtPopupHeadingPane;
       
   825             id = EAknMessageQueryHeaderId;
       
   826             control = AVKON_HEADING
       
   827                 {
       
   828                 headinglayout = R_AVKON_WML_SIGN_QUERY_HEADING_PANE;
       
   829                 };
       
   830             },
       
   831         DLG_LINE
       
   832             {
       
   833             type = EAknCtMessageQuery;
       
   834             id = EAknMessageQueryContentId;   
       
   835             control = AVKON_MESSAGE_QUERY    
       
   836                 {
       
   837                 };
       
   838             }
       
   839         };
       
   840     }
       
   841 
       
   842 //----------------------------------------------------------
       
   843 //   
       
   844 //    r_satui_message_text_icon
       
   845 //    Defines the message query with icon and text
       
   846 //
       
   847 //----------------------------------------------------------
       
   848 //
       
   849 
       
   850 
       
   851 RESOURCE DIALOG r_satui_message_text_icon
       
   852     {
       
   853     flags= EEikDialogFlagWait;
       
   854     buttons=R_AVKON_SOFTKEYS_OK_BACK;
       
   855     items=
       
   856         {
       
   857         DLG_LINE 
       
   858             {
       
   859             type = EEikCtLabel;
       
   860             id = ESatUiDisplayTextIconLabel;
       
   861             control = LABEL 
       
   862                 {
       
   863                 };
       
   864             },
       
   865         DLG_LINE 
       
   866             {
       
   867             type = EEikCtSpacer;
       
   868             id = ESatUiDisplayTextIconSpacer;
       
   869             control = SPACER 
       
   870                 {
       
   871                 color=EEikSpacerBlack;
       
   872                 };
       
   873             },
       
   874         DLG_LINE
       
   875             {
       
   876             type=EEikCtRichTextEditor;
       
   877             id = ESatUiDisplayTextIconRTxtEd;
       
   878             control = RTXTED
       
   879                 {
       
   880                 width=170;
       
   881                 height=150;
       
   882                 numlines = 10;
       
   883                 max_view_height_in_lines=6;
       
   884                 flags= EEikEdwinNoHorizScrolling | EEikEdwinDisplayOnly | 
       
   885                     EEikEdwinReadOnly | EEikEdwinNoAutoSelection | 
       
   886                     EEikEdwinAvkonDisableCursor;
       
   887                 };
       
   888             }
       
   889         };
       
   890     }
       
   891 
       
   892 
       
   893 //----------------------------------------------------------
       
   894 //
       
   895 //    r_satui_text_query_without_label
       
   896 //    Defines the text query
       
   897 //
       
   898 //----------------------------------------------------------
       
   899 //
       
   900 RESOURCE DIALOG r_satui_text_query_without_label
       
   901     {
       
   902     flags = EEikDialogFlagWait|
       
   903             EEikDialogFlagNoDrag|
       
   904             EEikDialogFlagNoTitleBar|
       
   905             EEikDialogFlagCbaButtons|
       
   906             EEikDialogFlagNoShadow;
       
   907     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   908     items =
       
   909         {
       
   910         DLG_LINE
       
   911             {
       
   912             type = EAknCtQuery;
       
   913             id = EGeneralQuery;
       
   914             control = AVKON_DATA_QUERY 
       
   915                 { 
       
   916                 layout = EDataLayout;
       
   917                 control = EDWIN
       
   918                     {
       
   919                     width=16; 
       
   920                     lines=1; 
       
   921                     maxlength = 256;
       
   922 
       
   923                     };
       
   924                 };
       
   925             }
       
   926         };
       
   927     }
       
   928 
       
   929 //----------------------------------------------------------
       
   930 //
       
   931 //    r_satui_number_query_without_label
       
   932 //    Defines the number query
       
   933 //
       
   934 //----------------------------------------------------------
       
   935 //
       
   936 RESOURCE DIALOG r_satui_number_query_without_label
       
   937     {
       
   938     flags = EGeneralQueryFlags;
       
   939     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   940     items =
       
   941         {
       
   942         DLG_LINE
       
   943             {
       
   944             type = EAknCtQuery;
       
   945             id = EGeneralQuery;
       
   946             control = AVKON_DATA_QUERY 
       
   947                 {
       
   948                 layout = EPhoneLayout;
       
   949                 label = space;
       
   950                 control = EDWIN 
       
   951                     { 
       
   952                     numeric_keymap = EAknEditorSATNumberModeKeymap;
       
   953                     maxlength=256; 
       
   954                     width=16; 
       
   955                     lines=1; 
       
   956                     };
       
   957                 };
       
   958             }
       
   959         };
       
   960     }
       
   961 
       
   962 //----------------------------------------------------------
       
   963 //
       
   964 //    r_satui_hidden_number_query_without_label
       
   965 //    Defines the hidden number query
       
   966 //
       
   967 //----------------------------------------------------------
       
   968 //
       
   969 RESOURCE DIALOG r_satui_hidden_number_query_without_label
       
   970     {
       
   971     flags = EGeneralQueryFlags;
       
   972     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   973     items =
       
   974         {
       
   975         DLG_LINE
       
   976             {
       
   977             type = EAknCtQuery;
       
   978             id = EGeneralQuery;
       
   979             control = AVKON_DATA_QUERY 
       
   980                 { 
       
   981                 layout = EPinLayout;
       
   982                 control = SECRETED
       
   983                     {
       
   984                     num_letters = 32;
       
   985                     };
       
   986                 };
       
   987             }
       
   988         };
       
   989     }
       
   990 
       
   991 //----------------------------------------------------------
       
   992 //    
       
   993 //    r_satui_number_query_with_label_and_icon
       
   994 //    Defines the number query with label and icon
       
   995 //
       
   996 //----------------------------------------------------------
       
   997 //
       
   998 RESOURCE DIALOG r_satui_number_query_with_label_and_icon
       
   999     {
       
  1000     flags = EGeneralQueryFlags;
       
  1001     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
  1002     items =
       
  1003         {
       
  1004         DLG_LINE 
       
  1005             {
       
  1006             type = EAknCtPopupHeadingPane;
       
  1007             id = EAknMessageQueryHeaderId;
       
  1008             control = AVKON_HEADING
       
  1009                 {
       
  1010                 label = space;
       
  1011                 };
       
  1012             },
       
  1013         DLG_LINE
       
  1014             {
       
  1015             type = EAknCtQuery;
       
  1016             id = EGeneralQuery;
       
  1017             control = AVKON_DATA_QUERY 
       
  1018                 {
       
  1019                 layout = EPhoneLayout;
       
  1020                 control = EDWIN 
       
  1021                     { 
       
  1022                     numeric_keymap = EAknEditorSATNumberModeKeymap;
       
  1023                     maxlength=256; 
       
  1024                     width=16; 
       
  1025                     lines=1; 
       
  1026                     };
       
  1027                 };
       
  1028             }
       
  1029         };
       
  1030     }
       
  1031 
       
  1032 //----------------------------------------------------------
       
  1033 //    
       
  1034 //    r_satui_text_query_with_label_and_icon
       
  1035 //    Defines the text query with label and icon
       
  1036 //
       
  1037 //----------------------------------------------------------
       
  1038 //
       
  1039 RESOURCE DIALOG r_satui_text_query_with_label_and_icon
       
  1040     {
       
  1041     flags=EGeneralQueryFlags;
       
  1042     buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
       
  1043     items=
       
  1044         {
       
  1045         DLG_LINE 
       
  1046             {
       
  1047             type = EAknCtPopupHeadingPane;
       
  1048             id = EAknMessageQueryHeaderId;
       
  1049             control = AVKON_HEADING
       
  1050                 {
       
  1051                 label = space;
       
  1052                 };
       
  1053             },
       
  1054         DLG_LINE
       
  1055             {
       
  1056             type = EAknCtQuery;
       
  1057             id = EGeneralQuery;
       
  1058             control = AVKON_DATA_QUERY 
       
  1059                 { 
       
  1060                 layout = EDataLayout;
       
  1061                 control = EDWIN
       
  1062                     {
       
  1063                     width=16; 
       
  1064                     lines=1; 
       
  1065                     maxlength = 256;
       
  1066                     };
       
  1067                 };
       
  1068             }
       
  1069         };
       
  1070     }
       
  1071 
       
  1072 //----------------------------------------------------------
       
  1073 //      
       
  1074 //    r_satui_hidden_number_query_with_label_and_icon
       
  1075 //    Defines the hidden number query with label and icon
       
  1076 //        
       
  1077 //----------------------------------------------------------
       
  1078 //
       
  1079 RESOURCE DIALOG r_satui_hidden_number_query_with_label_and_icon
       
  1080     {
       
  1081     flags = EGeneralQueryFlags;
       
  1082     buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
  1083     items =
       
  1084         {
       
  1085         DLG_LINE 
       
  1086             {
       
  1087             type = EAknCtPopupHeadingPane;
       
  1088             id = EAknMessageQueryHeaderId;
       
  1089             control = AVKON_HEADING
       
  1090                 {
       
  1091                 label = space;
       
  1092                 };
       
  1093             },
       
  1094         DLG_LINE
       
  1095             {
       
  1096             type = EAknCtQuery;
       
  1097             id = EGeneralQuery;
       
  1098             control = AVKON_DATA_QUERY 
       
  1099                 { 
       
  1100                 layout = EPinLayout;
       
  1101                 control = SECRETED
       
  1102                     {
       
  1103                     num_letters = 32;
       
  1104                     };
       
  1105                 };
       
  1106             }
       
  1107         };
       
  1108     }
       
  1109 
       
  1110 // ---------------------------------------------------------
       
  1111 //
       
  1112 //    r_satui_bip_wait_note
       
  1113 //    Defines send data wait dialog
       
  1114 //
       
  1115 // ---------------------------------------------------------
       
  1116 RESOURCE DIALOG r_satui_bip_wait_note
       
  1117     {
       
  1118     flags = EAknWaitNoteFlags;
       
  1119 
       
  1120     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
  1121     items =
       
  1122         {
       
  1123         DLG_LINE
       
  1124             {
       
  1125             type = EAknCtNote;
       
  1126             id = ESatUiWaitNote;
       
  1127             control = AVKON_NOTE 
       
  1128                 { 
       
  1129                 layout = EWaitLayout;
       
  1130                 //singular_label = qtn_sat_conf_send_data_bip;
       
  1131                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
  1132                 };
       
  1133             }
       
  1134         };
       
  1135     }
       
  1136     
       
  1137 //----------------------------------------------------------
       
  1138 //
       
  1139 //    r_satui_close_channel_icon_note
       
  1140 //    Defines the information note
       
  1141 //
       
  1142 //----------------------------------------------------------
       
  1143 //
       
  1144 RESOURCE DIALOG r_satui_close_channel_icon_note
       
  1145     {
       
  1146     flags = EEikDialogFlagNoDrag |
       
  1147             EEikDialogFlagNoTitleBar |
       
  1148             EEikDialogFlagCbaButtons;
       
  1149 
       
  1150     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
  1151     items =
       
  1152         {
       
  1153         DLG_LINE
       
  1154             {
       
  1155             type = EAknCtNote;
       
  1156             id = ESatUiInformationNote;
       
  1157             control = AVKON_NOTE 
       
  1158                 { 
       
  1159                 layout = EGeneralLayout;
       
  1160                 singular_label = space;
       
  1161                 };
       
  1162             }
       
  1163         };
       
  1164     }
       
  1165 
       
  1166 //----------------------------------------------------------
       
  1167 //
       
  1168 //    r_satui_close_channel_note
       
  1169 //    Defines the information note
       
  1170 //
       
  1171 //----------------------------------------------------------
       
  1172 //
       
  1173 RESOURCE DIALOG r_satui_close_channel_note
       
  1174     {
       
  1175     flags = EEikDialogFlagNoDrag |
       
  1176             EEikDialogFlagNoTitleBar |
       
  1177             EEikDialogFlagCbaButtons;
       
  1178 
       
  1179     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
  1180     items =
       
  1181         {
       
  1182         DLG_LINE
       
  1183             {
       
  1184             type = EAknCtNote;
       
  1185             id = ESatUiInformationNote;
       
  1186             control = AVKON_NOTE 
       
  1187                 { 
       
  1188                 layout = EGeneralLayout;
       
  1189                 singular_label = space;
       
  1190                 animation = R_QGN_NOTE_INFO_ANIM;
       
  1191                 };
       
  1192             }
       
  1193         };
       
  1194     }
       
  1195 
       
  1196 //----------------------------------------------------
       
  1197 //   
       
  1198 //    r_satui_requesting_wait_note
       
  1199 //    Wait note for requesting.
       
  1200 //
       
  1201 //----------------------------------------------------
       
  1202 //
       
  1203 RESOURCE DIALOG r_satui_requesting_wait_note
       
  1204     {
       
  1205     flags = EAknWaitNoteFlags;
       
  1206 
       
  1207     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
  1208     items =
       
  1209         {
       
  1210         DLG_LINE
       
  1211             {
       
  1212             type = EAknCtNote;
       
  1213             id = ESatUiWaitNote;
       
  1214             control = AVKON_NOTE 
       
  1215                 { 
       
  1216                 layout = EWaitLayout;
       
  1217                 singular_label = text_sending;
       
  1218                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
  1219                 };
       
  1220             }
       
  1221         };
       
  1222     }
       
  1223 
       
  1224 /******************* Additional CBA ***********************/
       
  1225 
       
  1226 //----------------------------------------------------------
       
  1227 //
       
  1228 //    r_satui_softkeys_send_cancel
       
  1229 //    Defines Send softkey and Cancel softkey
       
  1230 //
       
  1231 //----------------------------------------------------------
       
  1232 //
       
  1233 RESOURCE CBA r_satui_softkeys_send_cancel
       
  1234     {
       
  1235     buttons =
       
  1236         {
       
  1237         CBA_BUTTON {id = ESatUiSoftkeySend; txt = text_softkey_send;},
       
  1238         CBA_BUTTON {id = EAknSoftkeyCancel; txt = text_softkey_cancel;}
       
  1239         };
       
  1240     }
       
  1241 
       
  1242 //----------------------------------------------------------
       
  1243 //
       
  1244 //    r_satui_softkeys_call_cancel
       
  1245 //    Defines Call softkey and Cancel softkey
       
  1246 //
       
  1247 //----------------------------------------------------------
       
  1248 //
       
  1249 RESOURCE CBA r_satui_softkeys_call_cancel
       
  1250     {
       
  1251     buttons =
       
  1252         {
       
  1253         CBA_BUTTON {id = ESatUiSoftkeyCall; txt = text_softkey_call;},
       
  1254         CBA_BUTTON {id = EAknSoftkeyCancel; txt = text_softkey_cancel;}
       
  1255         };
       
  1256     }
       
  1257 
       
  1258 
       
  1259 //----------------------------------------------------
       
  1260 //   
       
  1261 //    r_satui_softkey_quit
       
  1262 //
       
  1263 //
       
  1264 //----------------------------------------------------
       
  1265 //
       
  1266 RESOURCE CBA r_satui_softkey_quit
       
  1267     {
       
  1268     buttons =
       
  1269         {
       
  1270         CBA_BUTTON {},
       
  1271         CBA_BUTTON {id=EAknSoftkeyClose; txt=text_softkey_quit;}
       
  1272         };
       
  1273     }
       
  1274 
       
  1275 /******************* Localized texts **********************/
       
  1276 
       
  1277 // ---------------------------------------------------------
       
  1278 //
       
  1279 //    r_qtn_sat_title
       
  1280 //    Defines localized text
       
  1281 //
       
  1282 // ---------------------------------------------------------
       
  1283 //
       
  1284 RESOURCE TBUF r_qtn_sat_title
       
  1285     {
       
  1286     buf = qtn_sat_title;
       
  1287     }
       
  1288 
       
  1289 // ---------------------------------------------------------
       
  1290 //
       
  1291 //    r_qtn_sat_message_header
       
  1292 //    Defines localized text
       
  1293 //
       
  1294 // ---------------------------------------------------------
       
  1295 //
       
  1296 RESOURCE TBUF r_qtn_sat_message_header
       
  1297     {
       
  1298     buf = qtn_sat_message_header;
       
  1299     }
       
  1300 
       
  1301 // ---------------------------------------------------------
       
  1302 //
       
  1303 //    r_qtn_sat_help_header
       
  1304 //    Defines localized text
       
  1305 //
       
  1306 // ---------------------------------------------------------
       
  1307 //
       
  1308 RESOURCE TBUF r_qtn_sat_help_header
       
  1309     {
       
  1310     buf = qtn_sat_help_header;
       
  1311     }
       
  1312 
       
  1313 // ---------------------------------------------------------
       
  1314 //
       
  1315 //    r_text_simatk_enter_char
       
  1316 //    Defines localized text
       
  1317 //
       
  1318 // ---------------------------------------------------------
       
  1319 //
       
  1320 RESOURCE TBUF r_text_simatk_enter_char
       
  1321     {
       
  1322     buf = text_simatk_enter_char;
       
  1323     }
       
  1324 
       
  1325 // ---------------------------------------------------------
       
  1326 //
       
  1327 //    r_text_simatk_enter_char_string
       
  1328 //    Defines localized text
       
  1329 //
       
  1330 // ---------------------------------------------------------
       
  1331 //
       
  1332 RESOURCE TBUF r_text_simatk_enter_char_string
       
  1333     {
       
  1334     buf = text_simatk_enter_char_string;
       
  1335     }
       
  1336 
       
  1337 // ---------------------------------------------------------
       
  1338 //
       
  1339 //    r_text_simatk_enter_nbr
       
  1340 //    Defines localized text
       
  1341 //
       
  1342 // ---------------------------------------------------------
       
  1343 //
       
  1344 RESOURCE TBUF r_text_simatk_enter_nbr
       
  1345     {
       
  1346     buf = text_simatk_enter_nbr;
       
  1347     }
       
  1348 
       
  1349 // ---------------------------------------------------------
       
  1350 //
       
  1351 //    r_text_simatk_enter_nbr_string
       
  1352 //    Defines localized text
       
  1353 //
       
  1354 // ---------------------------------------------------------
       
  1355 //
       
  1356 RESOURCE TBUF r_text_simatk_enter_nbr_string
       
  1357     {
       
  1358     buf = text_simatk_enter_nbr_string;
       
  1359     }
       
  1360 
       
  1361 // ---------------------------------------------------------
       
  1362 //
       
  1363 //    r_text_done
       
  1364 //    Defines localized text
       
  1365 //
       
  1366 // ---------------------------------------------------------
       
  1367 //
       
  1368 RESOURCE TBUF r_text_done
       
  1369     {
       
  1370     buf = text_done;
       
  1371     }
       
  1372 
       
  1373 // ---------------------------------------------------------
       
  1374 //
       
  1375 //    r_text_not_done
       
  1376 //    Defines localized text
       
  1377 //
       
  1378 // ---------------------------------------------------------
       
  1379 //
       
  1380 RESOURCE TBUF r_text_not_done
       
  1381     {
       
  1382     buf = text_not_done;
       
  1383     }
       
  1384 
       
  1385 // ---------------------------------------------------------
       
  1386 //
       
  1387 //    r_text_simatk_send_sms;
       
  1388 //    Defines localized text
       
  1389 //
       
  1390 // ---------------------------------------------------------
       
  1391 //
       
  1392 RESOURCE TBUF r_text_simatk_send_sms
       
  1393     {
       
  1394     buf = text_simatk_send_sms;
       
  1395     }
       
  1396 
       
  1397 // ---------------------------------------------------------
       
  1398 //
       
  1399 //    r_qtn_sat_note_sms_send;
       
  1400 //    Defines localized text
       
  1401 //
       
  1402 // ---------------------------------------------------------
       
  1403 //
       
  1404 RESOURCE TBUF r_qtn_sat_note_sms_send
       
  1405     {
       
  1406     buf = qtn_sat_note_sms_send;
       
  1407     }
       
  1408 
       
  1409 // ---------------------------------------------------------
       
  1410 //
       
  1411 //    r_qtn_sat_note_sending_dtmf_template;
       
  1412 //    Defines localized text
       
  1413 //
       
  1414 // ---------------------------------------------------------
       
  1415 //
       
  1416 
       
  1417 RESOURCE TBUF r_qtn_sat_note_sending_dtmf_template
       
  1418     {
       
  1419     buf = qtn_sat_note_sending_dtmf_template;
       
  1420     }
       
  1421 
       
  1422 // ---------------------------------------------------------
       
  1423 //
       
  1424 //    r_qtn_sat_cc_not_allowed;
       
  1425 //    Defines localized text
       
  1426 //
       
  1427 // ---------------------------------------------------------
       
  1428 //
       
  1429 
       
  1430 RESOURCE TBUF r_qtn_sat_cc_not_allowed
       
  1431     {
       
  1432     buf = qtn_sat_cc_not_allowed;
       
  1433     }
       
  1434 
       
  1435 // ---------------------------------------------------------
       
  1436 //
       
  1437 //    r_qtn_sat_cc_modified;
       
  1438 //    Defines localized text
       
  1439 //
       
  1440 // ---------------------------------------------------------
       
  1441 //
       
  1442 
       
  1443 RESOURCE TBUF r_qtn_sat_cc_modified
       
  1444     {
       
  1445     buf = qtn_sat_cc_modified;
       
  1446     }
       
  1447 
       
  1448 // ---------------------------------------------------------
       
  1449 
       
  1450 //    r_qtn_sat_mosm_not_allowed;
       
  1451 //    Defines localized text
       
  1452 //
       
  1453 // ---------------------------------------------------------
       
  1454 //
       
  1455 RESOURCE TBUF r_qtn_sat_mosm_not_allowed
       
  1456     {
       
  1457     buf = text_request_rejected;
       
  1458     }
       
  1459 
       
  1460 // ---------------------------------------------------------
       
  1461 //
       
  1462 //    r_qtn_sat_mosm_modified;
       
  1463 //    Defines localized text
       
  1464 //
       
  1465 // ---------------------------------------------------------
       
  1466 //
       
  1467 RESOURCE TBUF r_qtn_sat_mosm_modified
       
  1468     {
       
  1469     buf = qtn_sat_request_modified;
       
  1470     }
       
  1471 
       
  1472 // ---------------------------------------------------------
       
  1473 //
       
  1474 //    r_text_simatk_send_ss;
       
  1475 //    Defines localized text
       
  1476 //
       
  1477 // ---------------------------------------------------------
       
  1478 //
       
  1479 RESOURCE TBUF r_text_simatk_send_ss
       
  1480     {
       
  1481     buf = text_simatk_send_ss;
       
  1482     }
       
  1483 
       
  1484 // ---------------------------------------------------------
       
  1485 //
       
  1486 //    r_text_call_setup_by_simatk
       
  1487 //    Defines localized text
       
  1488 //
       
  1489 // ---------------------------------------------------------
       
  1490 //
       
  1491 RESOURCE TBUF r_text_call_setup_by_simatk
       
  1492     {
       
  1493     buf = text_call_setup_by_simatk;
       
  1494     }
       
  1495 
       
  1496 // ---------------------------------------------------------
       
  1497 //
       
  1498 //    r_qtn_sat_query_title
       
  1499 //    Defines localized text
       
  1500 //
       
  1501 // ---------------------------------------------------------
       
  1502 //
       
  1503 RESOURCE TBUF r_qtn_sat_query_title
       
  1504     {
       
  1505     buf = qtn_sat_query_title;
       
  1506     }
       
  1507 
       
  1508 // ---------------------------------------------------------
       
  1509 //
       
  1510 //    r_qtn_sat_query_allow_reset
       
  1511 //    Defines localized text
       
  1512 //
       
  1513 // ---------------------------------------------------------
       
  1514 //
       
  1515 RESOURCE TBUF r_qtn_sat_query_allow_reset
       
  1516     {
       
  1517     buf = qtn_sat_query_allow_reset;
       
  1518     }
       
  1519 
       
  1520 // ---------------------------------------------------------
       
  1521 //
       
  1522 //    r_qtn_sat_timeout;
       
  1523 //    Defines localized text
       
  1524 //
       
  1525 // ---------------------------------------------------------
       
  1526 //
       
  1527 
       
  1528 RESOURCE TBUF r_qtn_sat_timeout
       
  1529     {
       
  1530     buf = qtn_sat_timeout;
       
  1531     }
       
  1532 
       
  1533 // ---------------------------------------------------------
       
  1534 //
       
  1535 //    r_qtn_sat_conf_receive_data_bip
       
  1536 //    Defines receive data localized text
       
  1537 //
       
  1538 // ---------------------------------------------------------
       
  1539 RESOURCE TBUF r_qtn_sat_conf_receive_data_bip
       
  1540     {
       
  1541     buf = qtn_sat_conf_receive_data_bip;
       
  1542     }
       
  1543 
       
  1544 // ---------------------------------------------------------
       
  1545 //
       
  1546 //    r_qtn_sat_conf_send_data_bip
       
  1547 //    Defines send data localized text
       
  1548 //
       
  1549 // ---------------------------------------------------------
       
  1550 RESOURCE TBUF r_qtn_sat_conf_send_data_bip
       
  1551     {
       
  1552     buf = qtn_sat_conf_send_data_bip;
       
  1553     }
       
  1554 
       
  1555 // ---------------------------------------------------------
       
  1556 //
       
  1557 //    r_qtn_sat_services_not_available
       
  1558 //    Defines SAT not available localized text
       
  1559 //
       
  1560 // ---------------------------------------------------------
       
  1561 RESOURCE TBUF r_qtn_sat_services_not_available
       
  1562     {
       
  1563     buf = qtn_sat_services_not_available;
       
  1564     }
       
  1565 
       
  1566 /****** Localized texts for the Next Action Indicator *****/
       
  1567 /************ (an item in the Options menu) ***************/
       
  1568 
       
  1569 // ---------------------------------------------------------
       
  1570 //
       
  1571 //    r_qtn_sat_option_call
       
  1572 //    Defines localized text
       
  1573 //
       
  1574 // ---------------------------------------------------------
       
  1575 //
       
  1576 RESOURCE TBUF r_qtn_sat_option_call
       
  1577     {
       
  1578     buf = qtn_options_call;
       
  1579     }
       
  1580 
       
  1581 // ---------------------------------------------------------
       
  1582 //
       
  1583 //    r_qtn_sat_option_send
       
  1584 //    Defines localized text
       
  1585 //
       
  1586 // ---------------------------------------------------------
       
  1587 //
       
  1588 RESOURCE TBUF r_qtn_sat_option_send
       
  1589     {
       
  1590     buf = qtn_sat_option_send;
       
  1591     }
       
  1592 
       
  1593 // ---------------------------------------------------------
       
  1594 //
       
  1595 //    r_qtn_sat_option_play
       
  1596 //    Defines localized text
       
  1597 //
       
  1598 // ---------------------------------------------------------
       
  1599 //
       
  1600 RESOURCE TBUF r_qtn_sat_option_play_tone
       
  1601     {
       
  1602     buf = qtn_sat_option_play_tone;
       
  1603     }
       
  1604 
       
  1605 // ---------------------------------------------------------
       
  1606 //
       
  1607 //    r_qtn_sat_option_read
       
  1608 //    Defines localized text
       
  1609 //
       
  1610 // ---------------------------------------------------------
       
  1611 //
       
  1612 RESOURCE TBUF r_qtn_sat_option_read
       
  1613     {
       
  1614     buf = qtn_sat_option_read;
       
  1615     }
       
  1616 
       
  1617 // ---------------------------------------------------------
       
  1618 //
       
  1619 //    r_qtn_sat_option_select
       
  1620 //    Defines localized text
       
  1621 //
       
  1622 // ---------------------------------------------------------
       
  1623 //
       
  1624 RESOURCE TBUF r_qtn_sat_option_select
       
  1625     {
       
  1626     buf = qtn_cffh_options_select;
       
  1627     }
       
  1628 
       
  1629 // ---------------------------------------------------------
       
  1630 //
       
  1631 //    r_qtn_sat_option_open
       
  1632 //    Defines localized text
       
  1633 //
       
  1634 // ---------------------------------------------------------
       
  1635 //
       
  1636 RESOURCE TBUF r_qtn_sat_option_open
       
  1637     {
       
  1638     buf = qtn_options_open;
       
  1639     }
       
  1640 
       
  1641 // ---------------------------------------------------------
       
  1642 //
       
  1643 //    r_qtn_sat_option_goto
       
  1644 //    Defines localized text
       
  1645 //
       
  1646 // ---------------------------------------------------------
       
  1647 //
       
  1648 RESOURCE TBUF r_qtn_sat_option_goto
       
  1649     {
       
  1650     buf = qtn_sat_option_goto;
       
  1651     }
       
  1652 
       
  1653 // ---------------------------------------------------------
       
  1654 //
       
  1655 //    r_qtn_sat_conf_open_channel_bip
       
  1656 //    Defines localized text
       
  1657 //
       
  1658 // ---------------------------------------------------------
       
  1659 //
       
  1660 RESOURCE TBUF r_qtn_sat_conf_open_channel_bip
       
  1661     {
       
  1662     buf = qtn_sat_conf_open_channel_bip;
       
  1663     }
       
  1664 
       
  1665 // ---------------------------------------------------------
       
  1666 //
       
  1667 //    r_qtn_sat_conf_close_channel_bip
       
  1668 //    Defines localized text
       
  1669 //
       
  1670 // ---------------------------------------------------------
       
  1671 //
       
  1672 RESOURCE TBUF r_qtn_sat_conf_close_channel_bip
       
  1673 	{
       
  1674 	buf = qtn_sat_conf_close_channel_bip;
       
  1675 	}
       
  1676 
       
  1677 // ---------------------------------------------------------
       
  1678 //
       
  1679 //    r_qtn_sat_sending_sms
       
  1680 //    Defines localized text
       
  1681 //
       
  1682 // ---------------------------------------------------------
       
  1683 //
       
  1684 RESOURCE TBUF r_qtn_sat_sending_sms
       
  1685     {
       
  1686     buf = qtn_sat_sending_sms;
       
  1687     }
       
  1688 
       
  1689 // ---------------------------------------------------------
       
  1690 //
       
  1691 //    qtn_sat_conf_launch_brow
       
  1692 //    Defines localized text
       
  1693 //
       
  1694 // ---------------------------------------------------------
       
  1695 //
       
  1696 RESOURCE TBUF r_qtn_sat_conf_launch_brow
       
  1697     {
       
  1698     buf = qtn_sat_conf_launch_brow;
       
  1699     }
       
  1700 
       
  1701 // ---------------------------------------------------------
       
  1702 //   
       
  1703 //    r_qtn_offline_not_possible_sap
       
  1704 //    The note that is shown when the user attempts to connect 
       
  1705 //    the network when in SIM Access Profile mode.
       
  1706 //	  
       
  1707 // ---------------------------------------------------------
       
  1708 //
       
  1709 RESOURCE TBUF r_qtn_offline_not_possible_sap
       
  1710     { 
       
  1711     buf = qtn_offline_not_possible_sap; 
       
  1712     }
       
  1713     
       
  1714 // ---------------------------------------------------------
       
  1715 //   
       
  1716 //    r_qtn_msk_call_sat
       
  1717 //    Defines localized text
       
  1718 //	  
       
  1719 // ---------------------------------------------------------
       
  1720 //
       
  1721 RESOURCE TBUF r_qtn_msk_call_sat
       
  1722     { 
       
  1723     buf = qtn_msk_call_sat; 
       
  1724     }
       
  1725     
       
  1726 // ---------------------------------------------------------
       
  1727 //   
       
  1728 //    r_qtn_msk_read_sat
       
  1729 //    Defines localized text
       
  1730 //	  
       
  1731 // ---------------------------------------------------------
       
  1732 //
       
  1733 RESOURCE TBUF r_qtn_msk_read_sat
       
  1734     { 
       
  1735     buf = qtn_msk_read_sat; 
       
  1736     }
       
  1737 
       
  1738 // ---------------------------------------------------------
       
  1739 //   
       
  1740 //    r_qtn_msk_open_sat
       
  1741 //    Defines localized text
       
  1742 //	  
       
  1743 // ---------------------------------------------------------
       
  1744 //
       
  1745 RESOURCE TBUF r_qtn_msk_open_sat
       
  1746     { 
       
  1747     buf = qtn_msk_open;
       
  1748     }
       
  1749 
       
  1750 // ---------------------------------------------------------
       
  1751 //   
       
  1752 //    r_qtn_msk_goto_sat
       
  1753 //    Defines localized text
       
  1754 //	  
       
  1755 // ---------------------------------------------------------
       
  1756 //
       
  1757 RESOURCE TBUF r_qtn_msk_goto_sat
       
  1758     { 
       
  1759     buf = qtn_msk_goto_sat;
       
  1760     }