landmarksui/uicontrols/data/lmkui.rss
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:    LandmarksUi Content File -    Contains all the resources for lmkui.dll.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 //  RESOURCE IDENTIFIER
       
    25 
       
    26 NAME    LMUI
       
    27 
       
    28 //  INCLUDES
       
    29 #include <eikon.rh>
       
    30 #include <uikon.rh> 
       
    31 #include <avkon.rsg> 
       
    32 #include <avkon.rh>
       
    33 #include <avkon.hrh>
       
    34 #include <avkon.mbg> 
       
    35 #include <avkon.loc>
       
    36 #include "landmarks.hrh"
       
    37 #include <landmarks.loc>
       
    38 #include <lmkmsgviewer.loc>
       
    39 
       
    40 //  CONSTANTS  
       
    41 #define LMK_QUERY_EDWIN_WIDTH 5
       
    42 #define LMK_QUERY_EDWIN_LINES 5
       
    43 #define LMK_QUERY_EDWIN_MAXLENGTH 124
       
    44 
       
    45 //  RESOURCE DEFINITIONS 
       
    46 
       
    47 RESOURCE RSS_SIGNATURE { } 
       
    48 
       
    49 //----------------------------------------------------
       
    50 //   
       
    51 //    r_lmk_lm_selector_navi_decorator
       
    52 //    
       
    53 //
       
    54 //----------------------------------------------------
       
    55 //
       
    56 RESOURCE TAB_GROUP r_lmk_lm_selector_navi_decorator
       
    57     {
       
    58 	tab_width = EAknTabWidthWithTwoTabs;  // two tabs
       
    59 	active = 0;
       
    60 	tabs =
       
    61 		{
       
    62 		TAB
       
    63 			{
       
    64             id = ETabLandmarkList;
       
    65             txt = "Lm";
       
    66             },
       
    67 		TAB
       
    68 			{
       
    69             id = ETabCategoryList;
       
    70             txt = "Cat";
       
    71 			}
       
    72 		};
       
    73 	}
       
    74 
       
    75 //----------------------------------------------------
       
    76 //   
       
    77 //    r_lmk_selector_ok_back_dlg
       
    78 //    
       
    79 //
       
    80 //----------------------------------------------------
       
    81 //
       
    82 RESOURCE DIALOG r_lmk_selector_ok_back_dlg
       
    83 	{
       
    84 	flags = EAknDialogMarkableList | EEikDialogFlagFillAppClientRect | EEikDialogFlagNotifyEsc;
       
    85 	buttons = R_AVKON_SOFTKEYS_OK_BACK;
       
    86 	items =
       
    87 		{ 
       
    88 		DLG_LINE
       
    89 			{ 
       
    90 			type = EAknCtSingleGraphicListBox;
       
    91 			id = ESelectionListControl;
       
    92 			control = LISTBOX
       
    93 				{
       
    94 				flags = EAknListBoxMarkableList;
       
    95 				};
       
    96 			},
       
    97 		DLG_LINE  
       
    98 			{
       
    99 			itemflags = EEikDlgItemNonFocusing;
       
   100 			id = EFindControl;
       
   101 			type = EAknCtSelectionListFixedFind;
       
   102 			}
       
   103 		};
       
   104 	} 
       
   105 
       
   106 //----------------------------------------------------
       
   107 //   
       
   108 //    r_lmk_selector_ok_back_multi_dlg
       
   109 //    
       
   110 //
       
   111 //----------------------------------------------------
       
   112 //
       
   113 RESOURCE DIALOG r_lmk_selector_ok_back_multi_dlg
       
   114 	{
       
   115 	flags = EAknDialogMultiselectionList | EEikDialogFlagFillAppClientRect | EEikDialogFlagNotifyEsc;
       
   116 	buttons = R_AVKON_SOFTKEYS_OK_BACK;
       
   117 	items =
       
   118 		{ 
       
   119 		DLG_LINE
       
   120 			{ 
       
   121 			type = EAknCtSingleGraphicListBox;
       
   122 			id = ESelectionListControl;
       
   123 			control = LISTBOX
       
   124 				{
       
   125 			    #ifdef RD_SCALABLE_UI_V2
       
   126                 flags =	EAknListBoxStylusMultiselectionList;
       
   127                 #else
       
   128                 flags = EAknListBoxMultiselectionList;
       
   129                 #endif
       
   130 				};
       
   131 			},
       
   132 		DLG_LINE  
       
   133 			{
       
   134 			itemflags = EEikDlgItemNonFocusing;
       
   135 			id = EFindControl;
       
   136 			type = EAknCtSelectionListFixedFind;
       
   137 			}
       
   138 		};
       
   139 	} 
       
   140 
       
   141 //----------------------------------------------------
       
   142 //   
       
   143 //    r_lmk_selector_ok_cancel_dlg
       
   144 //    
       
   145 //
       
   146 //----------------------------------------------------
       
   147 //
       
   148 RESOURCE DIALOG r_lmk_selector_ok_cancel_dlg
       
   149 	{
       
   150 	flags = EAknDialogMarkableList | EEikDialogFlagFillAppClientRect | EEikDialogFlagNotifyEsc;
       
   151 	buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   152 	items =
       
   153 		{ 
       
   154 		DLG_LINE
       
   155 			{ 
       
   156 			type = EAknCtSingleGraphicListBox;
       
   157 			id = ESelectionListControl;
       
   158 			control = LISTBOX
       
   159 				{
       
   160 				flags = EAknListBoxMarkableList;
       
   161 				};
       
   162 			},
       
   163 		DLG_LINE  
       
   164 			{
       
   165 			itemflags = EEikDlgItemNonFocusing;
       
   166 			id = EFindControl;
       
   167 			type = EAknCtSelectionListFixedFind;
       
   168 			}
       
   169 		};
       
   170 	} 
       
   171 
       
   172 //----------------------------------------------------
       
   173 //   
       
   174 //    r_lmk_category_selector_ok_cancel_multi_dlg
       
   175 //    
       
   176 //
       
   177 //----------------------------------------------------
       
   178 //
       
   179 RESOURCE DIALOG r_lmk_category_selector_ok_cancel_multi_dlg
       
   180 	{
       
   181 	flags = EAknDialogMultiselectionList | EEikDialogFlagFillAppClientRect | EEikDialogFlagNotifyEsc;
       
   182 	//buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   183 	buttons = r_lmk_catsel_softkeys_ok_cancel;
       
   184 	items =
       
   185 		{ 
       
   186 		DLG_LINE
       
   187 			{ 
       
   188 			type = EAknCtSingleGraphicListBox;
       
   189 			id = ESelectionListControl;
       
   190 			control = LISTBOX
       
   191 				{
       
   192                 #ifdef RD_SCALABLE_UI_V2
       
   193                 flags =	EAknListBoxStylusMultiselectionList;
       
   194                 #else
       
   195                 flags = EAknListBoxMultiselectionList;
       
   196                 #endif
       
   197 				};
       
   198 			},
       
   199 		DLG_LINE  
       
   200 			{
       
   201 			itemflags = EEikDlgItemNonFocusing;
       
   202 			id = EFindControl;
       
   203 			type = EAknCtSelectionListFixedFind;
       
   204 			}
       
   205 		};
       
   206 	} 
       
   207 
       
   208 
       
   209 
       
   210 //----------------------------------------------------
       
   211 //   
       
   212 //    r_lmk_softkeys_open_cancel
       
   213 //    
       
   214 //
       
   215 //----------------------------------------------------
       
   216 //
       
   217 RESOURCE CBA  r_lmk_catsel_softkeys_ok_cancel
       
   218     {
       
   219     buttons =
       
   220         {
       
   221         CBA_BUTTON
       
   222             {
       
   223             id = EAknSoftkeyDone; // No dedicated id for "Open" exists
       
   224             //txt = text_softkey_open;
       
   225 	    txt = text_softkey_ok; 	
       
   226             },
       
   227         CBA_BUTTON
       
   228             {
       
   229             id = EAknSoftkeyCancel;
       
   230             txt = text_softkey_cancel;
       
   231             }
       
   232         };
       
   233     }
       
   234 
       
   235 //----------------------------------------------------
       
   236 //   
       
   237 //    r_lmk_selector_ok_cancel_multi_dlg
       
   238 //    
       
   239 //
       
   240 //----------------------------------------------------
       
   241 //
       
   242 RESOURCE DIALOG r_lmk_selector_ok_cancel_multi_dlg
       
   243 	{
       
   244 	flags = EAknDialogMultiselectionList | EEikDialogFlagFillAppClientRect | EEikDialogFlagNotifyEsc;
       
   245 	buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   246 	items =
       
   247 		{ 
       
   248 		DLG_LINE
       
   249 			{ 
       
   250 			type = EAknCtSingleGraphicListBox;
       
   251 			id = ESelectionListControl;
       
   252 			control = LISTBOX
       
   253 				{
       
   254                 #ifdef RD_SCALABLE_UI_V2
       
   255                 flags =	EAknListBoxStylusMultiselectionList;
       
   256                 #else
       
   257                 flags = EAknListBoxMultiselectionList;
       
   258                 #endif
       
   259 				};
       
   260 			},
       
   261 		DLG_LINE  
       
   262 			{
       
   263 			itemflags = EEikDlgItemNonFocusing;
       
   264 			id = EFindControl;
       
   265 			type = EAknCtSelectionListFixedFind;
       
   266 			}
       
   267 		};
       
   268 	} 
       
   269 
       
   270 //----------------------------------------------------
       
   271 //   
       
   272 //    r_lmk_selector_open_cancel_dlg
       
   273 //    
       
   274 //
       
   275 //----------------------------------------------------
       
   276 //
       
   277 RESOURCE DIALOG r_lmk_selector_open_cancel_dlg
       
   278 	{
       
   279 	flags = EAknDialogMarkableList | EEikDialogFlagFillAppClientRect | EEikDialogFlagNotifyEsc;
       
   280 	buttons = r_lmk_softkeys_open_cancel;
       
   281 	items =
       
   282 		{ 
       
   283 		DLG_LINE
       
   284 			{ 
       
   285 			type = EAknCtSingleGraphicListBox;
       
   286 			id = ESelectionListControl;
       
   287 			control = LISTBOX
       
   288 				{
       
   289 				flags = EAknListBoxMarkableList;
       
   290 				};
       
   291 			},
       
   292 		DLG_LINE  
       
   293 			{
       
   294 			itemflags = EEikDlgItemNonFocusing;
       
   295 			id = EFindControl;
       
   296 			type = EAknCtSelectionListFixedFind;
       
   297 			}
       
   298 		};
       
   299 	} 
       
   300 
       
   301 //----------------------------------------------------
       
   302 //   
       
   303 //    r_lmk_softkeys_open_cancel
       
   304 //    
       
   305 //
       
   306 //----------------------------------------------------
       
   307 //
       
   308 RESOURCE CBA r_lmk_softkeys_open_cancel
       
   309     {
       
   310     buttons =
       
   311         {
       
   312         CBA_BUTTON
       
   313             {
       
   314             id = EAknSoftkeyOk; // No dedicated id for "Open" exists
       
   315             txt = text_softkey_open;
       
   316             },
       
   317         CBA_BUTTON
       
   318             {
       
   319             id = EAknSoftkeyCancel;
       
   320             txt = text_softkey_cancel;
       
   321             }
       
   322         };
       
   323     }
       
   324 
       
   325 //----------------------------------------------------
       
   326 //   
       
   327 //    r_lmk_empty_menubar
       
   328 //    
       
   329 //
       
   330 //----------------------------------------------------
       
   331 //
       
   332 RESOURCE MENU_BAR r_lmk_empty_menubar
       
   333 	{
       
   334 	titles = {};
       
   335 	}
       
   336 
       
   337 //----------------------------------------------------
       
   338 //   
       
   339 //    r_lmk_query
       
   340 //    
       
   341 //
       
   342 //----------------------------------------------------
       
   343 //
       
   344 RESOURCE DIALOG r_lmk_query
       
   345 	{
       
   346 	flags = EGeneralQueryFlags;
       
   347 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   348 	items = 
       
   349 		{
       
   350 		DLG_LINE
       
   351 			{
       
   352 			type = EAknCtQuery;
       
   353 			id = EGeneralQuery;
       
   354 			control = AVKON_CONFIRMATION_QUERY
       
   355 				{
       
   356 				layout = EConfirmationQueryLayout;
       
   357 				};
       
   358 			}
       
   359 		};
       
   360 	}
       
   361 
       
   362 //----------------------------------------------------
       
   363 //   
       
   364 //    r_lmk_delete_category
       
   365 //    Text for confirmation query
       
   366 //
       
   367 //----------------------------------------------------
       
   368 //
       
   369 RESOURCE TBUF r_lmk_delete_category
       
   370     {
       
   371     buf = qtn_lm_conf_delete_category;
       
   372     }
       
   373   
       
   374 //----------------------------------------------------
       
   375 //   
       
   376 //    r_lmk_delete_categories
       
   377 //    Text for confirmation query
       
   378 //
       
   379 //----------------------------------------------------
       
   380 //
       
   381 RESOURCE TBUF r_lmk_delete_categories
       
   382     {
       
   383     buf = qtn_lm_conf_delete_categories;
       
   384     }
       
   385 
       
   386 //----------------------------------------------------
       
   387 //   
       
   388 //    r_lmk_delete_landmark
       
   389 //    Text for confirmation query
       
   390 //
       
   391 //----------------------------------------------------
       
   392 //
       
   393 RESOURCE TBUF r_lmk_delete_landmark
       
   394     {
       
   395     buf = qtn_lm_conf_delete_landmark;
       
   396     }
       
   397 
       
   398 //----------------------------------------------------
       
   399 //   
       
   400 //    r_lmk_delete_landmarks
       
   401 //    Text for confirmation query
       
   402 //
       
   403 //----------------------------------------------------
       
   404 //
       
   405 RESOURCE TBUF r_lmk_delete_landmarks
       
   406     {
       
   407     buf = qtn_lm_conf_delete_landmarks;
       
   408     }
       
   409 
       
   410   
       
   411 
       
   412 //----------------------------------------------------
       
   413 //   
       
   414 //    r_lmk_category_selector_title
       
   415 //    Title for category selector
       
   416 //
       
   417 //----------------------------------------------------
       
   418 //
       
   419 RESOURCE TBUF r_lmk_category_selector_title
       
   420     {
       
   421     buf = qtn_lm_title_categories;
       
   422     }
       
   423 
       
   424 //----------------------------------------------------
       
   425 //   
       
   426 //    r_lmk_landmark_selector_title
       
   427 //    Title for landmark selector
       
   428 //
       
   429 //----------------------------------------------------
       
   430 //
       
   431 RESOURCE TBUF r_lmk_landmark_selector_title
       
   432     {
       
   433     buf = qtn_lm_title_landmarks;
       
   434     }
       
   435 
       
   436 //----------------------------------------------------
       
   437 //   
       
   438 //    r_lmk_category_name_query
       
   439 //    categories name query
       
   440 //
       
   441 //----------------------------------------------------
       
   442 //
       
   443 RESOURCE DIALOG r_lmk_category_name_query
       
   444   {
       
   445   flags = EGeneralQueryFlags;
       
   446   buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
       
   447   items =
       
   448     {
       
   449     DLG_LINE
       
   450       {
       
   451       type = EAknCtQuery;
       
   452       id = EGeneralQuery;
       
   453       control = AVKON_DATA_QUERY
       
   454         {       		
       
   455 		layout = EDataLayout;
       
   456 		label = qtn_lm_prompt_category_name; 
       
   457         control = EDWIN
       
   458           {
       
   459           flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable;
       
   460           width = LMK_QUERY_EDWIN_WIDTH;
       
   461           lines = LMK_QUERY_EDWIN_LINES;
       
   462           maxlength = LMK_QUERY_EDWIN_MAXLENGTH;
       
   463           };
       
   464         };
       
   465       }
       
   466     };
       
   467   } 
       
   468 
       
   469 //----------------------------------------------------
       
   470 //   
       
   471 //    r_lmk_category_name_exists_note
       
   472 //    Category name already exists information note
       
   473 //
       
   474 //----------------------------------------------------
       
   475 //
       
   476 RESOURCE TBUF r_lmk_category_name_exists_note
       
   477     {
       
   478     buf = qtn_lm_note_category_name_already_exists;
       
   479     }
       
   480 
       
   481 //----------------------------------------------------
       
   482 //   
       
   483 //    r_lmk_icon_selector_title
       
   484 //    Title of icon selector
       
   485 //
       
   486 //----------------------------------------------------
       
   487 //
       
   488 RESOURCE TBUF r_lmk_icon_selector_title
       
   489     {
       
   490     buf = qtn_lm_heading_select_icon;
       
   491     }
       
   492 
       
   493 //----------------------------------------------------
       
   494 //   
       
   495 //    r_lmk_deleting_wait_note
       
   496 //    Deleting wait note
       
   497 //
       
   498 //----------------------------------------------------
       
   499 //
       
   500 RESOURCE DIALOG r_lmk_deleting_wait_note
       
   501 	{	
       
   502 	flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   503     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   504     items =
       
   505         {
       
   506         DLG_LINE
       
   507             {
       
   508             type = EAknCtNote;
       
   509             id = EGeneralNote;
       
   510             control= AVKON_NOTE 
       
   511                 { 
       
   512                 layout = EWaitLayout;
       
   513                 singular_label = qtn_fldr_deleting_wait_note;
       
   514                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   515                 };
       
   516             }
       
   517         };
       
   518 	}
       
   519 
       
   520 //----------------------------------------------------
       
   521 //   
       
   522 //    r_lmk_request_location
       
   523 //    Progress note 
       
   524 //
       
   525 //----------------------------------------------------
       
   526 //
       
   527 RESOURCE DIALOG r_lmk_request_location
       
   528 	{	
       
   529 	flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   530     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   531     items =
       
   532         {
       
   533         DLG_LINE
       
   534             {
       
   535             type = EAknCtNote;
       
   536             id = EGeneralNote;
       
   537             control= AVKON_NOTE 
       
   538                 { 
       
   539                 layout = EWaitLayout;
       
   540                 singular_label = qtn_lm_wait_requesting_location;
       
   541                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   542                 };
       
   543             }
       
   544         };
       
   545 	}
       
   546 
       
   547 //----------------------------------------------------
       
   548 //   
       
   549 //    r_lmk_processing_wait_note
       
   550 //    Processing wait note
       
   551 //
       
   552 //----------------------------------------------------
       
   553 //
       
   554 RESOURCE DIALOG r_lmk_processing_wait_note
       
   555 	{	
       
   556 	flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   557     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   558     items =
       
   559         {
       
   560         DLG_LINE
       
   561             {
       
   562             type = EAknCtNote;
       
   563             id = EGeneralNote;
       
   564             control= AVKON_NOTE 
       
   565                 { 
       
   566                 layout = EWaitLayout;
       
   567                 singular_label = qtn_gen_note_processing;
       
   568                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   569                 };
       
   570             }
       
   571         };
       
   572 	}
       
   573 //----------------------------------------------------
       
   574 //   
       
   575 //    r_lmk_category_settings_empty
       
   576 //    Category settings view's items empty text
       
   577 //
       
   578 //----------------------------------------------------
       
   579 //
       
   580 RESOURCE TBUF r_lmk_category_settings_empty
       
   581     {
       
   582     buf = qtn_lm_list_category_empty;
       
   583     }
       
   584 
       
   585 //----------------------------------------------------
       
   586 //   
       
   587 //    r_lmk_category_settings_empty
       
   588 //    Category settings view's items empty text
       
   589 //
       
   590 //----------------------------------------------------
       
   591 //
       
   592 RESOURCE DIALOG r_empty_dialog	
       
   593     {
       
   594 	flags = EEikDialogFlagFillAppClientRect | EEikDialogFlagCbaButtons;
       
   595 	buttons = R_AVKON_SOFTKEYS_EMPTY; 
       
   596     items =
       
   597         {
       
   598         };
       
   599     } 	
       
   600 
       
   601 //----------------------------------------------------
       
   602 //   
       
   603 //    r_lmk_lm_list_uncategorised
       
   604 //    
       
   605 //
       
   606 //----------------------------------------------------
       
   607 //
       
   608 RESOURCE TBUF r_lmk_lm_list_uncategorised
       
   609     {
       
   610     buf = qtn_lm_list_uncategorised;
       
   611     }
       
   612     
       
   613 //----------------------------------------------------
       
   614 //   
       
   615 //    r_lmk_no_categories_available
       
   616 //    
       
   617 //
       
   618 //----------------------------------------------------
       
   619 //
       
   620 RESOURCE TBUF r_lmk_no_categories_available
       
   621     {
       
   622     buf = qtn_lm_no_categories_available;
       
   623     }
       
   624     
       
   625 //----------------------------------------------------
       
   626 //   
       
   627 //    r_lmk_note_no_number_to_name
       
   628 //    No phone number available note
       
   629 //
       
   630 //----------------------------------------------------
       
   631 //
       
   632 RESOURCE TBUF r_lmk_note_no_number_to_name
       
   633     {
       
   634     buf = qtn_lm_note_no_number;
       
   635     }       
       
   636 
       
   637     
       
   638 //----------------------------------------------------   
       
   639 //    r_lmk_memlo_not_enough_memory
       
   640 //    Out of memory note
       
   641 //
       
   642 //----------------------------------------------------
       
   643 //
       
   644 RESOURCE TBUF r_lmk_memlo_not_enough_memory
       
   645 	{
       
   646 	buf = qtn_memlo_not_enough_memory;
       
   647 	}  
       
   648 	
       
   649 //----------------------------------------------------
       
   650 //   
       
   651 //    r_lmk_no_landmarks_create_with_application
       
   652 //    Create landmark with landmark application
       
   653 //
       
   654 //----------------------------------------------------
       
   655 //
       
   656 	RESOURCE TBUF r_lmk_no_landmarks_create_with_application
       
   657     {
       
   658     buf = qtn_lm_lmsel_no_landmarks;
       
   659     }
       
   660     
       
   661 //----------------------------------------------------
       
   662 //   
       
   663 //    qtn_lm_show_error_no_data
       
   664 //    No data in selected landmark 
       
   665 //
       
   666 //----------------------------------------------------
       
   667 //
       
   668 RESOURCE TBUF r_lm_show_error_no_data
       
   669     {
       
   670 	buf = qtn_lm_show_error_no_data;
       
   671     }
       
   672 
       
   673 //----------------------------------------------------
       
   674 //   
       
   675 //    r_lm_show_error_no_coordinates
       
   676 //    No data in landmarks available
       
   677 //
       
   678 //----------------------------------------------------
       
   679 //
       
   680 RESOURCE TBUF r_lm_show_error_no_coordinates
       
   681     {
       
   682 	buf = qtn_lm_show_error_no_coordinates;
       
   683     }
       
   684 
       
   685 //----------------------------------------------------
       
   686 //   
       
   687 //    r_lm_show_query_no_coordinates_single
       
   688 //    No data in landmark available
       
   689 //
       
   690 //----------------------------------------------------
       
   691 //
       
   692 RESOURCE TBUF r_lm_show_query_no_coordinates_single
       
   693     {
       
   694 	buf = qtn_lm_show_query_no_coordinates_single;
       
   695     }
       
   696 
       
   697 //----------------------------------------------------
       
   698 //   
       
   699 //    r_lm_show_query_no_coordinates_several
       
   700 //    No data in landmarks available
       
   701 //
       
   702 //----------------------------------------------------
       
   703 //
       
   704 RESOURCE TBUF r_lm_show_query_no_coordinates_several
       
   705     {
       
   706 	buf = qtn_lm_show_query_no_coordinates_several;
       
   707     }
       
   708 
       
   709 //----------------------------------------------------
       
   710 //   
       
   711 //    r_lm_show_error_category_no_coordinates
       
   712 //    No data in landmarks available in category note
       
   713 //
       
   714 //----------------------------------------------------
       
   715 //
       
   716 RESOURCE TBUF r_lm_show_error_category_no_coordinates
       
   717     {
       
   718 	buf = qtn_lm_show_error_category_no_coordinates;
       
   719     }
       
   720 
       
   721 //----------------------------------------------------
       
   722 //   
       
   723 //    r_lm_show_query_category_no_coordinates_single
       
   724 //    No data in landmarks available in category note
       
   725 //
       
   726 //----------------------------------------------------
       
   727 //
       
   728 RESOURCE TBUF r_lm_show_query_category_no_coordinates_single
       
   729     {
       
   730 	buf = qtn_lm_show_query_category_no_coordinates_single;
       
   731     }
       
   732 
       
   733 //----------------------------------------------------
       
   734 //   
       
   735 //    r_lm_show_query_category_no_coordinates_several
       
   736 //    No data in landmarks available in category note
       
   737 //
       
   738 //----------------------------------------------------
       
   739 //
       
   740 RESOURCE TBUF r_lm_show_query_category_no_coordinates_several
       
   741     {
       
   742 	buf = qtn_lm_show_query_category_no_coordinates_several;
       
   743     }
       
   744 
       
   745 //----------------------------------------------------
       
   746 //   
       
   747 //    r_lm_select_from_map
       
   748 //    String to proviers for select from map use case
       
   749 //
       
   750 //----------------------------------------------------
       
   751 //
       
   752 RESOURCE TBUF r_lm_select_from_map
       
   753     {
       
   754 	buf = qtn_lm_select_from_map;
       
   755     }
       
   756 
       
   757 //----------------------------------------------------
       
   758 //   
       
   759 //    r_empty_landmark_dialog
       
   760 //    
       
   761 //
       
   762 //----------------------------------------------------
       
   763 //    
       
   764 RESOURCE DIALOG r_empty_landmark_dialog
       
   765 	{
       
   766 	flags = EGeneralQueryFlags;
       
   767 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   768 	items = 
       
   769 		{
       
   770 		DLG_LINE
       
   771 			{
       
   772 			type = EAknCtQuery;
       
   773 			id = EGeneralQuery;
       
   774 			control = AVKON_CONFIRMATION_QUERY
       
   775 				{
       
   776 				layout = EConfirmationQueryLayout;
       
   777 				};
       
   778 			}
       
   779 		};
       
   780 	}
       
   781 
       
   782 //----------------------------------------------------
       
   783 //   
       
   784 //    r_empty_landmarks_dialog
       
   785 //    
       
   786 //
       
   787 //----------------------------------------------------
       
   788 //    
       
   789 RESOURCE DIALOG r_empty_landmarks_dialog
       
   790 	{
       
   791 	flags = EGeneralQueryFlags;
       
   792 	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
   793 	items = 
       
   794 		{
       
   795 		DLG_LINE
       
   796 			{
       
   797 			type = EAknCtQuery;
       
   798 			id = EGeneralQuery;
       
   799 			control = AVKON_CONFIRMATION_QUERY
       
   800 				{
       
   801 				layout = EConfirmationQueryLayout;
       
   802 				};
       
   803 			}
       
   804 		};
       
   805 	}
       
   806 
       
   807 	
       
   808 //----------------------------------------------------
       
   809 //   
       
   810 //    r_lmkui_processing_wait_note
       
   811 //    General wait note
       
   812 //
       
   813 //----------------------------------------------------
       
   814 //
       
   815 RESOURCE DIALOG r_lmkui_processing_wait_note
       
   816 	{	
       
   817 	flags = EAknWaitNoteFlags | EEikDialogFlagWait;
       
   818     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   819     items =
       
   820         {
       
   821         DLG_LINE
       
   822             {
       
   823             type = EAknCtNote;
       
   824             id = EGeneralNote;
       
   825             control= AVKON_NOTE 
       
   826                 { 
       
   827                 layout = EWaitLayout;
       
   828                 singular_label = qtn_gen_note_processing;
       
   829                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   830                 };
       
   831             }
       
   832         };
       
   833 	}
       
   834 
       
   835 RESOURCE DIALOG r_lmk_icon_table_dialog
       
   836     {
       
   837     flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
       
   838     buttons = r_lmk_icon_softkeys_select_cancel_select;
       
   839     items=
       
   840         {
       
   841         DLG_LINE
       
   842             {
       
   843             type = EAknCtPopupHeadingPane;
       
   844             id = EAknSCTQueryHeadingId;
       
   845             control = AVKON_HEADING
       
   846                 {
       
   847                 headinglayout = R_AVKON_SCT_LIST_HEADING_PANE;//r_avkon_sct_list_heading_pane;
       
   848                 };
       
   849             },
       
   850         DLG_LINE
       
   851             {
       
   852             type = ELmkCtIconMap;//0x2001
       
   853             id = ELmkIconMapContentId;
       
   854             }
       
   855         };
       
   856     }
       
   857 
       
   858 //----------------------------------------------------
       
   859 //   
       
   860 //    r_lmk_single_selector_softkeys_ok_cancel_ok
       
   861 //    CBA with left & msk are same.
       
   862 //
       
   863 //----------------------------------------------------
       
   864 //
       
   865 RESOURCE CBA r_lmk_selector_softkeys_ok_cancel_ok
       
   866     {
       
   867     buttons =
       
   868         {
       
   869         CBA_BUTTON {id=EAknSoftkeyOk; txt=text_softkey_ok;},
       
   870         CBA_BUTTON {id=EAknSoftkeyCancel; txt = text_softkey_cancel; },
       
   871         CBA_BUTTON {id=EAknSoftkeyOk; txt=text_softkey_ok;}
       
   872         };
       
   873     }
       
   874 //----------------------------------------------------
       
   875 //   
       
   876 //    r_lmk_selector_softkeys_ok_back_ok
       
   877 //    CBA ok ok back
       
   878 //
       
   879 //----------------------------------------------------
       
   880 //
       
   881 RESOURCE CBA r_lmk_selector_softkeys_ok_back_ok
       
   882     {
       
   883     buttons =
       
   884         {
       
   885         CBA_BUTTON {id=EAknSoftkeyOk; txt=text_softkey_ok;},
       
   886         CBA_BUTTON {id=EAknSoftkeyBack; txt = text_softkey_back; },
       
   887         CBA_BUTTON {id=EAknSoftkeyOk; txt=text_softkey_ok;}
       
   888         };
       
   889     }
       
   890 
       
   891 //----------------------------------------------------
       
   892 //   
       
   893 //    r_lmk_selector_softkeys_open_cancel_open
       
   894 //    CBA open open cancel
       
   895 //
       
   896 //----------------------------------------------------
       
   897 //
       
   898 RESOURCE CBA r_lmk_selector_softkeys_open_cancel_open
       
   899     {
       
   900     buttons =
       
   901         {
       
   902         CBA_BUTTON {id=EAknSoftkeyOk; txt=text_softkey_open;},
       
   903         CBA_BUTTON {id=EAknSoftkeyCancel; txt = text_softkey_cancel; },
       
   904         CBA_BUTTON {id=EAknSoftkeyOk; txt=text_softkey_open;}
       
   905         };
       
   906     }    
       
   907 
       
   908 //----------------------------------------------------
       
   909 //   
       
   910 //    r_lmk_selector_softkeys_done_cancel_done
       
   911 //    CBA done done cancel
       
   912 //
       
   913 //----------------------------------------------------
       
   914 //
       
   915 RESOURCE CBA r_lmk_selector_softkeys_done_cancel_done
       
   916     {
       
   917     buttons =
       
   918         {
       
   919         CBA_BUTTON {id=EAknSoftkeyDone; txt=text_softkey_ok;},
       
   920         CBA_BUTTON {id=EAknSoftkeyCancel; txt = text_softkey_cancel; },
       
   921         CBA_BUTTON {id=EAknSoftkeyDone; txt=text_softkey_ok;}
       
   922         };
       
   923     }        
       
   924 //----------------------------------------------------
       
   925 //   
       
   926 //    r_lmk_icon_softkeys_select_cancel_select
       
   927 //    CBA with left & msk are same.
       
   928 //
       
   929 //----------------------------------------------------
       
   930 //
       
   931 RESOURCE CBA r_lmk_icon_softkeys_select_cancel_select
       
   932     {
       
   933     buttons =
       
   934         {
       
   935         AVKON_CBA_BUTTON{id=EAknSoftkeySelect; longpressid=0; txt= text_softkey_select; },
       
   936         CBA_BUTTON{id=EAknSoftkeyCancel; txt= text_softkey_cancel; },
       
   937         CBA_BUTTON{id=EAknSoftkeySelect; txt= text_softkey_select; }
       
   938         };
       
   939     }
       
   940 
       
   941 //----------------------------------------------------
       
   942 //   
       
   943 //    r_lm_msk_mark
       
   944 //    Mark string
       
   945 //
       
   946 //----------------------------------------------------
       
   947 //
       
   948 RESOURCE TBUF r_lm_msk_mark
       
   949     {
       
   950 	buf = qtn_msk_mark;
       
   951     }
       
   952 //----------------------------------------------------
       
   953 //   
       
   954 //    r_lm_unmark
       
   955 //    UnMark string
       
   956 //
       
   957 //----------------------------------------------------
       
   958 //
       
   959 RESOURCE TBUF r_lm_msk_unmark
       
   960     {
       
   961 	buf = qtn_msk_unmark;
       
   962     }
       
   963 //----------------------------------------------------
       
   964 //   
       
   965 //    r_lm_unmark
       
   966 //    UnMark string
       
   967 //
       
   968 //----------------------------------------------------
       
   969 //
       
   970 RESOURCE TBUF r_lm_editor_many_categories
       
   971     {
       
   972 	buf = qtn_lm_editor_many_categories;
       
   973     }
       
   974  
       
   975  //----------------------------------------------------
       
   976 //   
       
   977 //    r_lmk_guide_create_landmark
       
   978 //
       
   979 //----------------------------------------------------
       
   980 //
       
   981 RESOURCE TBUF r_lmk_guide_create_landmark
       
   982     {
       
   983     buf = qtn_lm_guide_create_landmarks;
       
   984     }
       
   985 //----------------------------------------------------
       
   986 //   
       
   987 //    r_lmk_empty_no_landmarks
       
   988 //	  
       
   989 //----------------------------------------------------
       
   990 //
       
   991 RESOURCE TBUF r_lmk_empty_no_landmarks
       
   992     {
       
   993     buf = qtn_lm_empty_no_landmarks;
       
   994     }
       
   995 //----------------------------------------------------
       
   996 //   
       
   997 //    r_lmk_empty_no_match
       
   998 //	  
       
   999 //----------------------------------------------------
       
  1000 //
       
  1001 RESOURCE TBUF r_lmk_empty_no_match
       
  1002     {
       
  1003     buf = qtn_find_no_matches; 
       
  1004     }
       
  1005      
       
  1006 //----------------------------------------------------
       
  1007 //    r_lmk_empty_no_categories
       
  1008 //
       
  1009 //----------------------------------------------------
       
  1010 //
       
  1011 RESOURCE TBUF r_lmk_empty_no_categories
       
  1012     {
       
  1013     buf = qtn_lm_empty_no_categories;
       
  1014     }
       
  1015 
       
  1016 //----------------------------------------------------
       
  1017 //   
       
  1018 //    r_lmk_guide_new_category
       
  1019 //
       
  1020 //----------------------------------------------------
       
  1021 //
       
  1022 RESOURCE TBUF r_lmk_guide_new_category
       
  1023     {
       
  1024     buf = qtn_lm_guide_new_category;
       
  1025     }
       
  1026 //----------------------------------------------------
       
  1027 //   
       
  1028 //    r_lmk_error_check_note
       
  1029 //	  Error note
       
  1030 //
       
  1031 //----------------------------------------------------
       
  1032 //
       
  1033 RESOURCE TBUF r_lmk_error_check_note
       
  1034     {
       
  1035     buf = qtn_lm_error_check_coordinates;
       
  1036     }
       
  1037     
       
  1038 //----------------------------------------------------
       
  1039 //   
       
  1040 //    r_lmk_error_pos_acc_check_note
       
  1041 //	  Error note
       
  1042 //
       
  1043 //----------------------------------------------------
       
  1044 //
       
  1045 RESOURCE TBUF r_lmk_error_pos_acc_check_note
       
  1046     {
       
  1047     buf = qtn_lm_error_pos_acc_check;
       
  1048     }    
       
  1049 
       
  1050 //----------------------------------------------------
       
  1051 //   
       
  1052 //    r_lmk_error_alt_acc_check_note
       
  1053 //	  Error note
       
  1054 //
       
  1055 //----------------------------------------------------
       
  1056 //
       
  1057 RESOURCE TBUF r_lmk_error_alt_acc_check_note
       
  1058     {
       
  1059     buf = qtn_lm_error_alt_acc_check;
       
  1060     }
       
  1061 
       
  1062 //----------------------------------------------------
       
  1063 //   
       
  1064 //    r_lmk_error_altitude_check_note
       
  1065 //	  Error note
       
  1066 //
       
  1067 //----------------------------------------------------
       
  1068 //
       
  1069 RESOURCE TBUF r_lmk_error_altitude_check_note
       
  1070     {
       
  1071     buf = qtn_lm_error_altitude_check;
       
  1072     }
       
  1073 
       
  1074 //----------------------------------------------------
       
  1075 //   
       
  1076 //    r_lmk_error_url_illegal_note
       
  1077 //	  Error note
       
  1078 //
       
  1079 //----------------------------------------------------
       
  1080 //
       
  1081 RESOURCE TBUF r_lmk_error_url_illegal_note
       
  1082     {
       
  1083     buf = qtn_lm_error_url_illegal;
       
  1084     }
       
  1085     
       
  1086 //----------------------------------------------------
       
  1087 //   
       
  1088 //    r_lmk_msg_query_heading_pane_text
       
  1089 //
       
  1090 //
       
  1091 //----------------------------------------------------
       
  1092 //
       
  1093 RESOURCE TBUF r_lmk_msg_query_heading_pane_text
       
  1094     {
       
  1095     buf =qtn_lm_location_request;
       
  1096     }
       
  1097 //----------------------------------------------------
       
  1098 //   
       
  1099 //    r_lmk_conf_retry_location_request
       
  1100 //
       
  1101 //
       
  1102 //----------------------------------------------------
       
  1103 //
       
  1104 RESOURCE TBUF r_lmk_conf_retry_location_request
       
  1105     {
       
  1106     buf =qtn_lm_conf_retry_location_request;
       
  1107     }
       
  1108 
       
  1109 //----------------------------------------------------
       
  1110 //   
       
  1111 //    r_lmk_request_fail_info_text
       
  1112 //
       
  1113 //
       
  1114 //----------------------------------------------------
       
  1115 //
       
  1116 RESOURCE TBUF r_lmk_request_fail_info_text
       
  1117     {
       
  1118     buf =qtn_lm_request_fail_info_text;
       
  1119     }
       
  1120 
       
  1121 //----------------------------------------------------
       
  1122 //   
       
  1123 //    r_lmk_request_fail_more_info
       
  1124 //
       
  1125 //
       
  1126 //----------------------------------------------------
       
  1127 //
       
  1128 RESOURCE TBUF r_lmk_request_fail_more_info
       
  1129     {
       
  1130     buf =qtn_lm_request_fail_more_info;
       
  1131     }
       
  1132 //----------------------------------------------------
       
  1133 //   
       
  1134 //    r_lmk_message_query_dialog2
       
  1135 //
       
  1136 //
       
  1137 //----------------------------------------------------
       
  1138 //
       
  1139 RESOURCE DIALOG r_lmk_message_query_dialog2
       
  1140     {
       
  1141     flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
       
  1142     buttons = R_AVKON_SOFTKEYS_YES_NO;
       
  1143     items=
       
  1144         {
       
  1145         DLG_LINE
       
  1146             {
       
  1147             type = EAknCtPopupHeadingPane;
       
  1148             id = EAknMessageQueryHeaderId;
       
  1149             control = AVKON_HEADING
       
  1150                 {
       
  1151                 //label = qtn_lm_categories_query_prompt;
       
  1152                 headinglayout = R_AVKON_WML_SIGN_QUERY_HEADING_PANE;
       
  1153                 };
       
  1154             },
       
  1155         DLG_LINE
       
  1156             {
       
  1157             type = EAknCtMessageQuery;
       
  1158             id = EAknMessageQueryContentId;
       
  1159             control = AVKON_MESSAGE_QUERY
       
  1160                 {
       
  1161                 };
       
  1162             }
       
  1163         };
       
  1164     }
       
  1165  
       
  1166  //----------------------------------------------------
       
  1167 //   
       
  1168 //    r_lmk_message_query_dialog3
       
  1169 //
       
  1170 //
       
  1171 //----------------------------------------------------
       
  1172 //
       
  1173 RESOURCE DIALOG r_lmk_message_query_dialog3
       
  1174     {
       
  1175     flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
       
  1176     buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
  1177     items=
       
  1178         {
       
  1179         DLG_LINE
       
  1180             {
       
  1181             type = EAknCtPopupHeadingPane;
       
  1182             id = EAknMessageQueryHeaderId;
       
  1183             control = AVKON_HEADING
       
  1184                 {
       
  1185                 headinglayout = R_AVKON_WML_SIGN_QUERY_HEADING_PANE;
       
  1186                 };
       
  1187             },
       
  1188         DLG_LINE
       
  1189             {
       
  1190             type = EAknCtMessageQuery;
       
  1191             id = EAknMessageQueryContentId;
       
  1192             control = AVKON_MESSAGE_QUERY
       
  1193                 {
       
  1194                 };
       
  1195             }
       
  1196         };
       
  1197     }
       
  1198 // ---------------------------------------------------------
       
  1199 //  Additional resource files
       
  1200 // ---------------------------------------------------------
       
  1201 //
       
  1202 #include "LmkEditor.rss"  
       
  1203 #include "LmkMessaging.rss"
       
  1204 
       
  1205 // End of File