eventsui/eventseditor/data/evtmgmteditorui.rss
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2008 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:   Resource file defintion for project Events Management UI
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 //  RESOURCE IDENTIFIER
       
    21 NAME    EVEN // 4 letter ID
       
    22 
       
    23 //  SYSTEM INCLUDES
       
    24 #include <eikon.rh>
       
    25 #include <appinfo.rh>
       
    26 #include <avkon.rsg>
       
    27 #include <avkon.rh>
       
    28 #include <avkon.mbg>
       
    29 #include <bldvariant.hrh>
       
    30 #include <avkon.hrh>
       
    31 #include <avkon.loc>
       
    32 #include <data_caging_paths_strings.hrh>
       
    33 #include <AiwCommon.hrh>
       
    34 #include <AiwCommon.rh>
       
    35 #include <evtui.loc>
       
    36 
       
    37 // USER INCLUDES
       
    38 #include "evtmgmteditorui.hrh"
       
    39 
       
    40 //  RESOURCE DEFINITIONS 
       
    41 
       
    42 // ---------------------------------------------------------------------------
       
    43 // RESOURCE RSS_SIGNATURE 
       
    44 // ---------------------------------------------------------------------------
       
    45 //
       
    46 RESOURCE RSS_SIGNATURE 
       
    47     {
       
    48     }
       
    49 
       
    50 // ---------------------------------------------------------------------------
       
    51 // RESOURCE TBUF
       
    52 // ---------------------------------------------------------------------------
       
    53 //
       
    54 RESOURCE TBUF 
       
    55     {
       
    56     buf="evtmgmteditorui";
       
    57     }
       
    58 
       
    59 // ---------------------------------------------------------------------------
       
    60 // RESOURCE MENU_PANE r_evtmgmtui_startup_appmenu
       
    61 // Menu pane for generic application level settings
       
    62 // ---------------------------------------------------------------------------
       
    63 //
       
    64 RESOURCE MENU_PANE r_evtmgmtui_startup_appmenu
       
    65     {
       
    66     items=
       
    67         {
       
    68         MENU_ITEM 
       
    69             { 
       
    70             command = EAknCmdHelp; 
       
    71             txt = qtn_options_help; 
       
    72             },
       
    73         MENU_ITEM 
       
    74             {
       
    75             command = EAknCmdExit;  
       
    76             txt = qtn_options_exit; 
       
    77             }
       
    78         };
       
    79     }
       
    80     
       
    81 //----------------------------------------------------
       
    82 // RESOURCE TBUF r_evtui_createnew_list
       
    83 // List box item for creating new event
       
    84 //----------------------------------------------------
       
    85 //
       
    86 RESOURCE TBUF r_evtui_createnew_list
       
    87     {
       
    88     buf = qtn_locev_list_create_new_event;
       
    89     }
       
    90 
       
    91 /***************** Form ****************************************************/
       
    92 
       
    93 //----------------------------------------------------
       
    94 // RESOURCE DIALOG r_evtmgmtui_createevent_form_dialog
       
    95 // Form dialog to create an event
       
    96 //----------------------------------------------------
       
    97 //
       
    98 RESOURCE DIALOG r_evtmgmtui_createevent_form_dialog
       
    99 {
       
   100     flags = EEikDialogFlagNoDrag | 
       
   101             EEikDialogFlagFillAppClientRect |
       
   102             EEikDialogFlagWait |
       
   103             EEikDialogFlagCbaButtons;
       
   104             
       
   105     buttons = r_evtmgmtui_createevent_cba_nomsk;
       
   106     form = r_evtmgmtui_createevent_form;
       
   107 }
       
   108 
       
   109 //----------------------------------------------------
       
   110 // RESOURCE DIALOG r_evtmgmtui_createevent_form
       
   111 // Form to create an event
       
   112 //----------------------------------------------------
       
   113 //
       
   114 RESOURCE FORM r_evtmgmtui_createevent_form
       
   115     {
       
   116     flags =  EEikFormUseDoubleSpacedFormat ;
       
   117     items =
       
   118         {
       
   119         DLG_LINE
       
   120             {
       
   121             type=EEikCtEdwin;
       
   122             prompt=qtn_locev_list_lbl_subject;
       
   123             id=EEvtMgmtUiDlgCIdSubject;
       
   124             itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   125             control=EDWIN 
       
   126                 {
       
   127                 flags = EEikEdwinJustAutoCurEnd | EEikEdwinResizable | EEikEdwinNoLineOrParaBreaks  ;
       
   128                 width=16; 
       
   129                 maxlength=160;
       
   130                 lines=10;
       
   131                  };
       
   132             },
       
   133          DLG_LINE
       
   134             {
       
   135             type=EEikCtEdwin;
       
   136             prompt=qtn_locev_list_lbl_place;
       
   137             id=EEvtMgmtUiDlgCIdPlace;
       
   138             itemflags = EEikDlgItemAsLabel | EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   139             control=EDWIN 
       
   140                 {       
       
   141                 flags = EEikEdwinResizable | EEikEdwinReadOnly | EEikEdwinAvkonDisableCursor | EEikEdwinNoAutoSelection ;
       
   142                 maxlength=80;
       
   143                 lines=2;
       
   144                 max_view_height_in_lines=2;                
       
   145                 };
       
   146             }, 
       
   147        DLG_LINE
       
   148              {
       
   149              type = EAknCtPopupFieldText;
       
   150              prompt = qtn_locev_list_lbl_repeat;
       
   151              id = EEvtMgmtUiDlgCIdRepeat;
       
   152              itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   153              control = POPUP_FIELD_TEXT
       
   154                  {
       
   155                  popupfield = POPUP_FIELD
       
   156                      {
       
   157                      width = 50;
       
   158                      };
       
   159                  textarray = r_evtmgmtui_createeventform_repeatarray;
       
   160                  active = 0;
       
   161                  };
       
   162              },    
       
   163        DLG_LINE
       
   164              {
       
   165              type = EEikCtEdwin;
       
   166 	           prompt=qtn_locev_list_lbl_alert_tone;
       
   167 	           id=EEvtMgmtUiDlgCIdAssignTone;
       
   168 	           itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   169 	           control=EDWIN 
       
   170 	               {
       
   171 	               maxlength=0;
       
   172 	               flags = EEikEdwinReadOnly  | EEikEdwinAvkonDisableCursor | EEikEdwinNoAutoSelection;
       
   173 	               };
       
   174              }, 
       
   175        DLG_LINE
       
   176              {
       
   177 							type = EAknCtPopupFieldText;
       
   178 							prompt = qtn_locev_list_lbl_audio_loop;
       
   179 							id = EEvtMgmtUiDlgCIdAudioLoop;
       
   180 							itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   181 							control = POPUP_FIELD_TEXT
       
   182 							    {
       
   183 							    popupfield = POPUP_FIELD
       
   184 							        {
       
   185 							        width = 50;
       
   186 							        };
       
   187 							    textarray = r_evtmgmtui_createeventform_audiolooparray;
       
   188 							    active = 0;
       
   189 							    };
       
   190              }, 
       
   191        DLG_LINE
       
   192              {
       
   193              type = EAknCtPopupFieldText;
       
   194              prompt = qtn_locev_list_lbl_status;
       
   195              id = EEvtMgmtUiDlgCIdStatus;
       
   196              itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   197              control = POPUP_FIELD_TEXT
       
   198                  {
       
   199                  popupfield = POPUP_FIELD
       
   200                      {
       
   201                      width = 50;
       
   202                      };
       
   203                  textarray = r_evtmgmtui_createeventform_statusarray;
       
   204                  active = 0;
       
   205                  };
       
   206              }
       
   207         };
       
   208     }
       
   209     
       
   210 // ---------------------------------------------------------------------------
       
   211 // RESOURCE CBA r_evtmgmtui_createevent_cba
       
   212 // Control button array for events ui create event view
       
   213 // ---------------------------------------------------------------------------
       
   214 //  
       
   215 RESOURCE CBA r_evtmgmtui_createevent_cba
       
   216     {
       
   217     flags = 0;
       
   218     buttons = 
       
   219         {
       
   220         CBA_BUTTON 
       
   221             {
       
   222             id = EAknSoftkeyOptions; 
       
   223             txt = text_softkey_option;
       
   224             },
       
   225         CBA_BUTTON 
       
   226             {
       
   227             id = EAknSoftkeyDone; 
       
   228             txt = text_softkey_done;
       
   229             },
       
   230         CBA_BUTTON
       
   231             {
       
   232             id = EAknFormCmdEdit; 
       
   233             txt = qtn_locev_options_change;
       
   234             }
       
   235         };
       
   236     }
       
   237 
       
   238 // ---------------------------------------------------------------------------
       
   239 // RESOURCE CBA r_evtmgmtui_createevent_cba_edit
       
   240 // Control button array for events ui create event view
       
   241 // ---------------------------------------------------------------------------
       
   242 // 
       
   243 RESOURCE CBA r_evtmgmtui_createevent_cba_edit
       
   244     {
       
   245     flags = 0;
       
   246     buttons = 
       
   247         {
       
   248         CBA_BUTTON 
       
   249             {
       
   250             id = EAknSoftkeyOptions; 
       
   251             txt = text_softkey_option;
       
   252             },
       
   253         CBA_BUTTON 
       
   254             {
       
   255             id = EAknSoftkeyDone; 
       
   256             txt = text_softkey_done;
       
   257             },
       
   258         CBA_BUTTON
       
   259             {
       
   260             id = EAknFormCmdEdit; 
       
   261             txt = qtn_form_litxt_edit;
       
   262             }
       
   263         };
       
   264     }
       
   265 
       
   266 // ---------------------------------------------------------------------------
       
   267 // RESOURCE CBA r_evtmgmtui_createevent_cba_define
       
   268 // Control button array for events ui create event view
       
   269 // ---------------------------------------------------------------------------
       
   270 // 
       
   271 RESOURCE CBA r_evtmgmtui_createevent_cba_define
       
   272     {
       
   273     flags = 0;
       
   274     buttons = 
       
   275         {
       
   276         CBA_BUTTON 
       
   277             {
       
   278             id = EAknSoftkeyOptions; 
       
   279             txt = text_softkey_option;
       
   280             },
       
   281         CBA_BUTTON 
       
   282             {
       
   283             id = EAknSoftkeyDone; 
       
   284             txt = text_softkey_done;
       
   285             },
       
   286         CBA_BUTTON
       
   287             {
       
   288             id = EAknFormCmdEdit; 
       
   289             txt = qtn_msk_define;
       
   290             }
       
   291         };
       
   292     }
       
   293 
       
   294 // ---------------------------------------------------------------------------
       
   295 // RESOURCE CBA r_evtmgmtui_createevent_cba_back
       
   296 // Control button array for events ui create event view
       
   297 // ---------------------------------------------------------------------------
       
   298 // 
       
   299 RESOURCE CBA r_evtmgmtui_createevent_cba_back
       
   300     {
       
   301     flags = 0;
       
   302     buttons = 
       
   303         {
       
   304         CBA_BUTTON 
       
   305             {
       
   306             id = EAknSoftkeyOptions; 
       
   307             txt = text_softkey_option;
       
   308             },
       
   309         CBA_BUTTON 
       
   310             {
       
   311             id = EAknSoftkeyBack; 
       
   312             txt = text_softkey_back;
       
   313             },
       
   314         CBA_BUTTON
       
   315             {
       
   316             id = EAknFormCmdEdit; 
       
   317             txt = qtn_locev_options_edit;
       
   318             }
       
   319         };
       
   320     }
       
   321 // ---------------------------------------------------------------------------
       
   322 // RESOURCE MENU_BAR r_evtmgmtui_createeventform_menubar
       
   323 // Create Event Form UI's menubar structure
       
   324 // ---------------------------------------------------------------------------
       
   325 //
       
   326 RESOURCE MENU_BAR r_evtmgmtui_createeventform_menubar
       
   327     {
       
   328     titles=
       
   329         {
       
   330         MENU_TITLE 
       
   331             {
       
   332             menu_pane = r_evtmgmtui_createeventform_menu; 
       
   333             txt = ""; 
       
   334             },
       
   335         MENU_TITLE 
       
   336             {
       
   337             menu_pane = r_evtmgmtui_startup_appmenu;
       
   338             txt = ""; 
       
   339             }
       
   340         };
       
   341     }
       
   342 
       
   343 // ---------------------------------------------------------------------------
       
   344 // RESOURCE MENU_BAR r_evtmgmtui_createeventform_adddesc_menu
       
   345 // Create Event Form UI's cascaded menu structure to add description
       
   346 // ---------------------------------------------------------------------------
       
   347 //
       
   348 RESOURCE MENU_PANE r_evtmgmtui_createeventform_adddesc_menu
       
   349     {
       
   350     items=
       
   351         {
       
   352         MENU_ITEM 
       
   353                 { 
       
   354                 command = EEvtEditorCmdAddDescNew; 
       
   355                 txt = qtn_locev_options_new_desc; 
       
   356                 },
       
   357         MENU_ITEM 
       
   358                 {
       
   359                 command = EEvtEditorCmdAddDescFromExisting; 
       
   360                 txt = qtn_locev_options_from_notes; 
       
   361                 }
       
   362         };
       
   363     }
       
   364                 
       
   365 // ---------------------------------------------------------------------------
       
   366 // RESOURCE MENU_BAR r_evtmgmtui_createeventform_menu
       
   367 // Create Event Form UI's menu structure
       
   368 // ---------------------------------------------------------------------------
       
   369 //
       
   370 RESOURCE MENU_PANE r_evtmgmtui_createeventform_menu
       
   371     {
       
   372     items=
       
   373         {    
       
   374         MENU_ITEM 
       
   375              {
       
   376              command = EEvtEditorCmdEditDesc; 
       
   377              txt = qtn_locev_options_edit_desc; 
       
   378              },
       
   379         MENU_ITEM 
       
   380              {
       
   381              command = EEvtEditorCmdSetPlace; 
       
   382              txt = qtn_locev_options_setplace; 
       
   383              },  
       
   384         MENU_ITEM 
       
   385              {
       
   386              command = EEvtEditorCmdDiscard; 
       
   387              txt = qtn_locev_options_discard; 
       
   388              },
       
   389         MENU_ITEM 
       
   390                {
       
   391                command = EEvtEditorCmdAssignTone; 
       
   392                txt = qtn_locev_options_set_tone; 
       
   393                },
       
   394          MENU_ITEM 
       
   395                 {
       
   396                 command = EEvtEditorCmdAddDesc; 
       
   397                 txt = qtn_locev_options_add_desc; 
       
   398                 cascade = r_evtmgmtui_createeventform_adddesc_menu;
       
   399                 },        
       
   400         MENU_ITEM 
       
   401                {
       
   402                command = EEvtEditorCmdRemoveDesc; 
       
   403                txt = qtn_locev_options_remove_desc;             
       
   404                },
       
   405         MENU_ITEM 
       
   406             {
       
   407             command = EEvtEditorCmdActivate; 
       
   408             txt = qtn_locev_options_activate; 
       
   409             }, 
       
   410         MENU_ITEM 
       
   411            {
       
   412            command = EEvtEditorCmdSaveDraft; 
       
   413            txt = qtn_locev_options_setdraft; 
       
   414            },
       
   415         MENU_ITEM 
       
   416             {
       
   417             command = EEvtEditorCmdShowOnMap; 
       
   418             txt = qtn_locev_options_show_map; 
       
   419             }, 
       
   420         MENU_ITEM 
       
   421             {
       
   422             command = EEvtEditorCmdNavigateToPlace; 
       
   423             txt = qtn_locev_options_navigate; 
       
   424             },
       
   425        MENU_ITEM 
       
   426           {
       
   427           command = EEvtEditorCmdDelete; 
       
   428           txt = qtn_locev_options_delete; 
       
   429           },
       
   430        MENU_ITEM 
       
   431           {
       
   432           command = EEvtMgmtUiEventUiPosSettings; 
       
   433           txt = qtn_locev_options_posi_settings; 
       
   434           }
       
   435         };
       
   436     }
       
   437 
       
   438 //----------------------------------------------------
       
   439 // RESOURCE DIALOG r_evtui_createnewform_dlgline_radius
       
   440 // Event Editot Dialog line for radius
       
   441 //----------------------------------------------------
       
   442 //
       
   443 RESOURCE  DLG_LINE r_evtui_createnewform_dlgline_radius
       
   444        {
       
   445        type=EAknCtUnitEditor;
       
   446        prompt=qtn_locev_list_lbl_radius;
       
   447        id=EEvtMgmtUiDlgCIdRadius;
       
   448        itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   449        control=AVKON_UNIT_EDITOR 
       
   450            {       
       
   451            min=0.1;
       
   452            max=1.5;
       
   453            value=0.1;
       
   454            unit = EAknUnitEditorKilometer ;
       
   455            };
       
   456        }
       
   457                
       
   458 //----------------------------------------------------
       
   459 // RESOURCE DIALOG r_evtui_createnewform_dlgline_desc
       
   460 // Event Editot Dialog line for description
       
   461 //----------------------------------------------------
       
   462 //
       
   463 RESOURCE DLG_LINE r_evtui_createnewform_dlgline_desc
       
   464       {
       
   465       type=EEikCtEdwin;
       
   466       prompt=qtn_locev_list_lbl_description;
       
   467       id=EEvtMgmtUiDlgCIdDesc;
       
   468       itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   469       control=EDWIN 
       
   470           {
       
   471           maxlength=0;
       
   472           flags = EEikEdwinReadOnly  | EEikEdwinAvkonDisableCursor | EEikEdwinNoAutoSelection ;
       
   473           };
       
   474       }
       
   475 
       
   476 //----------------------------------------------------
       
   477 // RESOURCE DIALOG r_evtui_createnewform_dlgline_assignedtone
       
   478 // Event Editot Dialog line for assigned tone
       
   479 //----------------------------------------------------
       
   480 //
       
   481 RESOURCE DLG_LINE r_evtui_createnewform_dlgline_assignedtone
       
   482            {
       
   483            type=EEikCtEdwin;
       
   484            prompt=qtn_locev_list_lbl_alert_tone;
       
   485            id=EEvtMgmtUiDlgCIdAssignTone;
       
   486            itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   487            control=EDWIN 
       
   488                {
       
   489                maxlength=0;
       
   490                flags = EEikEdwinReadOnly  | EEikEdwinAvkonDisableCursor | EEikEdwinNoAutoSelection ;
       
   491                };
       
   492            }
       
   493 
       
   494 //----------------------------------------------------
       
   495 // RESOURCE DIALOG r_evtui_createnewform_dlgline_audioloop
       
   496 // Event Editot Dialog line for audio loop
       
   497 //----------------------------------------------------
       
   498 //
       
   499  RESOURCE DLG_LINE r_evtui_createnewform_dlgline_audioloop
       
   500         {
       
   501         type = EAknCtPopupFieldText;
       
   502         prompt = qtn_locev_list_lbl_audio_loop;
       
   503         id = EEvtMgmtUiDlgCIdAudioLoop;
       
   504         itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
   505         control = POPUP_FIELD_TEXT
       
   506             {
       
   507             popupfield = POPUP_FIELD
       
   508                 {
       
   509                 width = 50;
       
   510                 };
       
   511             textarray = r_evtmgmtui_createeventform_audiolooparray;
       
   512             active = 0;
       
   513             };
       
   514         }
       
   515 
       
   516 //----------------------------------------------------
       
   517 // RESOURCE ARRAY r_evtmgmtui_createeventform_repeatarray
       
   518 // array for repeat pop-up dialog
       
   519 //----------------------------------------------------
       
   520 //
       
   521 RESOURCE ARRAY r_evtmgmtui_createeventform_repeatarray
       
   522     {
       
   523     items =
       
   524         {
       
   525         LBUF{ txt = qtn_locev_list_value_repeat_on; },
       
   526         LBUF{ txt = qtn_locev_list_value_repeat_off; }                  
       
   527         };
       
   528     }
       
   529 
       
   530  //----------------------------------------------------
       
   531  // RESOURCE ARRAY r_evtmgmtui_createeventform_expirationarray
       
   532  // array for expiration pop-up dialog
       
   533  //----------------------------------------------------
       
   534  //
       
   535 RESOURCE ARRAY r_evtmgmtui_createeventform_expirationarray
       
   536     {
       
   537     items =
       
   538         {
       
   539         LBUF{ txt = qtn_evtui_createnew_form_expirationoption_none; },
       
   540         LBUF{ txt = qtn_evtui_createnew_form_expirationoption_defined; }                  
       
   541         };
       
   542     }
       
   543 
       
   544 //----------------------------------------------------
       
   545 // RESOURCE ARRAY r_evtmgmtui_createeventform_audiolooparray
       
   546 // array for audio-loop pop-up dialog
       
   547 //----------------------------------------------------
       
   548 //
       
   549 RESOURCE ARRAY r_evtmgmtui_createeventform_audiolooparray
       
   550     {
       
   551     items =
       
   552         {
       
   553         LBUF{ txt = qtn_locev_list_value_loop_off; },
       
   554         LBUF{ txt = qtn_locev_list_value_loop_on; }                  
       
   555         };
       
   556     }
       
   557 
       
   558 //----------------------------------------------------
       
   559 // RESOURCE ARRAY r_evtmgmtui_createeventform_statusarray
       
   560 // array for status pop-up dialog
       
   561 //----------------------------------------------------
       
   562 //
       
   563 RESOURCE ARRAY r_evtmgmtui_createeventform_statusarray
       
   564     {
       
   565     items =
       
   566         {
       
   567         LBUF{ txt = qtn_locev_list_value_active; },
       
   568         LBUF{ txt = qtn_locev_list_value_draft; },
       
   569         LBUF{ txt = qtn_locev_list_value_completed; }        
       
   570         };
       
   571     }
       
   572 
       
   573 //----------------------------------------------------
       
   574 // RESOURCE ARRAY r_evtmgmtui_evteditor_setplacearray
       
   575 // array for set place pop-up dialog
       
   576 //----------------------------------------------------
       
   577 //
       
   578 RESOURCE ARRAY r_evtmgmtui_evteditor_setplacearray
       
   579     {
       
   580     items =
       
   581         {
       
   582         LBUF{ txt = qtn_locev_list_current_place; },
       
   583         LBUF{ txt = qtn_locev_list_landmarks; } ,
       
   584         LBUF{ txt = qtn_locev_list_from_map; } 
       
   585         };
       
   586     }
       
   587 
       
   588 //----------------------------------------------------
       
   589 // RESOURCE ARRAY r_evtmgmtui_evteditor_assigntonearray
       
   590 // array for assign tone pop-up dialog
       
   591 //----------------------------------------------------
       
   592 //
       
   593 RESOURCE ARRAY r_evtmgmtui_evteditor_assigntonearray
       
   594     {
       
   595     items =
       
   596         {
       
   597         LBUF{ txt = qtn_locev_list_alert_tone; },
       
   598         LBUF{ txt = qtn_locev_list_record_clip; }        
       
   599         };
       
   600     }
       
   601 
       
   602 // ---------------------------------------------------------------------------
       
   603 // RESOURCE CBA r_evtmgmtui_listquery_cba
       
   604 // Control button array for listbox popup dialog
       
   605 // ---------------------------------------------------------------------------
       
   606 //  
       
   607 RESOURCE CBA r_evtmgmtui_listquery_cba
       
   608     {
       
   609     flags = 0;
       
   610     buttons = 
       
   611         {
       
   612         CBA_BUTTON 
       
   613             {
       
   614             id = EAknSoftkeySelect; 
       
   615             txt = text_softkey_select;
       
   616             },
       
   617         CBA_BUTTON
       
   618             {
       
   619             id = EAknSoftkeyCancel; 
       
   620             txt = text_softkey_cancel;
       
   621             },    
       
   622         CBA_BUTTON 
       
   623             {
       
   624             id = EAknSoftkeySelect; 
       
   625             txt = qtn_msk_select;
       
   626             }       
       
   627         };
       
   628     }
       
   629 
       
   630 // ---------------------------------------------------------------------------
       
   631 // RESOURCE CBA r_evtmgmtui_createevent_cba_nomsk
       
   632 // Control button array for events ui create event view
       
   633 // ---------------------------------------------------------------------------
       
   634 // 
       
   635 RESOURCE CBA r_evtmgmtui_createevent_cba_nomsk
       
   636     {
       
   637     flags = 0;
       
   638     buttons = 
       
   639         {
       
   640         CBA_BUTTON 
       
   641             {
       
   642             id = EAknSoftkeyOptions; 
       
   643             txt = text_softkey_option;
       
   644             },
       
   645         CBA_BUTTON 
       
   646             {
       
   647             id = EAknSoftkeyDone; 
       
   648             txt = text_softkey_done;
       
   649             },
       
   650         CBA_BUTTON
       
   651             {
       
   652             id = EAknFormCmdEdit; 
       
   653             txt = "";
       
   654             }
       
   655         };
       
   656     }
       
   657     
       
   658 //------------------------------------------------------------------------------
       
   659 // RESOURCE DIALOG r_evtui_confirmation_query
       
   660 // Confirmation Query Dialog
       
   661 //------------------------------------------------------------------------------
       
   662 //
       
   663 RESOURCE DIALOG r_evtui_confirmation_query
       
   664     {
       
   665     flags = EGeneralQueryFlags;
       
   666     buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   667     items =
       
   668         {
       
   669         DLG_LINE
       
   670             {
       
   671             type = EAknCtQuery;
       
   672             id = EGeneralQuery;
       
   673             control = AVKON_CONFIRMATION_QUERY
       
   674                 {
       
   675                 layout = EConfirmationQueryLayout;                
       
   676                 };
       
   677             }
       
   678         };
       
   679     }
       
   680 
       
   681 //----------------------------------------------------
       
   682 // RESOURCE AVKON_LIST_QUERY r_evtmgmtui_list_query
       
   683 // General Listbox dialog
       
   684 //----------------------------------------------------
       
   685 //
       
   686 RESOURCE AVKON_LIST_QUERY r_evtmgmtui_list_query
       
   687     {
       
   688     flags = EGeneralQueryFlags;
       
   689     softkeys = r_evtmgmtui_listquery_cba;
       
   690     items =
       
   691         {
       
   692         AVKON_LIST_QUERY_DLG_LINE
       
   693             {
       
   694             control = AVKON_LIST_QUERY_CONTROL
       
   695                 {
       
   696                 listtype = EAknCtSingleGraphicPopupMenuListBox;
       
   697                 listbox = AVKON_LIST_QUERY_LIST
       
   698                     { 
       
   699                     //array_id=r_evtmgmtui_createeventform_audiolooparray;
       
   700                     };
       
   701                 heading = qtn_locev_options_setplace;
       
   702                 };
       
   703             }
       
   704         };
       
   705     }
       
   706 //------------------------------------------------------------------------------
       
   707 // RESOURCE DIALOG r_evtui_message_query
       
   708 // Message Query Dialog
       
   709 //------------------------------------------------------------------------------
       
   710 //
       
   711 RESOURCE DIALOG r_evtui_message_query
       
   712 {
       
   713    flags = EGeneralQueryFlags;
       
   714    buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   715    items=
       
   716        {
       
   717        DLG_LINE
       
   718           {
       
   719             type = EAknCtPopupHeadingPane;
       
   720             id = EAknMessageQueryHeaderId;
       
   721             itemflags = EEikDlgItemNonFocusing;
       
   722             control = AVKON_HEADING
       
   723                 {                  
       
   724                 headinglayout=R_AVKON_LIST_HEADING_PANE_POPUPS;
       
   725                 };
       
   726           },
       
   727        DLG_LINE
       
   728           {
       
   729             type = EAknCtMessageQuery;
       
   730             id = EAknMessageQueryContentId;
       
   731             control = AVKON_MESSAGE_QUERY
       
   732                 {
       
   733                 };
       
   734           }
       
   735        };
       
   736 }
       
   737 
       
   738 // ---------------------------------------------------------------------------
       
   739 // r_evtui_message_query_empty
       
   740 // Query dialog showing info note
       
   741 // ---------------------------------------------------------------------------
       
   742 //
       
   743 RESOURCE DIALOG r_evtui_message_query_empty
       
   744     {
       
   745     flags = EAknInformationNoteFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
       
   746     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   747     items =
       
   748         {
       
   749         DLG_LINE 
       
   750             {
       
   751             type = EAknCtPopupHeadingPane;
       
   752             id = EAknMessageQueryHeaderId;
       
   753             control = AVKON_HEADING
       
   754                 {
       
   755                 headinglayout = R_AVKON_WML_SIGN_QUERY_HEADING_PANE;
       
   756                 };
       
   757             },
       
   758         DLG_LINE
       
   759             {
       
   760             type = EAknCtQuery;
       
   761             id = EGeneralQuery;
       
   762             control = AVKON_CONFIRMATION_QUERY
       
   763                 {
       
   764                 layout = EConfirmationQueryLayout;  
       
   765                 bmpfile = "z:\\resource\\apps\\avkon2.mif";
       
   766                 bmpid = EMbmAvkonQgn_note_info;
       
   767                 bmpmask = EMbmAvkonQgn_note_info_mask;
       
   768                 };
       
   769             }           
       
   770         };
       
   771     }  
       
   772 
       
   773 RESOURCE IMAGE r_evtui_infonote_image
       
   774     {
       
   775      bmpfile = "z:\\resource\\apps\\avkon2.mif";
       
   776      bmpid = EMbmAvkonQgn_note_info;
       
   777      bmpmask = EMbmAvkonQgn_note_info_mask;
       
   778     }
       
   779 
       
   780 //----------------------------------------------------
       
   781 //   
       
   782 //    r_evtmgmtui_waitdlg_cancel
       
   783 //    Progress note 
       
   784 //
       
   785 //----------------------------------------------------
       
   786 //
       
   787 RESOURCE DIALOG r_evtmgmtui_waitdlg_cancel
       
   788     {   
       
   789     flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   790     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   791     items =
       
   792         {
       
   793         DLG_LINE
       
   794             {
       
   795             type = EAknCtNote;
       
   796             id = EGeneralNote;
       
   797             control= AVKON_NOTE 
       
   798                 { 
       
   799                 layout = EWaitLayout;
       
   800                 singular_label = qtn_locev_note_request_loc;
       
   801                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   802                 };
       
   803             }
       
   804         };
       
   805     }
       
   806 
       
   807 //----------------------------------------------------
       
   808 //   
       
   809 //    r_evtmgmtui_waitdlg
       
   810 //    Progress note 
       
   811 //
       
   812 //----------------------------------------------------
       
   813 //
       
   814 RESOURCE DIALOG r_evteditor_waitdlg
       
   815     {   
       
   816     flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   817     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   818     items =
       
   819         {
       
   820         DLG_LINE
       
   821             {
       
   822             type = EAknCtNote;
       
   823             id = EGeneralNote;
       
   824             control= AVKON_NOTE 
       
   825                 { 
       
   826                 layout = EWaitLayout;
       
   827                 singular_label = qtn_locev_note_request_loc;
       
   828                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   829                 };
       
   830             }
       
   831         };
       
   832     }
       
   833 
       
   834 //----------------------------------------------------
       
   835 //   
       
   836 //    r_evtmgmtui_aiw_interest_selectfrommap
       
   837 //    AIW interest for option landmark from map
       
   838 //
       
   839 //----------------------------------------------------
       
   840 //
       
   841 RESOURCE AIW_INTEREST r_evtmgmtui_aiw_interest_selectfrommap
       
   842     {
       
   843     items =
       
   844         {
       
   845         AIW_CRITERIA_ITEM
       
   846             {
       
   847             id = EEvtMgmtUiFromMapPlaceholder;
       
   848             serviceCmd = KAiwCmdMnSelectFromMap;
       
   849             contentType = "application/x-landmark";
       
   850             serviceClass = KAiwClassBase;           
       
   851             }
       
   852         };
       
   853     }
       
   854 
       
   855 
       
   856 //----------------------------------------------------
       
   857 //   
       
   858 //    r_evtmgmtui_aiw_interest_showonmap
       
   859 //    AIW interest for option show on map
       
   860 //
       
   861 //----------------------------------------------------
       
   862 //
       
   863 RESOURCE AIW_INTEREST r_evtmgmtui_aiw_interest_showonmap
       
   864     {
       
   865     items =
       
   866         {
       
   867         AIW_CRITERIA_ITEM
       
   868             {
       
   869             id = EEvtMgmtUiShowOnMapPlaceHolder;
       
   870             serviceCmd = KAiwCmdMnShowMap;
       
   871             contentType = "application/x-landmark";
       
   872             serviceClass = KAiwClassBase;
       
   873             }
       
   874         };
       
   875     }
       
   876 
       
   877 //----------------------------------------------------
       
   878 //   
       
   879 //    r_evtmgmtui_aiw_interest_navigateto
       
   880 //    AIW interest for option navigate to
       
   881 //
       
   882 //----------------------------------------------------
       
   883 //
       
   884 RESOURCE AIW_INTEREST r_evtmgmtui_aiw_interest_navigateto
       
   885     {
       
   886     items =
       
   887         {
       
   888         AIW_CRITERIA_ITEM
       
   889             {
       
   890             id = EEvtMgmtUiNavigateToPlaceHolder;
       
   891             serviceCmd = KAiwCmdMnNavigateTo;
       
   892             contentType = "application/x-landmark";
       
   893             serviceClass = KAiwClassBase;
       
   894             }
       
   895         };
       
   896     }
       
   897 
       
   898 //-----------------------------------------------------------------------------
       
   899 //
       
   900 //  r_evtui_place_data_query
       
   901 //
       
   902 //-----------------------------------------------------------------------------
       
   903 RESOURCE DIALOG r_evtui_place_data_query
       
   904     {
       
   905     flags=EGeneralQueryFlags;
       
   906     buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
       
   907     items=
       
   908         {
       
   909         DLG_LINE
       
   910             {
       
   911             type=EAknCtQuery;
       
   912             id=EGeneralQuery;
       
   913             control= AVKON_DATA_QUERY 
       
   914                 { 
       
   915                     layout = EStaticSizeDataLayout; // Use this when you have a heading in data query
       
   916                     label = "";
       
   917                     control=EDWIN 
       
   918                         {
       
   919                         flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable; 
       
   920                         maxlength=80; 
       
   921                         width=16; 
       
   922                         lines=1; 
       
   923                         };
       
   924                 };
       
   925             }
       
   926         };
       
   927     }
       
   928 
       
   929 //----------------------------------------------------
       
   930 // RESOURCE TBUF r_locev_note_prompt_text
       
   931 // Text Query prompt
       
   932 //----------------------------------------------------
       
   933 //
       
   934 RESOURCE TBUF r_locev_note_prompt_text
       
   935     {
       
   936     buf = qtn_locev_note_prompt_text;
       
   937     }
       
   938     
       
   939 //----------------------------------------------------
       
   940 // RESOURCE TBUF r_evtui_createnew_form_cmdedit
       
   941 // Menu item for edit attributes of the event
       
   942 //----------------------------------------------------
       
   943 //
       
   944 RESOURCE TBUF r_evtui_createnew_form_cmdedit
       
   945     {
       
   946     buf = qtn_locev_options_edit;
       
   947     }
       
   948 
       
   949 //----------------------------------------------------
       
   950 // RESOURCE TBUF r_evtui_createnew_form_cmdchange
       
   951 // Menu item for change attributes of the event
       
   952 //----------------------------------------------------
       
   953 //
       
   954 RESOURCE TBUF r_evtui_createnew_form_cmdchange
       
   955     {
       
   956     buf = qtn_locev_options_change;
       
   957     }
       
   958 
       
   959 //----------------------------------------------------
       
   960 // RESOURCE TBUF r_evtui_createnew_form_placepopup_title
       
   961 // title  for 'Set Place' dialog 
       
   962 //----------------------------------------------------
       
   963 //
       
   964 RESOURCE TBUF r_evtui_createnew_form_placepopup_title
       
   965     {
       
   966     buf = qtn_locev_heading_set_place;
       
   967     }
       
   968 
       
   969 //----------------------------------------------------
       
   970 // RESOURCE TBUF r_evtui_createnew_form_placepopupoption_currentplace
       
   971 // 'Current Place' pop-up option for 'Set Place' dialog 
       
   972 //----------------------------------------------------
       
   973 //
       
   974 RESOURCE TBUF r_evtui_createnew_form_placepopupoption_currentplace
       
   975     {
       
   976     buf = qtn_locev_list_current_place;
       
   977     }
       
   978 
       
   979 //----------------------------------------------------
       
   980 // RESOURCE TBUF r_evtui_createnew_form_placepopupoption_landmark
       
   981 // 'Landmark' pop-up option for 'Set Place' dialog
       
   982 //----------------------------------------------------
       
   983 //
       
   984 RESOURCE TBUF r_evtui_createnew_form_placepopupoption_landmark
       
   985     {
       
   986     buf = qtn_locev_list_landmarks;
       
   987     }
       
   988 
       
   989 //----------------------------------------------------
       
   990 // RESOURCE TBUF r_evtui_createnew_form_placepopupoption_frommap
       
   991 // 'From map' pop-up option for 'Set Place' dialog
       
   992 //----------------------------------------------------
       
   993 //
       
   994 RESOURCE TBUF r_evtui_createnew_form_placepopupoption_frommap
       
   995     {
       
   996     buf = qtn_locev_list_from_map;
       
   997     }
       
   998     
       
   999 //----------------------------------------------------
       
  1000 // RESOURCE TBUF r_evtui_createnew_form_confirmation_deleteevent
       
  1001 // Confirmation text to delete event
       
  1002 //----------------------------------------------------
       
  1003 //
       
  1004 RESOURCE TBUF r_evtui_createnew_form_confirmation_deleteevent
       
  1005     {
       
  1006     buf = qtn_locev_confirm_delete_event;
       
  1007     }
       
  1008 
       
  1009 //----------------------------------------------------
       
  1010 // RESOURCE TBUF r_evtui_createnew_form_defaultnavititle
       
  1011 // Default navipane title
       
  1012 //----------------------------------------------------
       
  1013 //
       
  1014 RESOURCE TBUF r_evtui_createnew_form_defaultnavititle
       
  1015     {
       
  1016     buf = qtn_locev_title_new_event;
       
  1017     }
       
  1018 
       
  1019 //----------------------------------------------------
       
  1020 // RESOURCE TBUF r_evtui_createnew_form_assigntonepopup_title
       
  1021 // Title text for assign-tone popup dialog
       
  1022 //----------------------------------------------------
       
  1023 //
       
  1024 RESOURCE TBUF r_evtui_createnew_form_assigntonepopup_title
       
  1025     {
       
  1026     buf = qtn_locev_list_heading_alert_tone;
       
  1027     }
       
  1028 
       
  1029 //----------------------------------------------------
       
  1030 // RESOURCE TBUF r_evtui_createnew_form_assignpopuptoneoptions_tone
       
  1031 // popup option for assign-tone popup dialog
       
  1032 //----------------------------------------------------
       
  1033 //
       
  1034 RESOURCE TBUF r_evtui_createnew_form_assigntonepopupoptions_tone
       
  1035     {
       
  1036     buf = qtn_locev_list_alert_tone;
       
  1037     }
       
  1038 
       
  1039 //----------------------------------------------------
       
  1040 // RESOURCE TBUF r_evtui_createnew_form_assigntonepopupoptions_recordnew
       
  1041 // popup option for assign-tone popup dialog
       
  1042 //----------------------------------------------------
       
  1043 //
       
  1044 RESOURCE TBUF r_evtui_createnew_form_assigntonepopupoptions_recordnew
       
  1045     {
       
  1046     buf = qtn_locev_list_record_clip;
       
  1047     }
       
  1048 
       
  1049 //----------------------------------------------------
       
  1050 // RESOURCE TBUF r_evtui_createnew_form_defined
       
  1051 // default text for place 
       
  1052 //----------------------------------------------------
       
  1053 //
       
  1054 RESOURCE TBUF r_evtui_createnew_form_defined
       
  1055     {
       
  1056     buf = qtn_locev_list_value_define;
       
  1057     }
       
  1058 //----------------------------------------------------
       
  1059 // RESOURCE TBUF r_evtui_editor_adddesc_title
       
  1060 // title for notepad editor dialog 
       
  1061 //----------------------------------------------------
       
  1062 //
       
  1063 RESOURCE TBUF r_evtui_editor_adddesc_title
       
  1064     {
       
  1065     buf = qtn_locev_list_heading_add_desc;
       
  1066     }
       
  1067 //----------------------------------------------------
       
  1068 // RESOURCE TBUF r_evtui_unnamed
       
  1069 // List box entry for unnamed trigger 
       
  1070 //----------------------------------------------------
       
  1071 //
       
  1072 RESOURCE TBUF r_evtui_unnamed
       
  1073     {
       
  1074     buf = qtn_locev_list_unnamed;
       
  1075     }
       
  1076     
       
  1077 //----------------------------------------------------
       
  1078 // RESOURCE TBUF r_evtui_retry_requesting_location
       
  1079 // Retry message when current location retrieval fails
       
  1080 //----------------------------------------------------
       
  1081 //
       
  1082 RESOURCE TBUF r_evtui_retry_requesting_location
       
  1083     {
       
  1084     buf = qtn_locev_note_saving_failed;
       
  1085     }
       
  1086 
       
  1087 //----------------------------------------------------
       
  1088 // RESOURCE TBUF r_evtui_cancel_requesting_location
       
  1089 // Mesaage when current location retrieval is cancelled
       
  1090 //----------------------------------------------------
       
  1091 //
       
  1092 RESOURCE TBUF r_evtui_cancel_requesting_location
       
  1093     {
       
  1094     buf = qtn_locev_note_not_saved;
       
  1095     }
       
  1096 //----------------------------------------------------
       
  1097 // RESOURCE TBUF r_evtui_positioningerror
       
  1098 // Error mesaage when no positioning method is enabled
       
  1099 //----------------------------------------------------
       
  1100 //
       
  1101 RESOURCE TBUF r_evtui_positioningerror
       
  1102     {
       
  1103     buf = qtn_locev_note_positioning;
       
  1104     }
       
  1105 
       
  1106 //----------------------------------------------------
       
  1107 // RESOURCE TBUF r_evtui_positioningerror_link
       
  1108 // Error mesaage as part of link when no positioning method is enabled
       
  1109 //----------------------------------------------------
       
  1110 //
       
  1111 RESOURCE TBUF r_evtui_positioningerror_link
       
  1112     {
       
  1113     buf = qtn_locev_note_positioning_link;
       
  1114     }
       
  1115 
       
  1116 //----------------------------------------------------
       
  1117 // RESOURCE TBUF r_evtui_positioningerror_header
       
  1118 // Error mesaage title when no positioning method is enabled
       
  1119 //----------------------------------------------------
       
  1120 //
       
  1121 RESOURCE TBUF r_evtui_positioningerror_header
       
  1122     {
       
  1123     buf = qtn_locev_note_heading_positioning;
       
  1124     }
       
  1125 
       
  1126 //----------------------------------------------------
       
  1127 // RESOURCE TBUF r_evtui_landmark_locmiss_error
       
  1128 // Error message when landmark withouth coordinate informatio is selected.
       
  1129 //----------------------------------------------------
       
  1130 //
       
  1131 RESOURCE TBUF r_evtui_landmark_locmiss_error
       
  1132     {
       
  1133     buf = qtn_locev_note_invalid_lm;
       
  1134     }
       
  1135 
       
  1136 //----------------------------------------------------
       
  1137 // RESOURCE TBUF r_evtui_landmark_locmiss_error
       
  1138 // Confirmation message before replacing old place
       
  1139 //----------------------------------------------------
       
  1140 //
       
  1141 RESOURCE TBUF r_evtui_editor_confirm_placesave
       
  1142     {
       
  1143     buf = qtn_locev_note_replace_details;
       
  1144     }
       
  1145 
       
  1146 //----------------------------------------------------
       
  1147 // RESOURCE TBUF r_evtui_wait_requesting_location
       
  1148 // Wait note text when waiting response for a location request.
       
  1149 //----------------------------------------------------
       
  1150 //
       
  1151 RESOURCE TBUF r_evtui_wait_requesting_location
       
  1152     {
       
  1153     buf = qtn_locev_note_request_loc;
       
  1154     }
       
  1155 
       
  1156 //----------------------------------------------------
       
  1157 // RESOURCE TBUF r_locev_note_saving_event
       
  1158 // Wait note text while saving event
       
  1159 //----------------------------------------------------
       
  1160 //
       
  1161 RESOURCE TBUF r_locev_note_saving_event
       
  1162     {
       
  1163     buf = qtn_locev_note_saving_event;
       
  1164     }
       
  1165 
       
  1166 //----------------------------------------------------
       
  1167 // RESOURCE TBUF r_locev_not deleting
       
  1168 // Wait note while deleting event
       
  1169 //----------------------------------------------------
       
  1170 //
       
  1171 RESOURCE TBUF r_locev_note_deleting
       
  1172     {
       
  1173     buf = qtn_locev_note_deleting;
       
  1174     }
       
  1175     
       
  1176 //----------------------------------------------------
       
  1177 // RESOURCE TBUF r_locev_note_list_acc_unknown
       
  1178 // Accuracy note after retrieval of current location.
       
  1179 //----------------------------------------------------
       
  1180 //
       
  1181 RESOURCE TBUF r_locev_note_list_acc_unknown
       
  1182     {
       
  1183     buf = qtn_locev_note_txt_acc_unknown;
       
  1184     }
       
  1185  
       
  1186 //----------------------------------------------------
       
  1187 // RESOURCE TBUF r_evtui_ringtoneselect_off
       
  1188 // To add 'Off' in ringtone selection dialog.
       
  1189 //----------------------------------------------------
       
  1190 //
       
  1191 RESOURCE TBUF r_evtui_ringtoneselect_off
       
  1192     {
       
  1193     buf = qtn_locev_list_value_alert_off;
       
  1194     }
       
  1195 
       
  1196 //----------------------------------------------------
       
  1197 // RESOURCE TBUF r_evtui_ringtoneselect_off
       
  1198 // To add 'Off' in ringtone selection dialog.
       
  1199 //----------------------------------------------------
       
  1200 //
       
  1201 RESOURCE TBUF r_evtui_accuracylevel_low
       
  1202     {
       
  1203     buf = qtn_locev_note_heading_low_acc;
       
  1204     }
       
  1205 
       
  1206 //----------------------------------------------------
       
  1207 // RESOURCE TBUF r_evtui_ringtoneselect_off
       
  1208 // To add 'Off' in ringtone selection dialog.
       
  1209 //----------------------------------------------------
       
  1210 //
       
  1211 RESOURCE TBUF r_evtui_accuracylevel_medium
       
  1212     {
       
  1213     buf = qtn_locev_note_heading_medium_acc;
       
  1214     }
       
  1215 
       
  1216 //----------------------------------------------------
       
  1217 // RESOURCE TBUF r_evtui_ringtoneselect_off
       
  1218 // To add 'Off' in ringtone selection dialog.
       
  1219 //----------------------------------------------------
       
  1220 //
       
  1221 RESOURCE TBUF r_evtui_accuracylevel_high
       
  1222     {
       
  1223     buf = qtn_locev_note_heading_high_acc;
       
  1224     }
       
  1225 
       
  1226 //----------------------------------------------------
       
  1227 // RESOURCE TBUF r_evtui_unit_km
       
  1228 // KM unit
       
  1229 //----------------------------------------------------
       
  1230 //
       
  1231 RESOURCE TBUF r_evtui_unit_km
       
  1232     {
       
  1233     buf = qtn_locev_list_lbl_radius_km;
       
  1234     }
       
  1235 
       
  1236 //----------------------------------------------------
       
  1237 // RESOURCE TBUF r_evtui_unit_mile
       
  1238 // Mile unit
       
  1239 //----------------------------------------------------
       
  1240 //
       
  1241 RESOURCE TBUF r_evtui_unit_miles
       
  1242     {
       
  1243     buf = qtn_locev_list_lbl_radius_miles;
       
  1244     }
       
  1245 
       
  1246 //----------------------------------------------------
       
  1247 // RESOURCE TBUF r_locev_query_discard_changes
       
  1248 // Confirmation note text while discarding changes in editor
       
  1249 //----------------------------------------------------
       
  1250 //
       
  1251 RESOURCE TBUF r_locev_query_discard_changes
       
  1252     {
       
  1253     buf = qtn_locev_query_discard_changes;
       
  1254     }
       
  1255 
       
  1256 //----------------------------------------------------
       
  1257 // RESOURCE TBUF r_locev_note_missed_info
       
  1258 // Information note text when mandatory fields are not filled
       
  1259 //----------------------------------------------------
       
  1260 //
       
  1261 RESOURCE TBUF r_locev_note_missed_info
       
  1262     {
       
  1263     buf = qtn_locev_note_missed_info;
       
  1264     }
       
  1265 
       
  1266 //----------------------------------------------------
       
  1267 // RESOURCE TBUF r_locev_note_singleevt_delete
       
  1268 // Wait note text while deleting single event
       
  1269 //----------------------------------------------------
       
  1270 //
       
  1271 RESOURCE TBUF r_locev_note_singleevt_delete
       
  1272     {
       
  1273     buf = qtn_locev_note_singleevt_delete;
       
  1274     }
       
  1275 
       
  1276 //----------------------------------------------------
       
  1277 // RESOURCE TBUF r_locev_note_txt_acc_km
       
  1278 // Unit value for display in accuracy note.
       
  1279 //----------------------------------------------------
       
  1280 //
       
  1281 RESOURCE TBUF r_locev_note_txt_acc_km
       
  1282     {
       
  1283     buf = qtn_locev_note_txt_acc_km;
       
  1284     }
       
  1285 
       
  1286 //----------------------------------------------------
       
  1287 // RESOURCE TBUF r_locev_note_txt_acc_metres
       
  1288 // Unit value for display in accuracy note.
       
  1289 //----------------------------------------------------
       
  1290 //
       
  1291 RESOURCE TBUF r_locev_note_txt_acc_metres
       
  1292     {
       
  1293     buf = qtn_locev_note_txt_acc_metres;
       
  1294     }
       
  1295 
       
  1296 //----------------------------------------------------
       
  1297 // RESOURCE TBUF r_locev_note_txt_acc_miles
       
  1298 // Unit value for display in accuracy note.
       
  1299 //----------------------------------------------------
       
  1300 //
       
  1301 RESOURCE TBUF r_locev_note_txt_acc_miles
       
  1302     {
       
  1303     buf = qtn_locev_note_txt_acc_miles;
       
  1304     }
       
  1305 
       
  1306 //----------------------------------------------------
       
  1307 // RESOURCE TBUF r_locev_note_txt_acc_ft
       
  1308 // Unit value for display in accuracy note.
       
  1309 //----------------------------------------------------
       
  1310 //
       
  1311 RESOURCE TBUF r_locev_note_txt_acc_ft
       
  1312     {
       
  1313     buf = qtn_locev_note_txt_acc_ft;
       
  1314     }
       
  1315 
       
  1316 //----------------------------------------------------
       
  1317 // RESOURCE TBUF r_locev_list_value_active
       
  1318 // Status value for popup list.
       
  1319 //----------------------------------------------------
       
  1320 //
       
  1321 RESOURCE TBUF r_locev_list_value_active
       
  1322     {
       
  1323     buf = qtn_locev_list_value_active;
       
  1324     }
       
  1325 
       
  1326 //----------------------------------------------------
       
  1327 // RESOURCE TBUF r_locev_list_value_draft
       
  1328 // Status value for popup list.
       
  1329 //----------------------------------------------------
       
  1330 //
       
  1331 RESOURCE TBUF r_locev_list_value_draft
       
  1332     {
       
  1333     buf = qtn_locev_list_value_draft;
       
  1334     }
       
  1335 
       
  1336 //----------------------------------------------------
       
  1337 // RESOURCE TBUF r_locev_list_value_completed
       
  1338 // Status value for popup list.
       
  1339 //----------------------------------------------------
       
  1340 //
       
  1341 RESOURCE TBUF r_locev_list_value_completed
       
  1342     {
       
  1343     buf = qtn_locev_list_value_completed;
       
  1344     }
       
  1345 
       
  1346 //----------------------------------------------------
       
  1347 // RESOURCE TBUF r_locev_list_value_invalid
       
  1348 // Status value for popup list.
       
  1349 //----------------------------------------------------
       
  1350 //
       
  1351 RESOURCE TBUF r_locev_list_value_invalid
       
  1352     {
       
  1353     buf = qtn_locev_list_value_invalid;
       
  1354     } 
       
  1355 
       
  1356 //----------------------------------------------------
       
  1357 // RESOURCE TBUF r_locev_list_vorec_clip_name
       
  1358 // Record new file string.
       
  1359 //----------------------------------------------------
       
  1360 //
       
  1361 RESOURCE TBUF r_locev_list_vorec_clip_name
       
  1362     {
       
  1363     buf = qtn_locev_list_vorec_clip_name;
       
  1364     } 
       
  1365 //End file