internetradio2.0/resources/internetradio.rss
changeset 0 09774dfdd46b
equal deleted inserted replaced
-1:000000000000 0:09774dfdd46b
       
     1 /*
       
     2 * Copyright (c) 2006-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:  
       
    15 *
       
    16 */
       
    17 
       
    18 NAME IRAP
       
    19 
       
    20 #include <eikon.rh>
       
    21 #include <eikon.rsg>
       
    22 #include <avkon.hrh>
       
    23 #include <avkon.rh>
       
    24 #include <avkon.rsg>
       
    25 #include <appinfo.rh>
       
    26 #include <e32keys.h>
       
    27 #include <avkon.mbg>        // Icon in save query
       
    28 #include <avkonicons.hrh>
       
    29 #include <aknsconstants.hrh>
       
    30 #include <data_caging_paths_strings.hrh>
       
    31 #include <bldvariant.hrh>
       
    32 
       
    33 
       
    34 #include "internetradio.rh"
       
    35 #include "ir.hrh"
       
    36 #include "internetradio.loc"
       
    37 #include "internetradioterms.loc"
       
    38 #include <internetradio.mbg>
       
    39 
       
    40 
       
    41 // AVKON status pane heights in portrait and landscape. 
       
    42 // Used when calculating layout positions on now playing view. LAF values
       
    43 // are defined by using the screen area. To set the layouts on the right
       
    44 // places, AVKON status pane height must be subtracted from the top/left
       
    45 // y -coordinate. 
       
    46 // In code side layout positions are defined relative to the parent layout.
       
    47 #define KIRStatusPaneHeightPortrait 47 
       
    48 #define KIRStatusPaneHeightLandscape 61 
       
    49 // Bitmap file path
       
    50 #define KInternetRadioBitmapFile APP_RESOURCE_DIR"\\InternetRadio.mif"
       
    51 #define KIntertRadioAifMifFile APP_RESOURCE_DIR"\\InternetRadio_aif.mif"
       
    52 
       
    53 // ---------------------------------------------------------
       
    54 //	
       
    55 //    Define the resource file signature 
       
    56 //    This resource should be empty.
       
    57 //
       
    58 // ---------------------------------------------------------
       
    59 //
       
    60 RESOURCE RSS_SIGNATURE { }
       
    61 
       
    62 // ---------------------------------------------------------
       
    63 //   
       
    64 //    Default Document Name
       
    65 //
       
    66 // ---------------------------------------------------------
       
    67 //
       
    68 RESOURCE TBUF r_default_document_name { buf=""; }
       
    69 
       
    70 // ---------------------------------------------------------
       
    71 //   
       
    72 //    Define default menu and CBA key.
       
    73 //
       
    74 // ---------------------------------------------------------
       
    75 //
       
    76 RESOURCE EIK_APP_INFO
       
    77     {
       
    78     menubar = r_main_menubar;
       
    79     cba = r_irapp_softkeys_options_back_cba;        
       
    80     }
       
    81     
       
    82  RESOURCE LOCALISABLE_APP_INFO r_internetradio_localisable_app_info
       
    83 	{
       
    84 	short_caption = qtn_ir_apps_grid;
       
    85 	caption_and_icon = 
       
    86 	CAPTION_AND_ICON_INFO
       
    87 		{
       
    88 		caption = qtn_ir_apps_list;
       
    89 		number_of_icons = 1;
       
    90 		icon_file = KIntertRadioAifMifFile;
       
    91 		};
       
    92 	}
       
    93     
       
    94     
       
    95 //------------------------------------------
       
    96 //    Resource definition for pls view
       
    97 //----------------------------------------------------
       
    98 RESOURCE AVKON_VIEW r_ir_plsview
       
    99     {
       
   100     menubar = r_ir_menubar_pls;
       
   101     cba = r_irapp_softkeys_options_back_cba;  
       
   102     toolbar =r_now_plslist_white_toolbar;
       
   103     toolbar =r_now_plslist_black_toolbar;   
       
   104     }
       
   105 //---------------------------------------------------
       
   106 //   Resource definition for Settings View
       
   107 //---------------------------------------------------
       
   108 RESOURCE AVKON_VIEW r_ir_settingsview
       
   109     {
       
   110     menubar = r_ir_menubar_settings;
       
   111     cba = r_irapp_softkeys_options_back_cba;    
       
   112     }
       
   113 
       
   114 //----------------------------------------------------
       
   115 //    Resource definition for Terms and conditions view
       
   116 //----------------------------------------------------
       
   117 //
       
   118 RESOURCE AVKON_VIEW r_ir_tandcview
       
   119     {
       
   120     cba = r_ir_cba_continue_exit; 
       
   121     cba = r_ir_cba_accept_decline;   
       
   122     }
       
   123     
       
   124 RESOURCE TBUF r_ir_now_tooltip_next
       
   125     {
       
   126     buf = qtn_ir_now_tooltip_next;
       
   127     }
       
   128 
       
   129 RESOURCE TBUF r_ir_now_tooltip_play
       
   130     {
       
   131     buf = qtn_ir_now_tooltip_play;
       
   132     }
       
   133 RESOURCE TBUF r_ir_now_tooltip_previous
       
   134     {
       
   135     buf = qtn_ir_now_tooltip_previous;
       
   136     }
       
   137 RESOURCE TBUF r_ir_now_tooltip_stop
       
   138     {
       
   139     buf = qtn_ir_now_tooltip_stop;
       
   140     }
       
   141     
       
   142 RESOURCE TBUF r_ir_now_artist_song
       
   143     {
       
   144     buf = qtn_ir_now_artist_song;
       
   145     }
       
   146     
       
   147 RESOURCE TBUF r_ir_history_artist_song
       
   148     {
       
   149     buf = qtn_ir_history_artist_song;
       
   150     }
       
   151     
       
   152 RESOURCE AVKON_TOOLBAR r_now_nameslist_toolbar
       
   153 	{
       
   154 	flags = KAknToolbarFixed; 
       
   155 	items =
       
   156 	    {
       
   157 	    // Toolbar is currently created dynamically
       
   158 	    };
       
   159 	}
       
   160     
       
   161 //---------------------------------------------------------------
       
   162 //    Resource definition for toolbar of pls view for dark theme.
       
   163 //----------------------------------------------------------------
       
   164 //
       
   165 RESOURCE AVKON_TOOLBAR r_now_plslist_white_toolbar 
       
   166 	{
       
   167 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   168 	items =
       
   169 		{
       
   170 		TBAR_CTRL
       
   171 			{
       
   172 			type = EAknCtButton;
       
   173 			id = ESaveCmd;
       
   174 			control = AVKON_BUTTON
       
   175 				{
       
   176 				states =
       
   177 					{
       
   178 					AVKON_BUTTON_STATE
       
   179 						{
       
   180 						bmpfile = KInternetRadioBitmapFile;
       
   181 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white;
       
   182 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white_mask;
       
   183 						helptxt = qtn_ir_tooltip_addtofav;
       
   184 						}  
       
   185 					};            
       
   186 				};
       
   187 			},
       
   188 		TBAR_CTRL
       
   189 			{
       
   190 			type = EAknCtButton;
       
   191 			id = EListenCmd;
       
   192 			control = AVKON_BUTTON
       
   193 				{
       
   194 				states =
       
   195 					{
       
   196 					AVKON_BUTTON_STATE
       
   197 						{
       
   198 						bmpfile = KInternetRadioBitmapFile;
       
   199 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen_white;
       
   200 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_white_mask;
       
   201 						helptxt = qtn_ir_tooltip_listen;
       
   202 						}  
       
   203 					};            
       
   204 				};
       
   205 			},
       
   206 		TBAR_CTRL
       
   207 			{
       
   208 			type = EAknCtButton;
       
   209 			id = ESaveAllCmd;
       
   210 			control = AVKON_BUTTON
       
   211 				{
       
   212 				states =
       
   213 					{
       
   214 					AVKON_BUTTON_STATE
       
   215 						{
       
   216 						bmpfile = KInternetRadioBitmapFile;
       
   217 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_saveall_white;
       
   218 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_saveall_white_mask;
       
   219 						helptxt = qtn_ir_tooltip_addalltofav;
       
   220 						}  
       
   221 					};            
       
   222 				};
       
   223 			}
       
   224 		};
       
   225 	}
       
   226 //---------------------------------------------------------------
       
   227 //    Resource definition for toolbar of pls view for light theme.
       
   228 //----------------------------------------------------------------
       
   229 //
       
   230 RESOURCE AVKON_TOOLBAR r_now_plslist_black_toolbar 
       
   231     {
       
   232     flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   233     items =
       
   234         {
       
   235         TBAR_CTRL
       
   236             {
       
   237             type = EAknCtButton;
       
   238             id = ESaveCmd;
       
   239             control = AVKON_BUTTON
       
   240                 {
       
   241                 states =
       
   242                     {
       
   243                     AVKON_BUTTON_STATE
       
   244                         {
       
   245                         bmpfile = KInternetRadioBitmapFile;
       
   246                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav;
       
   247                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_mask;
       
   248                         helptxt = qtn_ir_tooltip_addtofav;
       
   249                         }  
       
   250                     };            
       
   251                 };
       
   252             },
       
   253         TBAR_CTRL
       
   254             {
       
   255             type = EAknCtButton;
       
   256             id = EListenCmd;
       
   257             control = AVKON_BUTTON
       
   258                 {
       
   259                 states =
       
   260                     {
       
   261                     AVKON_BUTTON_STATE
       
   262                         {
       
   263                         bmpfile = KInternetRadioBitmapFile;
       
   264                         bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen;
       
   265                         bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_mask;
       
   266                         helptxt = qtn_ir_tooltip_listen;
       
   267                         }  
       
   268                     };            
       
   269                 };
       
   270             },
       
   271         TBAR_CTRL
       
   272             {
       
   273             type = EAknCtButton;
       
   274             id = ESaveAllCmd;
       
   275             control = AVKON_BUTTON
       
   276                 {
       
   277                 states =
       
   278                     {
       
   279                     AVKON_BUTTON_STATE
       
   280                         {
       
   281                         bmpfile = KInternetRadioBitmapFile;
       
   282                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_saveall;
       
   283                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_saveall_mask;
       
   284                         helptxt = qtn_ir_tooltip_addalltofav;
       
   285                         }  
       
   286                     };            
       
   287                 };
       
   288             }
       
   289         };
       
   290     }
       
   291  
       
   292 //---------------------------------------------------------------
       
   293 //    Resource definition for toolbar of history view for light theme.
       
   294 //----------------------------------------------------------------
       
   295 //
       
   296 RESOURCE AVKON_TOOLBAR r_ir_history_black_toolbar 
       
   297     {
       
   298     flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   299     items =
       
   300         {
       
   301         TBAR_CTRL
       
   302             {
       
   303             type = EAknCtButton;
       
   304             id = EFindInShop;
       
   305             control = AVKON_BUTTON
       
   306                 {
       
   307                 states =
       
   308                     {
       
   309                     AVKON_BUTTON_STATE
       
   310                         {
       
   311                         bmpfile = KInternetRadioBitmapFile;
       
   312                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_findnshop;
       
   313                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_findnshop_mask;
       
   314                         helptxt = qtn_ir_tooltip_findnstore;
       
   315                         }  
       
   316                     };            
       
   317                 };
       
   318             },
       
   319         TBAR_CTRL
       
   320             {
       
   321             type = EAknCtButton;
       
   322             id = EListenCmd;
       
   323             control = AVKON_BUTTON
       
   324                 {
       
   325                 states =
       
   326                     {
       
   327                     AVKON_BUTTON_STATE
       
   328                         {
       
   329                         bmpfile = KInternetRadioBitmapFile;
       
   330                         bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen;
       
   331                         bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_mask;
       
   332                         helptxt = qtn_ir_tooltip_listen;
       
   333                         }  
       
   334                     };            
       
   335                 };
       
   336             },
       
   337         TBAR_CTRL
       
   338             {
       
   339             type = EAknCtButton;
       
   340             id = EAddStationManuallyCmd;
       
   341             control = AVKON_BUTTON
       
   342                 {
       
   343                 states =
       
   344                     {
       
   345                     AVKON_BUTTON_STATE
       
   346                         {
       
   347                         bmpfile = KInternetRadioBitmapFile;
       
   348                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_addstation;
       
   349                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addstation_mask;
       
   350                         helptxt = qtn_ir_tooltip_addstation;
       
   351                         }  
       
   352                     };            
       
   353                 };
       
   354             }
       
   355         };
       
   356     }
       
   357 //---------------------------------------------------------------
       
   358 //    Resource definition for toolbar of history view for dark theme.
       
   359 //----------------------------------------------------------------
       
   360 //
       
   361 RESOURCE AVKON_TOOLBAR r_ir_history_white_toolbar 
       
   362     {
       
   363     flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   364     items =
       
   365         {
       
   366         TBAR_CTRL
       
   367             {
       
   368             type = EAknCtButton;
       
   369             id = EFindInShop;
       
   370             control = AVKON_BUTTON
       
   371                 {
       
   372                 states =
       
   373                     {
       
   374                     AVKON_BUTTON_STATE
       
   375                         {
       
   376                         bmpfile = KInternetRadioBitmapFile;
       
   377                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_findnshop_white;
       
   378                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white_mask;
       
   379                         helptxt = qtn_ir_tooltip_findnstore;
       
   380                         }  
       
   381                     };            
       
   382                 };
       
   383             },
       
   384         TBAR_CTRL
       
   385             {
       
   386             type = EAknCtButton;
       
   387             id = EListenCmd;
       
   388             control = AVKON_BUTTON
       
   389                 {
       
   390                 states =
       
   391                     {
       
   392                     AVKON_BUTTON_STATE
       
   393                         {
       
   394                         bmpfile = KInternetRadioBitmapFile;
       
   395                         bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen_white;
       
   396                         bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_white_mask;
       
   397                         helptxt = qtn_ir_tooltip_listen;
       
   398                         }  
       
   399                     };            
       
   400                 };
       
   401             },
       
   402         TBAR_CTRL
       
   403             {
       
   404             type = EAknCtButton;
       
   405             id = EAddStationManuallyCmd;
       
   406             control = AVKON_BUTTON
       
   407                 {
       
   408                 states =
       
   409                     {
       
   410                     AVKON_BUTTON_STATE
       
   411                         {
       
   412                         bmpfile = KInternetRadioBitmapFile;
       
   413                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_addstation_white;
       
   414                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addstation_white_mask;
       
   415                         helptxt = qtn_ir_tooltip_addstation;
       
   416                         }  
       
   417                     };            
       
   418                 };
       
   419             }
       
   420         };
       
   421     }
       
   422 //---------------------------------------------------------------
       
   423 //    Resource definition for toolbar of searchresults view for dark theme.
       
   424 //----------------------------------------------------------------
       
   425 //
       
   426 RESOURCE AVKON_TOOLBAR r_ir_searchresults_white_toolbar 
       
   427 	{
       
   428 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   429 	items =
       
   430 		{
       
   431 		TBAR_CTRL
       
   432 			{
       
   433 			type = EAknCtButton;
       
   434 			id = EAddtoFavouritesCmd;
       
   435 			control = AVKON_BUTTON
       
   436 				{
       
   437 				states =
       
   438 					{
       
   439 					AVKON_BUTTON_STATE
       
   440 						{
       
   441 						bmpfile = KInternetRadioBitmapFile;
       
   442 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white;
       
   443 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white_mask;
       
   444 						helptxt = qtn_ir_tooltip_addtofav;
       
   445 						}  
       
   446 					};            
       
   447 				};
       
   448 			},
       
   449 		TBAR_CTRL
       
   450 			{
       
   451 			type = EAknCtButton;
       
   452 			id = EListenCmd;
       
   453 			control = AVKON_BUTTON
       
   454 				{
       
   455 				states =
       
   456 					{
       
   457 					AVKON_BUTTON_STATE
       
   458 						{
       
   459 						bmpfile = KInternetRadioBitmapFile;
       
   460 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen_white;
       
   461 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_white_mask;
       
   462 						helptxt = qtn_ir_tooltip_listen;
       
   463 						}  
       
   464 					};            
       
   465 				};
       
   466 			},
       
   467 		TBAR_CTRL
       
   468 			{
       
   469 			type = EAknCtButton;
       
   470 			id = EAddStationManuallyCmd;
       
   471 			control = AVKON_BUTTON
       
   472 				{
       
   473 				states =
       
   474 					{
       
   475 					AVKON_BUTTON_STATE
       
   476 						{
       
   477 						bmpfile = KInternetRadioBitmapFile;
       
   478 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addstation_white;
       
   479 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addstation_white_mask;
       
   480 						helptxt = qtn_ir_tooltip_addstation;
       
   481 						}  
       
   482 					};            
       
   483 				};
       
   484 			}
       
   485 		};
       
   486 	}
       
   487 //---------------------------------------------------------------
       
   488 //    Resource definition for toolbar of searchresults view for light theme.
       
   489 //----------------------------------------------------------------
       
   490 //
       
   491 RESOURCE AVKON_TOOLBAR r_ir_searchresults_black_toolbar 
       
   492 	{
       
   493 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   494 	items =
       
   495 		{
       
   496 		TBAR_CTRL
       
   497 			{
       
   498 			type = EAknCtButton;
       
   499 			id = EAddtoFavouritesCmd;
       
   500 			control = AVKON_BUTTON
       
   501 				{
       
   502 				states =
       
   503 					{
       
   504 					AVKON_BUTTON_STATE
       
   505 						{
       
   506 						bmpfile = KInternetRadioBitmapFile;
       
   507 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav;
       
   508 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_mask;
       
   509 						helptxt = qtn_ir_tooltip_addtofav;
       
   510 						}  
       
   511 					};            
       
   512 				};
       
   513 			},
       
   514 		TBAR_CTRL
       
   515 			{
       
   516 			type = EAknCtButton;
       
   517 			id = EListenCmd;
       
   518 			control = AVKON_BUTTON
       
   519 				{
       
   520 				states =
       
   521 					{
       
   522 					AVKON_BUTTON_STATE
       
   523 						{
       
   524 						bmpfile = KInternetRadioBitmapFile;
       
   525 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen;
       
   526 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_mask;
       
   527 						helptxt = qtn_ir_tooltip_listen;
       
   528 						}  
       
   529 					};            
       
   530 				};
       
   531 			},
       
   532 		TBAR_CTRL
       
   533 			{
       
   534 			type = EAknCtButton;
       
   535 			id = EAddStationManuallyCmd;
       
   536 			control = AVKON_BUTTON
       
   537 				{
       
   538 				states =
       
   539 					{
       
   540 					AVKON_BUTTON_STATE
       
   541 						{
       
   542 						bmpfile = KInternetRadioBitmapFile;
       
   543 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addstation;
       
   544 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addstation_mask;
       
   545 						helptxt = qtn_ir_tooltip_addstation;
       
   546 						}  
       
   547 					};            
       
   548 				};
       
   549 			}
       
   550 		};
       
   551 	}
       
   552 //---------------------------------------------------------------
       
   553 //    Resource definition for toolbar of mainview for dark theme.
       
   554 //----------------------------------------------------------------
       
   555 //
       
   556 RESOURCE AVKON_TOOLBAR r_ir_mainview_white_toolbar 
       
   557 	{
       
   558 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   559 	items =
       
   560 		{
       
   561 		TBAR_CTRL
       
   562 			{
       
   563 			type = EAknCtButton;
       
   564 			id = EFindStationsCmd;
       
   565 			control = AVKON_BUTTON
       
   566 				{
       
   567 				states =
       
   568 					{
       
   569 					AVKON_BUTTON_STATE
       
   570 						{
       
   571 						bmpfile = KInternetRadioBitmapFile;
       
   572 						bmpid = EMbmInternetradioQgn_indi_tb_find_white;
       
   573 						bmpmask = EMbmInternetradioQgn_indi_tb_find_white_mask;
       
   574 						helptxt = qtn_ir_tooltip_findst;
       
   575 						}  
       
   576 					};            
       
   577 				};
       
   578 			},
       
   579 		TBAR_CTRL
       
   580 			{
       
   581 			type = EAknCtButton;
       
   582 			id = EListenCmd;
       
   583 			control = AVKON_BUTTON
       
   584 				{
       
   585 				states =
       
   586 					{
       
   587 					AVKON_BUTTON_STATE
       
   588 						{
       
   589 						bmpfile = KInternetRadioBitmapFile;
       
   590 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen_white;
       
   591 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_white_mask;
       
   592 						helptxt = qtn_ir_tooltip_listen;
       
   593 						}  
       
   594 					};            
       
   595 				};
       
   596 			},
       
   597 		TBAR_CTRL
       
   598 			{
       
   599 			type = EAknCtButton;
       
   600 			id = EHistoryCmd;
       
   601 			control = AVKON_BUTTON
       
   602 				{
       
   603 				states =
       
   604 					{
       
   605 					AVKON_BUTTON_STATE
       
   606 						{
       
   607 						bmpfile = KInternetRadioBitmapFile;
       
   608 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_history_white;
       
   609 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_history_white_mask;
       
   610 						helptxt = qtn_ir_tooltip_history;
       
   611 						}  
       
   612 					};            
       
   613 				};
       
   614 			}
       
   615 		};
       
   616 	}
       
   617 //---------------------------------------------------------------
       
   618 //    Resource definition for toolbar of mainview for light theme.
       
   619 //----------------------------------------------------------------
       
   620 //
       
   621 RESOURCE AVKON_TOOLBAR r_ir_mainview_black_toolbar 
       
   622     {
       
   623     flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   624     items =
       
   625         {
       
   626         TBAR_CTRL
       
   627             {
       
   628             type = EAknCtButton;
       
   629             id = EFindStationsCmd;
       
   630             control = AVKON_BUTTON
       
   631                 {
       
   632                 states =
       
   633                     {
       
   634                     AVKON_BUTTON_STATE
       
   635                         {
       
   636                         bmpfile = KInternetRadioBitmapFile;
       
   637                         bmpid = EMbmInternetradioQgn_indi_tb_find;
       
   638                         bmpmask = EMbmInternetradioQgn_indi_tb_find_mask;
       
   639                         helptxt = qtn_ir_tooltip_findst;
       
   640                         }  
       
   641                     };            
       
   642                 };
       
   643             },
       
   644         TBAR_CTRL
       
   645             {
       
   646             type = EAknCtButton;
       
   647             id = EListenCmd;
       
   648             control = AVKON_BUTTON
       
   649                 {
       
   650                 states =
       
   651                     {
       
   652                     AVKON_BUTTON_STATE
       
   653                         {
       
   654                         bmpfile = KInternetRadioBitmapFile;
       
   655                         bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen;
       
   656                         bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_mask;
       
   657                         helptxt = qtn_ir_tooltip_listen;
       
   658                         }  
       
   659                     };            
       
   660                 };
       
   661             },
       
   662         TBAR_CTRL
       
   663             {
       
   664             type = EAknCtButton;
       
   665             id = EHistoryCmd;
       
   666             control = AVKON_BUTTON
       
   667                 {
       
   668                 states =
       
   669                     {
       
   670                     AVKON_BUTTON_STATE
       
   671                         {
       
   672                         bmpfile = KInternetRadioBitmapFile;
       
   673                         bmpid = EMbmInternetradioQgn_indi_irradio_tb_history;
       
   674                         bmpmask = EMbmInternetradioQgn_indi_irradio_tb_history_mask;
       
   675                         helptxt = qtn_ir_tooltip_history;
       
   676                         }  
       
   677                     };            
       
   678                 };
       
   679             }
       
   680         };
       
   681     }
       
   682  
       
   683 //---------------------------------------------------------------
       
   684 //    Resource definition for toolbar of topstations view for dark theme.
       
   685 //----------------------------------------------------------------
       
   686 //
       
   687 RESOURCE AVKON_TOOLBAR r_ir_topstations_white_toolbar 
       
   688 	{
       
   689 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   690 	items =
       
   691 		{
       
   692 		TBAR_CTRL
       
   693 			{
       
   694 			type = EAknCtButton;
       
   695 			id = EAddtoFavouritesCmd;
       
   696 			control = AVKON_BUTTON
       
   697 				{
       
   698 				states =
       
   699 					{
       
   700 					AVKON_BUTTON_STATE
       
   701 						{
       
   702 						bmpfile = KInternetRadioBitmapFile;
       
   703 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white;
       
   704 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white_mask;
       
   705 						helptxt = qtn_ir_tooltip_addtofav;
       
   706 						}  
       
   707 					};            
       
   708 				};
       
   709 			},
       
   710 		TBAR_CTRL
       
   711 			{
       
   712 			type = EAknCtButton;
       
   713 			id = EListenCmd;
       
   714 			control = AVKON_BUTTON
       
   715 				{
       
   716 				states =
       
   717 					{
       
   718 					AVKON_BUTTON_STATE
       
   719 						{
       
   720 						bmpfile = KInternetRadioBitmapFile;
       
   721 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen_white;
       
   722 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_white_mask;
       
   723 						helptxt = qtn_ir_tooltip_listen;
       
   724 						}  
       
   725 					};            
       
   726 				};
       
   727 			},
       
   728 		TBAR_CTRL
       
   729 			{
       
   730 			type = EAknCtButton;
       
   731 			id = EAddStationManuallyCmd;
       
   732 			control = AVKON_BUTTON
       
   733 				{
       
   734 				states =
       
   735 					{
       
   736 					AVKON_BUTTON_STATE
       
   737 						{
       
   738 						bmpfile = KInternetRadioBitmapFile;
       
   739 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addstation_white;
       
   740 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addstation_white_mask;
       
   741 						helptxt = qtn_ir_tooltip_addstation;
       
   742 						}  
       
   743 					};            
       
   744 				};
       
   745 			}
       
   746 		};
       
   747 	}
       
   748  
       
   749 //---------------------------------------------------------------
       
   750 //    Resource definition for toolbar of topstations view for light theme.
       
   751 //----------------------------------------------------------------
       
   752 //
       
   753 RESOURCE AVKON_TOOLBAR r_ir_topstations_black_toolbar 
       
   754 	{
       
   755 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   756 	items =
       
   757 		{
       
   758 		TBAR_CTRL
       
   759 			{
       
   760 			type = EAknCtButton;
       
   761 			id = EAddtoFavouritesCmd;
       
   762 			control = AVKON_BUTTON
       
   763 				{
       
   764 				states =
       
   765 					{
       
   766 					AVKON_BUTTON_STATE
       
   767 						{
       
   768 						bmpfile = KInternetRadioBitmapFile;
       
   769 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav;
       
   770 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_mask;
       
   771 						helptxt = qtn_ir_tooltip_addtofav;
       
   772 						}  
       
   773 					};            
       
   774 				};
       
   775 			},
       
   776 		TBAR_CTRL
       
   777 			{
       
   778 			type = EAknCtButton;
       
   779 			id = EListenCmd;
       
   780 			control = AVKON_BUTTON
       
   781 				{
       
   782 				states =
       
   783 					{
       
   784 					AVKON_BUTTON_STATE
       
   785 						{
       
   786 						bmpfile = KInternetRadioBitmapFile;
       
   787 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen;
       
   788 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_mask;
       
   789 						helptxt = qtn_ir_tooltip_listen;
       
   790 						}  
       
   791 					};            
       
   792 				};
       
   793 			},
       
   794 		TBAR_CTRL
       
   795 			{
       
   796 			type = EAknCtButton;
       
   797 			id = EAddStationManuallyCmd;
       
   798 			control = AVKON_BUTTON
       
   799 				{
       
   800 				states =
       
   801 					{
       
   802 					AVKON_BUTTON_STATE
       
   803 						{
       
   804 						bmpfile = KInternetRadioBitmapFile;
       
   805 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addstation;
       
   806 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addstation_mask;
       
   807 						helptxt = qtn_ir_tooltip_addstation;
       
   808 						}  
       
   809 					};            
       
   810 				};
       
   811 			}
       
   812 		};
       
   813 	}
       
   814 
       
   815 //---------------------------------------------------------------
       
   816 //    Resource definition for toolbar of stationsview view for dark theme.
       
   817 //----------------------------------------------------------------
       
   818 //
       
   819 RESOURCE AVKON_TOOLBAR r_ir_stationsview_white_toolbar 
       
   820 	{
       
   821 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   822 	items =
       
   823 		{
       
   824 		TBAR_CTRL
       
   825 			{
       
   826 			type = EAknCtButton;
       
   827 			id = EAddtoFavouritesCmd;
       
   828 			control = AVKON_BUTTON
       
   829 				{
       
   830 				states =
       
   831 					{
       
   832 					AVKON_BUTTON_STATE
       
   833 						{
       
   834 						bmpfile = KInternetRadioBitmapFile;
       
   835 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white;
       
   836 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white_mask;
       
   837 						helptxt = qtn_ir_tooltip_addtofav;
       
   838 						}  
       
   839 					};            
       
   840 				};
       
   841 			},
       
   842 		TBAR_CTRL
       
   843 			{
       
   844 			type = EAknCtButton;
       
   845 			id = EListenCmd;
       
   846 			control = AVKON_BUTTON
       
   847 				{
       
   848 				states =
       
   849 					{
       
   850 					AVKON_BUTTON_STATE
       
   851 						{
       
   852 						bmpfile = KInternetRadioBitmapFile;
       
   853 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen_white;
       
   854 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_white_mask;
       
   855 						helptxt = qtn_ir_tooltip_listen;
       
   856 						}  
       
   857 					};            
       
   858 				};
       
   859 			},
       
   860 		TBAR_CTRL
       
   861 			{
       
   862 			type = EAknCtButton;
       
   863 			id = EStationDetailsCmd;
       
   864 			control = AVKON_BUTTON
       
   865 				{
       
   866 				states =
       
   867 					{
       
   868 					AVKON_BUTTON_STATE
       
   869 						{
       
   870 						bmpfile = KInternetRadioBitmapFile;
       
   871 						bmpid = EMbmInternetradioQgn_indi_tb_details_white;
       
   872 						bmpmask = EMbmInternetradioQgn_indi_tb_details_white_mask;
       
   873 						helptxt = qtn_ir_tooltip_stationde;
       
   874 						}  
       
   875 					};            
       
   876 				};
       
   877 			}
       
   878 		};
       
   879 	}
       
   880  
       
   881 //---------------------------------------------------------------
       
   882 //    Resource definition for toolbar of stationsview view for light theme.
       
   883 //----------------------------------------------------------------
       
   884 //
       
   885 RESOURCE AVKON_TOOLBAR r_ir_stationsview_black_toolbar 
       
   886 	{
       
   887 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   888 	items =
       
   889 		{
       
   890 		TBAR_CTRL
       
   891 			{
       
   892 			type = EAknCtButton;
       
   893 			id = EAddtoFavouritesCmd;
       
   894 			control = AVKON_BUTTON
       
   895 				{
       
   896 				states =
       
   897 					{
       
   898 					AVKON_BUTTON_STATE
       
   899 						{
       
   900 						bmpfile = KInternetRadioBitmapFile;
       
   901 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav;
       
   902 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_mask;
       
   903 						helptxt = qtn_ir_tooltip_addtofav;
       
   904 						}  
       
   905 					};            
       
   906 				};
       
   907 			},
       
   908 		TBAR_CTRL
       
   909 			{
       
   910 			type = EAknCtButton;
       
   911 			id = EListenCmd;
       
   912 			control = AVKON_BUTTON
       
   913 				{
       
   914 				states =
       
   915 					{
       
   916 					AVKON_BUTTON_STATE
       
   917 						{
       
   918 						bmpfile = KInternetRadioBitmapFile;
       
   919 						bmpid = EMbmInternetradioQgn_indi_fmradio_tb_listen;
       
   920 						bmpmask = EMbmInternetradioQgn_indi_fmradio_tb_listen_mask;
       
   921 						helptxt = qtn_ir_tooltip_listen;
       
   922 						}  
       
   923 					};            
       
   924 				};
       
   925 			},
       
   926 		TBAR_CTRL
       
   927 			{
       
   928 			type = EAknCtButton;
       
   929 			id = EStationDetailsCmd;
       
   930 			control = AVKON_BUTTON
       
   931 				{
       
   932 				states =
       
   933 					{
       
   934 					AVKON_BUTTON_STATE
       
   935 						{
       
   936 						bmpfile = KInternetRadioBitmapFile;
       
   937 						bmpid = EMbmInternetradioQgn_indi_tb_details;
       
   938 						bmpmask = EMbmInternetradioQgn_indi_tb_details_mask;
       
   939 						helptxt = qtn_ir_tooltip_stationde;
       
   940 						}  
       
   941 					};            
       
   942 				};
       
   943 			}
       
   944 		};
       
   945 	}
       
   946 
       
   947 //---------------------------------------------------------------
       
   948 //    Resource definition for toolbar of addmanually view for dark theme.
       
   949 //----------------------------------------------------------------
       
   950 //
       
   951 RESOURCE AVKON_TOOLBAR r_ir_addmanually_white_toolbar 
       
   952 	{
       
   953 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
   954 	items =
       
   955 		{
       
   956 		TBAR_CTRL
       
   957 			{
       
   958 			type = EAknCtButton;
       
   959 			id = EButton1;
       
   960 			control = AVKON_BUTTON
       
   961 				{
       
   962 				states =
       
   963 					{
       
   964 					AVKON_BUTTON_STATE
       
   965 						{
       
   966 						bmpfile = KInternetRadioBitmapFile;
       
   967 						bmpid = EMbmInternetradioQgn_indi_tb_copy_white;
       
   968 						bmpmask = EMbmInternetradioQgn_indi_tb_copy_white_mask;
       
   969 						helptxt = qtn_ir_tooltip_copy;
       
   970 						}  
       
   971 					};            
       
   972 				};
       
   973 			},
       
   974 		TBAR_CTRL
       
   975 			{
       
   976 			type = EAknCtButton;
       
   977 			id = EButton2;
       
   978 			control = AVKON_BUTTON
       
   979 				{
       
   980 				states =
       
   981 					{
       
   982 					AVKON_BUTTON_STATE
       
   983 						{
       
   984 						bmpfile = KInternetRadioBitmapFile;
       
   985 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white;
       
   986 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_white_mask;
       
   987 						helptxt = qtn_ir_tooltip_addtofav;
       
   988 						}  
       
   989 					};            
       
   990 				};
       
   991 			},
       
   992 		TBAR_CTRL
       
   993 			{
       
   994 			type = EAknCtButton;
       
   995 			id = EButton3;
       
   996 			control = AVKON_BUTTON
       
   997 				{
       
   998 				states =
       
   999 					{
       
  1000 					AVKON_BUTTON_STATE
       
  1001 						{
       
  1002 						bmpfile = KInternetRadioBitmapFile;
       
  1003 						bmpid = EMbmInternetradioQgn_indi_tb_paste_white;
       
  1004 						bmpmask = EMbmInternetradioQgn_indi_tb_paste_white_mask;
       
  1005 						helptxt = qtn_ir_tooltip_paste;
       
  1006 						}  
       
  1007 					};            
       
  1008 				};
       
  1009 			}
       
  1010 		};
       
  1011 	}
       
  1012  
       
  1013 //---------------------------------------------------------------
       
  1014 //    Resource definition for toolbar of addmanually view for light theme.
       
  1015 //----------------------------------------------------------------
       
  1016 //
       
  1017 RESOURCE AVKON_TOOLBAR r_ir_addmanually_black_toolbar 
       
  1018 	{
       
  1019 	flags = KAknToolbarTransparent |  KAknToolbarFixed;
       
  1020 	items =
       
  1021 		{
       
  1022 		TBAR_CTRL
       
  1023 			{
       
  1024 			type = EAknCtButton;
       
  1025 			id = EButton1;
       
  1026 			control = AVKON_BUTTON
       
  1027 				{
       
  1028 				states =
       
  1029 					{
       
  1030 					AVKON_BUTTON_STATE
       
  1031 						{
       
  1032 						bmpfile = KInternetRadioBitmapFile;
       
  1033 						bmpid = EMbmInternetradioQgn_indi_tb_copy;
       
  1034 						bmpmask = EMbmInternetradioQgn_indi_tb_copy_mask;
       
  1035 						helptxt = qtn_ir_tooltip_copy;
       
  1036 						}  
       
  1037 					};            
       
  1038 				};
       
  1039 			},
       
  1040 		TBAR_CTRL
       
  1041 			{
       
  1042 			type = EAknCtButton;
       
  1043 			id = EButton2;
       
  1044 			control = AVKON_BUTTON
       
  1045 				{
       
  1046 				states =
       
  1047 					{
       
  1048 					AVKON_BUTTON_STATE
       
  1049 						{
       
  1050 						bmpfile = KInternetRadioBitmapFile;
       
  1051 						bmpid = EMbmInternetradioQgn_indi_irradio_tb_addtofav;
       
  1052 						bmpmask = EMbmInternetradioQgn_indi_irradio_tb_addtofav_mask;
       
  1053 						helptxt = qtn_ir_tooltip_addtofav;
       
  1054 						}  
       
  1055 					};            
       
  1056 				};
       
  1057 			},
       
  1058 		TBAR_CTRL
       
  1059 			{
       
  1060 			type = EAknCtButton;
       
  1061 			id = EButton3;
       
  1062 			control = AVKON_BUTTON
       
  1063 				{
       
  1064 				states =
       
  1065 					{
       
  1066 					AVKON_BUTTON_STATE
       
  1067 						{
       
  1068 						bmpfile = KInternetRadioBitmapFile;
       
  1069 						bmpid = EMbmInternetradioQgn_indi_tb_paste;
       
  1070 						bmpmask = EMbmInternetradioQgn_indi_tb_paste_mask;
       
  1071 						helptxt = qtn_ir_tooltip_paste;
       
  1072 						}  
       
  1073 					};            
       
  1074 				};
       
  1075 			}
       
  1076 		};
       
  1077 	}
       
  1078 
       
  1079     
       
  1080 //----------------------------------------------------
       
  1081 //    Resource definition for Add url view
       
  1082 //----------------------------------------------------
       
  1083 //
       
  1084 RESOURCE AVKON_VIEW r_ir_addurl
       
  1085     {
       
  1086     menubar = r_ir_menubar_addurl;
       
  1087     cba = r_irapp_softkeys_options_back_cba;
       
  1088     toolbar =r_ir_addmanually_white_toolbar;
       
  1089     toolbar =r_ir_addmanually_black_toolbar;
       
  1090     } 
       
  1091     
       
  1092 //----------------------------------------------------
       
  1093 //    Resource definition for Search Results view
       
  1094 //----------------------------------------------------
       
  1095 //
       
  1096 RESOURCE AVKON_VIEW r_ir_searchresults
       
  1097     {
       
  1098     menubar = r_ir_menubar_searchresults;
       
  1099     cba = r_irapp_softkeys_options_back_cba;
       
  1100     toolbar =r_ir_searchresults_white_toolbar;
       
  1101     toolbar =r_ir_searchresults_black_toolbar;
       
  1102     }
       
  1103 //----------------------------------------------------
       
  1104 //    Resource definition for Category view
       
  1105 //----------------------------------------------------
       
  1106 //
       
  1107 RESOURCE AVKON_VIEW r_ir_category
       
  1108     {
       
  1109     menubar = r_ir_menubar_category;
       
  1110     cba = r_irapp_softkeys_options_back_cba;
       
  1111     }
       
  1112 
       
  1113 //----------------------------------------------------
       
  1114 //    Resource definition for Stations view
       
  1115 //----------------------------------------------------
       
  1116 //
       
  1117 RESOURCE AVKON_VIEW r_ir_stations
       
  1118     {
       
  1119     menubar = r_ir_menubar_stations;
       
  1120     cba = r_irapp_softkeys_options_back_cba;
       
  1121     toolbar = r_ir_topstations_white_toolbar;
       
  1122     toolbar = r_ir_topstations_black_toolbar;
       
  1123     toolbar = r_ir_stationsview_white_toolbar;
       
  1124     toolbar = r_ir_stationsview_black_toolbar;
       
  1125     }
       
  1126    
       
  1127 //----------------------------------------------------
       
  1128 //    Resource definition for Station information view
       
  1129 //----------------------------------------------------
       
  1130 //
       
  1131 RESOURCE AVKON_VIEW r_ir_stationinfo
       
  1132     {
       
  1133     menubar = r_ir_menubar_empty;
       
  1134     cba = r_irapp_softkey_close_cba;
       
  1135     }   
       
  1136     
       
  1137 //----------------------------------------------------
       
  1138 //    Resource definition for Favourites view
       
  1139 //----------------------------------------------------
       
  1140 //
       
  1141 RESOURCE AVKON_VIEW r_ir_fav
       
  1142     {
       
  1143     menubar = r_ir_menubar_fav;
       
  1144     cba = r_irapp_softkeys_options_back_cba;
       
  1145     toolbar = r_ir_mainview_white_toolbar;
       
  1146     toolbar = r_ir_mainview_black_toolbar;
       
  1147     }
       
  1148     
       
  1149 //----------------------------------------------------
       
  1150 //    Resource definition for History view
       
  1151 //----------------------------------------------------
       
  1152 //
       
  1153 RESOURCE AVKON_VIEW r_ir_history
       
  1154     {
       
  1155     menubar = r_ir_menubar_history;
       
  1156     cba = r_irapp_softkeys_options_back_cba;
       
  1157     toolbar = r_ir_history_white_toolbar;
       
  1158     toolbar = r_ir_history_black_toolbar;
       
  1159     }  
       
  1160 
       
  1161 
       
  1162 //-----------------------------------------------------
       
  1163 //    Resource definition for First Time View
       
  1164 //-----------------------------------------------------
       
  1165  RESOURCE AVKON_VIEW r_ir_firsttime_view
       
  1166 	{
       
  1167 	menubar = r_ir_firsttime_menu_bar;
       
  1168 	cba = r_irapp_softkeys_options_back_cba;
       
  1169 	}   
       
  1170  
       
  1171 //------------------------------------------------------
       
  1172 // Menubar for first time view
       
  1173 //------------------------------------------------------
       
  1174 RESOURCE MENU_BAR r_ir_firsttime_menu_bar
       
  1175 	{
       
  1176 	titles = 
       
  1177 		{
       
  1178 		MENU_TITLE
       
  1179 			{
       
  1180 			menu_pane = r_ir_firsttime_menu; 
       
  1181 			}
       
  1182 		};
       
  1183 	} 
       
  1184    
       
  1185 RESOURCE MENU_PANE r_ir_firsttime_menu
       
  1186 	{
       
  1187 	items = 
       
  1188 		{
       
  1189 		MENU_ITEM
       
  1190 			{
       
  1191 			command = EFirstTimeSelectCmd;
       
  1192 			txt = qtn_ir_options_select; 
       
  1193 			},
       
  1194 		MENU_ITEM 
       
  1195 			{
       
  1196 			command = EGotoNowPlayingViewCmd; 
       
  1197 			txt = qtn_ir_options_now;
       
  1198 			},
       
  1199 		MENU_ITEM
       
  1200 			{
       
  1201 			command = EFirstTimeSettingsCmd;
       
  1202 			txt = qtn_ir_options_settings; 
       
  1203 			},
       
  1204 		MENU_ITEM
       
  1205 			{
       
  1206 			command = EHelpCmd;   
       
  1207 			txt = qtn_ir_options_help;
       
  1208 			},
       
  1209 		MENU_ITEM
       
  1210 			{
       
  1211 			command = EExitCmd; 
       
  1212 			txt = qtn_ir_options_exit; 
       
  1213 			}
       
  1214 		};
       
  1215 	}   
       
  1216     
       
  1217         
       
  1218        
       
  1219 // ---------------------------------------------------------
       
  1220 //   
       
  1221 //   r_main_menubar
       
  1222 //   Main menubar
       
  1223 //
       
  1224 // ---------------------------------------------------------
       
  1225 //
       
  1226 RESOURCE MENU_BAR r_main_menubar
       
  1227     {
       
  1228     titles =
       
  1229         {
       
  1230         MENU_TITLE 
       
  1231             {
       
  1232             menu_pane = r_main_menu;
       
  1233             }
       
  1234         };
       
  1235     }
       
  1236 
       
  1237 
       
  1238 // ---------------------------------------------------------
       
  1239 //   
       
  1240 //   r_main_menu
       
  1241 //   Menu for "Options"
       
  1242 //   See BookstoreDb.hrh for commands
       
  1243 //
       
  1244 // ---------------------------------------------------------
       
  1245 //
       
  1246 RESOURCE MENU_PANE r_main_menu
       
  1247     {
       
  1248     items = 
       
  1249         {
       
  1250         MENU_ITEM { command = ESelectCmd; txt = qtn_ir_options_select; },
       
  1251 	MENU_ITEM { command = EExitCmd; txt = qtn_ir_options_exit; }
       
  1252         };
       
  1253     } 
       
  1254 /////////////////////////////////////////////////////////////////////////////////
       
  1255 // EMPTY MENU BAR
       
  1256 //////////////////////////////////////////////////////////////////////////////////// 
       
  1257 
       
  1258 RESOURCE MENU_BAR r_ir_menubar_empty
       
  1259     {
       
  1260     titles =
       
  1261         {
       
  1262         MENU_TITLE {menu_pane = r_ir_menu_empty;}
       
  1263         };
       
  1264     }
       
  1265 
       
  1266 RESOURCE MENU_PANE r_ir_menu_empty
       
  1267     {
       
  1268     items = 
       
  1269         {
       
  1270         };
       
  1271     }
       
  1272     
       
  1273 /////////////////////////////////////////////////////////////////////////////////
       
  1274 // MENUBAR FOR MAIN CHOICE VIEW;
       
  1275 //////////////////////////////////////////////////////////////////////////////////// 
       
  1276 
       
  1277 RESOURCE MENU_BAR r_ir_menubar_mainchoice
       
  1278     {
       
  1279     titles =
       
  1280         {
       
  1281         MENU_TITLE {menu_pane = r_IR_menu_mainchoice;}
       
  1282         };
       
  1283     }
       
  1284 
       
  1285 RESOURCE MENU_PANE r_IR_menu_mainchoice
       
  1286     {
       
  1287     items = 
       
  1288         {
       
  1289 		MENU_ITEM {command = ESelectCmd; txt = qtn_ir_options_select;},
       
  1290         MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  1291         MENU_ITEM {command = EAddStationManuallyCmd;   txt = qtn_ir_options_add_manually;},
       
  1292         MENU_ITEM {command = EAddtoStationsCmd;   txt = qtn_ir_options_add;},
       
  1293         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings ;},
       
  1294         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help ;},
       
  1295         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1296         };
       
  1297     }
       
  1298  
       
  1299 /////////////////////////////////////////////////////////////////////////////////
       
  1300 // MENUBAR FOR PLS VIEW;
       
  1301 //////////////////////////////////////////////////////////////////////////////////// 
       
  1302     
       
  1303 RESOURCE MENU_BAR r_ir_menubar_pls
       
  1304     {
       
  1305     titles =
       
  1306         {
       
  1307         MENU_TITLE {menu_pane = r_IR_menu_pls;}
       
  1308         };
       
  1309     }
       
  1310  RESOURCE MENU_PANE r_IR_menu_pls
       
  1311     {
       
  1312     items = 
       
  1313         {
       
  1314     	MENU_ITEM {command = EGotoNowPlayingViewCmd; txt = qtn_ir_options_now;},
       
  1315         MENU_ITEM {command = EGotoMainView;   txt = qtn_ir_options_mainview;},
       
  1316         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  1317         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help;},
       
  1318         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1319         };
       
  1320     }
       
  1321 //////////////////////////////////////////////////////////////////////////////////// 
       
  1322 // MENUBAR FOR STATION DIRECTORY VIEW
       
  1323 //////////////////////////////////////////////////////////////////////////////////// 
       
  1324 
       
  1325 RESOURCE MENU_BAR r_ir_menubar_directory
       
  1326     {
       
  1327     titles =
       
  1328         {
       
  1329         MENU_TITLE {menu_pane = r_ir_menu_directory;}
       
  1330         };
       
  1331     }
       
  1332 
       
  1333 RESOURCE MENU_PANE r_ir_menu_directory
       
  1334     {
       
  1335     items = 
       
  1336         {
       
  1337 		MENU_ITEM {command = ESelectCmd; txt = qtn_ir_options_select;},
       
  1338         MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},	
       
  1339         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings ;},
       
  1340         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help ;},
       
  1341         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1342         };
       
  1343     }
       
  1344 ///////////////////////////////////////////////////////////////////////////////////////////
       
  1345 // MENUBAR FOR CATEGORY VIEW
       
  1346 //////////////////////////////////////////////////////////////////////////////////// 
       
  1347 
       
  1348 RESOURCE MENU_BAR r_ir_menubar_category
       
  1349     {
       
  1350     titles =
       
  1351         {
       
  1352         MENU_TITLE {menu_pane = r_ir_menu_category;}
       
  1353         };
       
  1354     }
       
  1355 
       
  1356 RESOURCE MENU_PANE r_ir_menu_category
       
  1357     {
       
  1358     items = 
       
  1359         {
       
  1360 		MENU_ITEM {command = ESelectCmd; txt = qtn_ir_options_select;},
       
  1361         MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  1362         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  1363         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help;},
       
  1364         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1365         };
       
  1366     } 
       
  1367     
       
  1368 ///////////////////////////////////////////////////////////////////////////////////////////
       
  1369 // MENUBAR FOR STATIONS VIEW
       
  1370 //////////////////////////////////////////////////////////////////////////////////// 
       
  1371 
       
  1372 RESOURCE MENU_BAR r_ir_menubar_stations
       
  1373     {
       
  1374     titles =
       
  1375         {
       
  1376         MENU_TITLE {menu_pane = r_ir_menu_stations;}
       
  1377         };
       
  1378     }
       
  1379 
       
  1380 RESOURCE MENU_PANE r_ir_menu_stations
       
  1381     {
       
  1382     items = 
       
  1383         {
       
  1384 		MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},	
       
  1385         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings ;},
       
  1386         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help ;},
       
  1387         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1388         };
       
  1389     }
       
  1390     
       
  1391 ///////////////////////////////////////////////////////////////////////////////////////////
       
  1392 // MENUBAR FOR NOW PLAYING VIEW
       
  1393 //////////////////////////////////////////////////////////////////////////////////// 
       
  1394 // ---------------------------------------------------------------------------
       
  1395 // r_ir_nowplaying_view_ByteCounter_layout
       
  1396 // Portrait layout for the ByteCounter . 
       
  1397 // ---------------------------------------------------------------------------
       
  1398 //
       
  1399 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_ByteCounter_layout
       
  1400 	{
       
  1401 	l=5; t=56-KIRStatusPaneHeightPortrait; W = 115; H = 30;
       
  1402 	}
       
  1403 // ---------------------------------------------------------------------------
       
  1404 // r_ir_nowplaying_view_ByteCounter_layout_mirrored
       
  1405 // Portrait layout for the ByteCounter . 
       
  1406 // ---------------------------------------------------------------------------
       
  1407 //
       
  1408 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_ByteCounter_layout_mirrored
       
  1409 	{
       
  1410 	t=56-KIRStatusPaneHeightPortrait; r=120; W = 115; H = 30;
       
  1411 	}
       
  1412 
       
  1413 // ---------------------------------------------------------------------------
       
  1414 // r_ir_nowplaying_view_ByteCounter_layout_Landscape
       
  1415 // LandScape layout for the ByteCounter . 
       
  1416 // ---------------------------------------------------------------------------
       
  1417 //
       
  1418 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_ByteCounter_layout_Landscape
       
  1419 	{
       
  1420 	l=275; t=90-KIRStatusPaneHeightLandscape; W = 115; H = 30;
       
  1421 	}
       
  1422 // ---------------------------------------------------------------------------
       
  1423 // r_ir_nowplaying_view_ByteCounter_layout_Landscape_mirrored
       
  1424 // LandScape layout for the ByteCounter . 
       
  1425 // ---------------------------------------------------------------------------
       
  1426 //
       
  1427 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_ByteCounter_layout_Landscape_mirrored
       
  1428 	{
       
  1429 	t=90-KIRStatusPaneHeightLandscape; r=390; W = 115; H = 30;
       
  1430 	}
       
  1431 
       
  1432 //--------------------------------------------------------------------------
       
  1433 // r_ir_nowplaying_view_BitRate_layout
       
  1434 // Portrait layout for the BitRate . 
       
  1435 // ---------------------------------------------------------------------------
       
  1436 //
       
  1437 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_BitRate_layout
       
  1438 	{
       
  1439 	l=255; t=56-KIRStatusPaneHeightPortrait; W = 115; H = 30;
       
  1440 	}
       
  1441 // ---------------------------------------------------------------------------
       
  1442 // r_ir_nowplaying_view_BitRate_layout_mirrored
       
  1443 // Portrait layout for the Bitrate. 
       
  1444 // ---------------------------------------------------------------------------
       
  1445 //
       
  1446 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_BitRate_layout_mirrored
       
  1447 	{
       
  1448 	t=56-KIRStatusPaneHeightPortrait; r= 385;W = 115; H = 30;
       
  1449 	}
       
  1450 
       
  1451 // r_ir_nowplaying_view_BitRate_layout_LandScape
       
  1452 // LandScape layout for the BitRate . 
       
  1453 // ---------------------------------------------------------------------------
       
  1454 //
       
  1455 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_BitRate_layout_LandScape
       
  1456 	{
       
  1457 	l=400; t=90-KIRStatusPaneHeightLandscape; W = 115; H = 30;
       
  1458 	}
       
  1459 // ---------------------------------------------------------------------------
       
  1460 // r_ir_nowplaying_view_BitRate_layout_LandScape_mirrored
       
  1461 // LandScape layout for the Bitrate. 
       
  1462 // ---------------------------------------------------------------------------
       
  1463 //
       
  1464 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_BitRate_layout_LandScape_mirrored
       
  1465 	{
       
  1466 	t=90-KIRStatusPaneHeightLandscape;r=515; W = 115; H = 30;
       
  1467 	}
       
  1468 
       
  1469 // ---------------------------------------------------------------------------
       
  1470 // r_ir_nowplaying_view_logo_bitmap_layout
       
  1471 // Portrait layout for the logo bitmap. 
       
  1472 // ---------------------------------------------------------------------------
       
  1473 //
       
  1474 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_logo_bitmap_layout
       
  1475     {
       
  1476     l = 0; t = 99 - KIRStatusPaneHeightPortrait; W = 360; H = 360;
       
  1477     }
       
  1478 
       
  1479 // ---------------------------------------------------------------------------
       
  1480 // r_ir_nowplaying_view_logo_bitmap_layout_mirrored
       
  1481 // Mirrored portrait layout for the logo bitmap.
       
  1482 // ---------------------------------------------------------------------------
       
  1483 //
       
  1484 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_logo_bitmap_layout_mirrored
       
  1485     {
       
  1486     t = 99 - KIRStatusPaneHeightPortrait; r = 360; W = 360; H = 360; 
       
  1487     }
       
  1488 
       
  1489 // ---------------------------------------------------------------------------
       
  1490 // r_ir_nowplaying_view_logo_bitmap_layout_landscape
       
  1491 // Landscape layout for the logo bitmap.
       
  1492 // ---------------------------------------------------------------------------
       
  1493 //
       
  1494 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_logo_bitmap_layout_landscape
       
  1495     {
       
  1496     l = 0; t = 84 - KIRStatusPaneHeightLandscape; W = 265; H = 265;
       
  1497     }
       
  1498 
       
  1499 // ---------------------------------------------------------------------------
       
  1500 // r_ir_nowplaying_view_logo_bitmap_layout_landscape_mirrored
       
  1501 // Mirrored landscape layout for the logo bitmap.
       
  1502 // ---------------------------------------------------------------------------
       
  1503 //
       
  1504 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_logo_bitmap_layout_landscape_mirrored
       
  1505     {
       
  1506     t = 84 - KIRStatusPaneHeightLandscape; r = 265; W = 265; H = 265;
       
  1507     }
       
  1508 
       
  1509 // ---------------------------------------------------------------------------
       
  1510 // r_ir_nowplaying_view_station_information_layout
       
  1511 // Portrait layout for the station information container.
       
  1512 // ---------------------------------------------------------------------------
       
  1513 //
       
  1514 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_station_information_layout
       
  1515     {
       
  1516     l = 10; t = 460 - KIRStatusPaneHeightPortrait; W = 340; H = 58;
       
  1517     }
       
  1518 
       
  1519 // ---------------------------------------------------------------------------
       
  1520 // r_ir_nowplaying_view_station_information_layout_mirrored
       
  1521 // Mirrored portrait layout for the station information container.
       
  1522 // ---------------------------------------------------------------------------
       
  1523 //
       
  1524 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_station_information_layout_mirrored
       
  1525     {
       
  1526     t = 460 - KIRStatusPaneHeightPortrait; r = 350; W = 340; H = 58;
       
  1527     }
       
  1528 
       
  1529 // ---------------------------------------------------------------------------
       
  1530 // r_ir_nowplaying_view_station_information_layout_landscape
       
  1531 // Landscape layout for the station information container.
       
  1532 // ---------------------------------------------------------------------------
       
  1533 //
       
  1534 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_station_information_layout_landscape
       
  1535     {
       
  1536     l = 275; t = 174 - KIRStatusPaneHeightLandscape; W = 220; H = 28;
       
  1537     }
       
  1538 
       
  1539 // ---------------------------------------------------------------------------
       
  1540 // r_ir_nowplaying_view_station_information_layout_landscape_mirrored
       
  1541 // Mirrored landscape layout for the station information container.
       
  1542 // ---------------------------------------------------------------------------
       
  1543 //
       
  1544 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_station_information_layout_landscape_mirrored
       
  1545     {
       
  1546     t = 174 - KIRStatusPaneHeightLandscape; r = 495; W = 220; H = 28;
       
  1547     }
       
  1548 
       
  1549 // ---------------------------------------------------------------------------
       
  1550 // r_ir_nowplaying_view_metadata_layout_landscape
       
  1551 // Landscape layout for the rds data layout.
       
  1552 // ---------------------------------------------------------------------------
       
  1553 //
       
  1554 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_metadata_layout_landscape
       
  1555     {
       
  1556     l = 275; t = 204 - KIRStatusPaneHeightLandscape; W = 220; H = 28;
       
  1557     }
       
  1558 
       
  1559 // ---------------------------------------------------------------------------
       
  1560 // r_ir_nowplaying_view_metadata_layout_landscape_mirrored
       
  1561 // Mirrored landscape layout for the rds data layout.
       
  1562 // ---------------------------------------------------------------------------
       
  1563 //
       
  1564 RESOURCE AVKON_LAYOUT_CONTROL r_ir_nowplaying_view_metadata_layout_landscape_mirrored
       
  1565     {
       
  1566     t = 204 - KIRStatusPaneHeightLandscape; r = 495; W = 220; H = 27;
       
  1567     }
       
  1568 
       
  1569 RESOURCE MENU_BAR r_ir_menubar_nowplaying
       
  1570     {
       
  1571     titles =
       
  1572         {
       
  1573         MENU_TITLE {menu_pane = r_ir_menu_nowplaying;}
       
  1574         };
       
  1575     }
       
  1576 
       
  1577 RESOURCE MENU_PANE r_ir_menu_nowplaying
       
  1578     {
       
  1579     items = 
       
  1580         {
       
  1581         MENU_ITEM {command = EGotoMainView;   txt = qtn_ir_options_mainview;},
       
  1582     	MENU_ITEM {command = EStationDetailsCmd;   txt = qtn_ir_options_info;},
       
  1583         MENU_ITEM {command = EFmRecOrPhone;   txt = qtn_ir_options_fmtrans;},
       
  1584         MENU_ITEM {command = EAddtoStationsCmd;   txt = qtn_ir_options_add ;},
       
  1585         MENU_ITEM {command = EStereoMode;   txt = qtn_ir_options_stereowidening;
       
  1586         											cascade=R_NOW_SUBMENU;},
       
  1587         MENU_ITEM {command = EEqualizer;   txt = qtn_ir_options_equalizer;},
       
  1588         MENU_ITEM {command = EHistory;   txt = qtn_ir_options_history;},
       
  1589         MENU_ITEM {command = EFindInShop; txt = qtn_ir_options_findnmusicstore;},
       
  1590 	    MENU_ITEM {command = EGotoMusicStore; txt = qtn_ir_options_gotomusicstore;},//To be included in the code in Now playing view
       
  1591         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  1592         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help;},
       
  1593         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1594         };
       
  1595     }  
       
  1596 RESOURCE MENU_PANE R_NOW_SUBMENU
       
  1597     {
       
  1598     items = 
       
  1599         {
       
  1600 		MENU_ITEM {command = EOnCmd; txt = qtn_ir_options_on; flags=EEikMenuItemCheckBox;},
       
  1601 		MENU_ITEM {command = EOffCmd; txt = qtn_ir_options_off; flags = EEikMenuItemCheckBox ;}
       
  1602         };
       
  1603     }
       
  1604     
       
  1605 ///////////////////////////////////////////////////////////////////////////////////////////
       
  1606 // MENUBAR FOR ADD URL VIEW
       
  1607 //////////////////////////////////////////////////////////////////////////////////// 
       
  1608 
       
  1609 RESOURCE MENU_BAR r_ir_menubar_addurl
       
  1610     {
       
  1611     titles =
       
  1612         {
       
  1613         MENU_TITLE {menu_pane = r_ir_menu_addurl;}
       
  1614         };
       
  1615     }
       
  1616 
       
  1617 RESOURCE MENU_PANE r_ir_menu_addurl
       
  1618     {
       
  1619     items = 
       
  1620         {
       
  1621         MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  1622         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings ;},
       
  1623         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help ;},
       
  1624         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1625         };
       
  1626     } 
       
  1627 ///////////////////////////////////////////////////////////////////////////////////////////
       
  1628 // MENUBAR FOR SEARCH VIEW
       
  1629 //////////////////////////////////////////////////////////////////////////////////// 
       
  1630 
       
  1631 RESOURCE MENU_BAR r_ir_menubar_search
       
  1632     {
       
  1633     titles =
       
  1634         {
       
  1635         MENU_TITLE {menu_pane = r_ir_menu_search;}
       
  1636         };
       
  1637     }
       
  1638 
       
  1639 RESOURCE MENU_PANE r_ir_menu_search
       
  1640     {
       
  1641     items = 
       
  1642         {
       
  1643 		MENU_ITEM {command = ESearchCmd; txt = qtn_ir_options_search;},
       
  1644 		MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  1645 		MENU_ITEM {command = EAddStationManuallyCmd;   txt = qtn_ir_options_add_manually;},
       
  1646 		MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  1647 		MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help;},
       
  1648 		MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1649         };
       
  1650     } 
       
  1651 
       
  1652 ///////////////////////////////////////////////////////////////////////////////////////////
       
  1653 // MENUBAR FOR SEARCH RESULTS VIEW
       
  1654 //////////////////////////////////////////////////////////////////////////////////// 
       
  1655 
       
  1656 RESOURCE MENU_BAR r_ir_menubar_searchresults
       
  1657     {
       
  1658     titles =
       
  1659         {
       
  1660         MENU_TITLE {menu_pane = r_ir_menu_searchresults;}
       
  1661         };
       
  1662     }
       
  1663 
       
  1664 RESOURCE MENU_PANE r_ir_menu_searchresults
       
  1665     {
       
  1666     items = 
       
  1667         {
       
  1668 	  	MENU_ITEM {command = ESearchCmd; txt = qtn_ir_options_searchag;},
       
  1669         MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  1670         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  1671         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help;},
       
  1672         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1673         };
       
  1674     } 
       
  1675 /////////////////////////////////////////////////////////////////////////////////
       
  1676 // MENUBAR FOR SETTINGS VIEW;
       
  1677 //////////////////////////////////////////////////////////////////////////////////// 
       
  1678 
       
  1679 RESOURCE MENU_BAR r_ir_menubar_settings
       
  1680     {
       
  1681     titles =
       
  1682         {
       
  1683         MENU_TITLE {menu_pane = r_IR_menu_settings;}
       
  1684         };
       
  1685     }
       
  1686 
       
  1687 RESOURCE MENU_PANE r_IR_menu_settings
       
  1688     {
       
  1689     items = 
       
  1690         {
       
  1691 		MENU_ITEM {command = EIRCmdChangeSetting; txt = qtn_ir_options_change;},
       
  1692 		MENU_ITEM {command = EGotoNowPlayingViewCmd; txt = qtn_ir_options_now;},
       
  1693 		MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help;},
       
  1694 		MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  1695         };
       
  1696     }
       
  1697 
       
  1698 RESOURCE MENU_BAR r_ir_menubar_fav
       
  1699     {
       
  1700     titles =
       
  1701         {
       
  1702          MENU_TITLE {menu_pane = r_ir_menu_fav;}
       
  1703         };
       
  1704     }
       
  1705 RESOURCE MENU_PANE r_ir_menu_fav
       
  1706     {
       
  1707     items = 
       
  1708         {
       
  1709 		MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  1710 	    MENU_ITEM {command = EAddStationManuallyCmd; txt = qtn_ir_options_add_manually;},	
       
  1711 	    MENU_ITEM {command = EAddtoStationsCmd;   txt = qtn_ir_options_add ;},
       
  1712         MENU_ITEM {command = EDeleteCmd;   txt = qtn_ir_suboptions_delete;}	,
       
  1713 		MENU_ITEM {command = EEditStationsCmd;   txt = qtn_ir_options_editstation;},
       
  1714 		MENU_ITEM {command = EStationsCmd; txt = qtn_ir_options_station; 
       
  1715 										cascade = R_IR_MENU_STATIONS_SUB_MENU;},
       
  1716 		MENU_ITEM {command = EMarkUnmark;cascade = r_ir_menupane_markable_list;
       
  1717 											txt = qtn_ir_options_markunmark;},
       
  1718         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  1719         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help ;},
       
  1720         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}        };
       
  1721     }
       
  1722     
       
  1723   
       
  1724      
       
  1725 
       
  1726 RESOURCE MENU_PANE R_IR_MENU_STATIONS_SUB_MENU
       
  1727     {
       
  1728     items = 
       
  1729         {
       
  1730 		MENU_ITEM {command = EStationDetailsCmd; txt = qtn_ir_suboptions_details;},
       
  1731 		MENU_ITEM {command = EMoveCmd; txt = qtn_ir_suboptions_move;},
       
  1732         MENU_ITEM {command = EDeleteCmd;   txt = qtn_ir_suboptions_delete;}	
       
  1733         };
       
  1734     }
       
  1735 
       
  1736 ////////////////////////////////////////////////////////////////////////////////////////////    
       
  1737 // CBA for Terms and condtions view
       
  1738 //////////////////////////////////////////////////////////////////////////////////// 
       
  1739 
       
  1740 RESOURCE CBA r_ir_cba_continue_exit
       
  1741 	{
       
  1742 	buttons =
       
  1743 		{ 
       
  1744 		CBA_BUTTON { txt =qtn_ir_cost_softkey_continue; id = EIRContinue; },
       
  1745 		CBA_BUTTON { txt =qtn_ir_cost_softkey_exit; id = EIRExit;}
       
  1746 		};
       
  1747 	}
       
  1748 
       
  1749 RESOURCE CBA r_ir_cba_done_cancel
       
  1750 	{
       
  1751 	buttons =
       
  1752 		{ 
       
  1753 		CBA_BUTTON { txt =qtn_ir_softkey_done; id = EAknSoftkeyDone; },
       
  1754 		CBA_BUTTON { txt =qtn_ir_softkey_cancel; id = EAknSoftkeyCancel;}
       
  1755 		};
       
  1756 	}
       
  1757 
       
  1758 RESOURCE CBA r_ir_cba_accept_decline 
       
  1759 	{
       
  1760 	buttons = 
       
  1761 		{ 
       
  1762 		CBA_BUTTON { txt =qtn_ir_terms_softkey_accept; id = EIRAccept; },
       
  1763 		CBA_BUTTON { txt =qtn_ir_terms_softkey_decline; id = EIRExit;}
       
  1764 		};
       
  1765 	}
       
  1766 
       
  1767 //////////////////////////////////////////////
       
  1768 ////for query dialog
       
  1769 ///////////////////////////////////////////////////
       
  1770 
       
  1771 RESOURCE DIALOG R_QUERY_DELETION
       
  1772   {
       
  1773     flags = EGeneralQueryFlags;
       
  1774  	buttons = R_AVKON_SOFTKEYS_YES_NO;
       
  1775     items =
       
  1776         {
       
  1777         DLG_LINE
       
  1778             {
       
  1779             type = EAknCtQuery;
       
  1780             id = EGeneralQuery;
       
  1781             control = AVKON_CONFIRMATION_QUERY
       
  1782                 {
       
  1783                 layout = EConfirmationQueryLayout;
       
  1784                 };
       
  1785             }
       
  1786         };
       
  1787     }
       
  1788 
       
  1789 //---------FOR OPERATION SETTINGS
       
  1790 
       
  1791 //ISDS BASE URL
       
  1792 RESOURCE TBUF r_irapp_base_isds_url {buf="http://djmagnus.edelkey.net/isds";}
       
  1793 //------------------------------
       
  1794 //Text for Cost warning view
       
  1795 RESOURCE TBUF r_irapp_cost_warning_title {buf = qtn_ir_cost_title;}
       
  1796 
       
  1797 RESOURCE TBUF r_irapp_cost_warning_info {buf = qtn_ir_cost_warning;} 
       
  1798 RESOURCE TBUF r_irapp_cost_warning_heading {buf = qtn_ir_cost_heading;}
       
  1799 
       
  1800 
       
  1801 //-------Terms&Conditions
       
  1802 RESOURCE TBUF r_irapp_terms_conditions_heading {buf = qtn_ir_terms_heading;}
       
  1803 RESOURCE TBUF r_irapp_mainheading {buf= qtn_ir_apps_grid;}
       
  1804 
       
  1805 
       
  1806 //-------Main Menu
       
  1807 
       
  1808 RESOURCE TBUF r_irapp_main_menu_title {buf =qtn_ir_main_title;}
       
  1809 
       
  1810 RESOURCE TBUF r_irapp_main_discover_expand {buf = qtn_ir_main_discover_expanded;}
       
  1811 RESOURCE TBUF r_irapp_findstation_directory {buf =qtn_ir_findst_browsesds ;}
       
  1812 
       
  1813 RESOURCE TBUF r_irapp_main_menu_search {buf = qtn_ir_main_searchindir;}
       
  1814 RESOURCE TBUF r_irapp_main_search_expand {buf = qtn_ir_findst_search_ensrhterm;}
       
  1815 RESOURCE TBUF r_irapp_findstation_search_expand {buf =qtn_ir_findst_search_ensrhterm;}  
       
  1816 
       
  1817 RESOURCE TBUF r_irapp_main_menu_last {buf = qtn_ir_main_last;}
       
  1818 RESOURCE TBUF r_irapp_main_menu_now {buf = qtn_ir_main_now;}
       
  1819 RESOURCE TBUF r_irapp_findstation_addstationmanually {buf = qtn_ir_options_add_manually ;}
       
  1820 RESOURCE TBUF r_irapp_findstation_addstationmanually_expand {buf = qtn_ir_findst_addtofav ;}
       
  1821 RESOURCE TBUF r_irapp_favourites_list_empty {buf = qtn_ir_main_descriptive_text ;}
       
  1822 RESOURCE TBUF r_irapp_favourites_prog_deleting {buf = qtn_ir_main_prog_deleting ;}
       
  1823 RESOURCE TBUF r_irapp_stationlist_nomatches {buf = qtn_ir_stationlist_nomatches ;}
       
  1824 //---------Settings view
       
  1825 RESOURCE TBUF r_irapp_settings {buf = qtn_ir_settings_title;}
       
  1826 RESOURCE TBUF r_irapp_settings_accessPoint {buf = qtn_ir_settings_access;}
       
  1827 RESOURCE TBUF r_irapp_settings_accessPoint_expand {buf = qtn_ir_access_ask;}
       
  1828 RESOURCE TBUF r_irapp_settings_select_accesspoint {buf = qtn_ir_access_title;}
       
  1829 
       
  1830 RESOURCE TBUF r_irapp_settings_gprsbitrate {buf = qtn_ir_settings_gprs;}
       
  1831 RESOURCE TBUF r_irapp_settings_3gbitrate {buf = qtn_ir_settings_3g;}
       
  1832 RESOURCE TBUF r_irapp_settings_wifibitrate {buf = qtn_ir_settings_wifi;}
       
  1833 
       
  1834 RESOURCE TBUF r_irapp_settings_standardquality {buf = qtn_ir_bitrate_standard;}
       
  1835 RESOURCE TBUF r_irapp_settings_highquality {buf = qtn_ir_bitrate_high;}
       
  1836 RESOURCE TBUF r_irapp_settings_bestquality {buf = qtn_ir_bitrate_best;}
       
  1837 
       
  1838 
       
  1839 //--------------------------------New Settings view ---------------------------------------
       
  1840 
       
  1841 
       
  1842 //---------Station Directory
       
  1843 RESOURCE TBUF r_irapp_stat_dir_title {buf = qtn_ir_discover_title;}
       
  1844 RESOURCE TBUF r_irapp_stat_dir_genre {buf = qtn_ir_discover_genre;}
       
  1845 RESOURCE TBUF r_irapp_stat_dir_genre_expand {buf = qtn_ir_discover_genre_expanded;}
       
  1846 RESOURCE TBUF r_irapp_stat_dir_language {buf = qtn_ir_discover_langauge;}
       
  1847 RESOURCE TBUF r_irapp_stat_dir_language_Expand {buf = qtn_ir_discover_language_expanded;}
       
  1848 RESOURCE TBUF r_irapp_stat_dir_country {buf = qtn_ir_discover_country_region;}
       
  1849 RESOURCE TBUF r_irapp_stat_dir_country_expand {buf = qtn_ir_discover_staticountryreg;}
       
  1850 RESOURCE TBUF r_irapp_stat_dir_top {buf = qtn_ir_discover_top;}
       
  1851 RESOURCE TBUF r_irapp_stat_dir_top_expand {buf = qtn_ir_discover_beststations;}
       
  1852 
       
  1853 //-----Genre Station List
       
  1854 RESOURCE TBUF r_irapp_genre_statlist_title {buf = qtn_ir_genre_title;}
       
  1855 RESOURCE TBUF r_irapp_genre_statlist_title_expand {buf = qtn_ir_genre_list_expanded;}
       
  1856 RESOURCE TBUF r_irapp_language_statlist_title {buf = qtn_ir_language_title;}
       
  1857 RESOURCE TBUF r_irapp_language_statlist_title_Expand {buf = qtn_ir_language_list_expanded;}
       
  1858 RESOURCE TBUF r_irapp_country_statlist_title {buf = qtn_ir_countryregion_title;}
       
  1859 RESOURCE TBUF r_irapp_country_statlist_title_Expand {buf = qtn_ir_country_list_expanded;}
       
  1860 RESOURCE TBUF r_irapp_top_statlist_title {buf = qtn_ir_top_title;}
       
  1861 
       
  1862 
       
  1863 //----------Loading Overlay
       
  1864 RESOURCE TBUF r_irapp_loading_buffering {buf = qtn_ir_now_wait_buffering;}
       
  1865 RESOURCE TBUF r_irapp_loading_loading {buf = qtn_ir_loading_loading;}
       
  1866 RESOURCE TBUF r_irapp_loading_searching {buf = qtn_ir_loading_searching;}
       
  1867 RESOURCE TBUF r_irapp_loading_buffering_percentage {buf = qtn_ir_now_wait_buffering_perc;}
       
  1868 
       
  1869 //----------------Now playing
       
  1870 RESOURCE TBUF r_irapp_nowplaying_title {buf = qtn_ir_main_title;}
       
  1871 RESOURCE TBUF r_irapp_nowplaying_bitrate {buf = qtn_ir_now_bitrate;}
       
  1872 RESOURCE TBUF r_irapp_nowplaying_bytecounter {buf = qtn_ir_now_bytecountermb;}
       
  1873 RESOURCE TBUF r_irapp_nowplaying_bytecounter_deci {buf = qtn_ir_now_deci_bytecountermb;}
       
  1874 
       
  1875 
       
  1876 //--------------Add Manually
       
  1877 RESOURCE TBUF r_irapp_addmanually_title {buf =  qtn_ir_url_title;}
       
  1878 RESOURCE TBUF r_irapp_cancel {buf =  qtn_ir_softkey_cancel;}
       
  1879 RESOURCE TBUF r_irapp_save {buf = qtn_ir_tooltip_addtofav;}
       
  1880 RESOURCE TBUF r_irapp_copy {buf = qtn_ir_tooltip_copy;}
       
  1881 RESOURCE TBUF r_irapp_paste {buf = qtn_ir_tooltip_paste;}
       
  1882 RESOURCE TBUF r_irapp_addmanually_intro {buf = qtn_ir_url_intro;}
       
  1883 RESOURCE TBUF r_irapp_addmanually_address {buf = qtn_ir_url_address;}
       
  1884 RESOURCE TBUF r_irapp_addmanually_http {buf = qtn_ir_url_http;}
       
  1885 RESOURCE TBUF r_irapp_addmanually_name {buf = qtn_ir_url_name;}
       
  1886 RESOURCE TBUF r_irapp_editstation_title{buf = qtn_ir_edit_title;}
       
  1887 
       
  1888 
       
  1889 //--------------Stations(Favourites)
       
  1890 RESOURCE TBUF  r_irapp_stations_title {buf =  qtn_ir_stations_title;}
       
  1891 RESOURCE TBUF  r_irapp_stations_default {buf =  qtn_ir_stations_default;}
       
  1892 RESOURCE TBUF  r_irapp_stations_find {buf = qtn_ir_stations_find;}
       
  1893 RESOURCE TBUF  r_irapp_stations_numbering {buf = qtn_ir_list_memory_location;}
       
  1894 
       
  1895 //----------Station Information view
       
  1896 RESOURCE TBUF  r_irapp_stationinfo_title  		{buf = qtn_ir_info_details_title;}
       
  1897 RESOURCE TBUF  r_irapp_stationinfo_name 		{buf = qtn_ir_info_details_name;}
       
  1898 RESOURCE TBUF  r_irapp_stationinfo_description  {buf = qtn_ir_info_details_description;}
       
  1899 RESOURCE TBUF  r_irapp_stationinfo_genre 		{buf = qtn_ir_info_details_genre;}
       
  1900 RESOURCE TBUF  r_irapp_stationinfo_language 	{buf = qtn_ir_info_details_language;}
       
  1901 RESOURCE TBUF  r_irapp_stationinfo_country 		{buf = qtn_ir_info_details_countryregi;}
       
  1902 RESOURCE TBUF  r_irapp_stationinfo_type 		{buf = qtn_ir_info_details_type;}
       
  1903 RESOURCE TBUF  r_irapp_stationinfo_stream 		{buf = qtn_ir_info_details_streams;}
       
  1904 RESOURCE TBUF  r_irapp_stationinfo_typemanual 	{buf = qtn_ir_info_details_type_manual;}
       
  1905 RESOURCE TBUF  r_irapp_stationinfo_typeisds 	{buf = qtn_ir_info_details_type_isds;}
       
  1906 RESOURCE TBUF  r_irapp_stationinfo_bitrate 		{buf = qtn_ir_info_details_bitrate;}
       
  1907 RESOURCE TBUF  r_irapp_stationinfo_unnamed 		{buf = qtn_ir_info_details_unnamed;}
       
  1908 
       
  1909 RESOURCE TBUF r_irapp_results_none {buf = qtn_ir_results_none;}
       
  1910 RESOURCE TBUF r_irapp_Search_String{buf = qtn_ir_findst_search_ensrhterm;}
       
  1911 
       
  1912 
       
  1913 //------General
       
  1914 RESOURCE TBUF r_irapp_continue {buf = qtn_ir_cost_softkey_continue;}
       
  1915 RESOURCE TBUF r_irapp_exit {buf = qtn_ir_cost_softkey_exit;}
       
  1916 RESOURCE TBUF r_irapp_accept {buf = qtn_ir_terms_softkey_accept;}
       
  1917 RESOURCE TBUF r_irapp_decline {buf = qtn_ir_terms_softkey_decline;}
       
  1918 RESOURCE TBUF r_irapp_options {buf = qtn_ir_softkey_options;}
       
  1919 RESOURCE TBUF r_irapp_select {buf = qtn_ir_softkey_select;}
       
  1920 RESOURCE TBUF r_irapp_back {buf = qtn_ir_softkey_back;}
       
  1921 RESOURCE TBUF r_irapp_close {buf = qtn_ir_info_softkey_close;}
       
  1922 RESOURCE TBUF r_irapp_yes {buf = qtn_ir_softkey_yes;}
       
  1923 RESOURCE TBUF r_irapp_no {buf = qtn_ir_softkey_no;}
       
  1924 RESOURCE TBUF r_irapp_ok {buf = qtn_ir_settings_connec_softkey_ok;}
       
  1925 RESOURCE TBUF r_irapp_search {buf = qtn_ir_findst_softkey_search;}
       
  1926 RESOURCE TBUF r_irapp_memlo_ram_out_of_mem {buf = qtn_ir_memlo_ram_out_of_mem;}
       
  1927 
       
  1928 //Added for First time/Find stations view
       
  1929 RESOURCE TBUF r_irapp_firsttime_title {buf = qtn_ir_firstuse_title;}
       
  1930 RESOURCE TBUF r_irapp_findstations_title {buf = qtn_ir_findstation_title;}
       
  1931 
       
  1932 
       
  1933 //ToolBar resources
       
  1934 RESOURCE TBUF r_irapp_addtofavorites {buf = qtn_ir_options_add;}
       
  1935 
       
  1936 
       
  1937 
       
  1938 //--------------Pls Veiw
       
  1939 RESOURCE TBUF r_irapp_feature_file_title {buf = qtn_ir_playlist_title;}
       
  1940 RESOURCE TBUF r_irapp_streaming_links { buf = qtn_ir_error_notavailable;}
       
  1941 RESOURCE TBUF r_irapp_tooltip_addtofav { buf = qtn_ir_tooltip_addtofav;}
       
  1942 RESOURCE TBUF r_irapp_tooltip_addalltofav { buf = qtn_ir_tooltip_addalltofav;}
       
  1943 RESOURCE TBUF r_irapp_tooltip_listen { buf = qtn_ir_tooltip_listen;}
       
  1944 RESOURCE TBUF r_irapp_tooltip_stationde { buf = qtn_ir_tooltip_stationde;}
       
  1945 RESOURCE TBUF r_irapp_tooltip_addstation { buf = qtn_ir_tooltip_addstation;}
       
  1946 RESOURCE TBUF r_irapp_station_saved { buf = qtn_ir_station_saved;}
       
  1947 //--------------Error Notes
       
  1948 RESOURCE TBUF r_irapp_error_connection {buf =  qtn_ir_error_connection;}
       
  1949 RESOURCE TBUF r_irapp_mediaengine_buffer_empty {buf = qtn_ir_error_buffer ;}
       
  1950 RESOURCE TBUF r_irapp_error_address {buf = qtn_ir_error_address ;}
       
  1951 RESOURCE TBUF r_irapp_error_general {buf = qtn_ir_error_general;}
       
  1952 RESOURCE TBUF r_irapp_addfavourites_error {buf = qtn_ir_error_favourites;}
       
  1953 RESOURCE TBUF r_irapp_suboption_delete {buf = qtn_ir_suboptions_delete;}
       
  1954 RESOURCE TBUF r_irapp_error_notinisds {buf = qtn_ir_error_notinisds; }
       
  1955 RESOURCE TBUF r_irapp_error_name_already_exists {buf = qtn_ir_name_already_exists;}
       
  1956 RESOURCE TBUF r_irapp_error_url_unavailable {buf = qtn_ir_err_url_unavail;}
       
  1957 RESOURCE TBUF r_irapp_error_isds_unavailable {buf = qtn_ir_error_isds_unavailable;}
       
  1958 RESOURCE TBUF r_irapp_error_operation {buf = qtn_ir_err_operation;}
       
  1959 
       
  1960 //Information Note
       
  1961 RESOURCE TBUF r_irapp_infonote_update  {buf = qtn_ir_favourites_popup_removed;}
       
  1962 
       
  1963 //Confirmation Note
       
  1964 RESOURCE TBUF r_irapp_note_delete {buf = qtn_ir_stations_popup_delete;}
       
  1965 RESOURCE TBUF r_irapp_note_popup_save {buf = qtn_ir_stations_popup_save;}
       
  1966 RESOURCE TBUF128 r_irapp_note_removed {buf = qtn_ir_stations_popup_removed;}
       
  1967 RESOURCE TBUF128 r_irapp_note_removed_many {buf = qtn_ir_stations_popup_removed_many;}
       
  1968 RESOURCE TBUF r_irapp_confirm_saved {buf = qtn_ir_added_single;}
       
  1969 RESOURCE TBUF r_irapp_stations_saved {buf = qtn_ir_added_multi;} 
       
  1970 RESOURCE TBUF r_irapp_note_delete_many {buf = qtn_ir_stations_popup_delete_many;}
       
  1971 RESOURCE TBUF r_irapp_stations_popup_saved {buf = qtn_ir_added_single;}
       
  1972 
       
  1973 //Progress Dialog
       
  1974 RESOURCE TBUF64 r_irapp_searching_progress{ buf=qtn_ir_loading_searching;}
       
  1975 
       
  1976 //----Error Note---Not in UI spec
       
  1977 RESOURCE TBUF r_irapp_search_error {buf = qtn_ir_error_search;}
       
  1978 RESOURCE TBUF r_irapp_irgeneral_error {buf =  qtn_ir_app_general_err;}
       
  1979 RESOURCE TBUF r_irapp_nw_noconn_error {buf =  qtn_ir_nwcontroller_err_noconnectivity;}
       
  1980 RESOURCE TBUF r_irapp_networkcontroller_noap  {buf = qtn_ir_nwcontroller_err_noaccesspoint; }
       
  1981 RESOURCE TBUF r_irapp_addmanually_error {buf = qtn_ir_addmanually_err_data;}
       
  1982 RESOURCE TBUF r_irapp_addmanually_noname {buf = qtn_ir_addmanually_unnamed;}
       
  1983 RESOURCE TBUF r_irapp_addmanually_notext { buf =qtn_ir_main_unnamed_station ; }
       
  1984 RESOURCE TBUF r_irapp_play_fail_error {buf = qtn_ir_playfail_err;}
       
  1985 
       
  1986 //--------------------History------------------
       
  1987 RESOURCE TBUF r_irapp_clear_history {buf = qtn_ir_history_no_history;}
       
  1988 RESOURCE TBUF r_irapp_history_title {buf = qtn_ir_title_history;}
       
  1989 RESOURCE TBUF r_irapp_history_query {buf = qtn_ir_options_clearhistory;}
       
  1990 RESOURCE TBUF r_irapp_tooltip_find_in_shop  {buf = qtn_ir_tooltip_findnstore;}
       
  1991 RESOURCE TBUF r_irapp_history_tooltip {buf = qtn_ir_tooltip_history;}
       
  1992 RESOURCE TBUF r_irapp_tooltip_findstation {buf = qtn_ir_tooltip_findst;}
       
  1993 
       
  1994 
       
  1995 
       
  1996 RESOURCE TBUF r_irapp_percentage_loading {buf = qtn_ir_loading_percent_sign;}
       
  1997 
       
  1998 
       
  1999 //-----------------GeneralSettings--------------
       
  2000 RESOURCE TBUF r_irapp_general_settings_plugin_title{buf = qtn_ir_main_title;}
       
  2001 RESOURCE TBUF r_irapp_general_settings_plugin_listbox_caption
       
  2002 {
       
  2003 buf = qtn_ir_set_folder_internetradio;
       
  2004 }
       
  2005 
       
  2006 
       
  2007 RESOURCE LABEL r_tc_label
       
  2008 {
       
  2009 horiz_align = EEikLabelAlignHLeft;
       
  2010 vert_align=EEikLabelAlignVTop;
       
  2011 standard_font=EEikLabelFontNormal;
       
  2012 reserve_length=0;
       
  2013 }   
       
  2014 
       
  2015 // ---------------------------------------------------------
       
  2016 //   
       
  2017 //   SETTING ITEM LIST
       
  2018 //
       
  2019 // ---------------------------------------------------------
       
  2020 //
       
  2021 RESOURCE AVKON_SETTING_ITEM_LIST r_entry_settings_list
       
  2022 	{
       
  2023 	title = qtn_ir_settings_title;
       
  2024 	}
       
  2025 
       
  2026 // ---------------------------------------------------------
       
  2027 //   
       
  2028 //   RADIO BUTTON SETTING PAGE
       
  2029 //
       
  2030 // ---------------------------------------------------------
       
  2031 //
       
  2032 RESOURCE AVKON_SETTING_PAGE r_enumeratedtext_setting_page
       
  2033 	{
       
  2034 	type = EAknCtPopupSettingList;
       
  2035 	editor_resource_id = r_popup_setting_list;
       
  2036 	}
       
  2037 	
       
  2038 RESOURCE POPUP_SETTING_LIST r_popup_setting_list
       
  2039     {
       
  2040 	flags = 0;
       
  2041     }
       
  2042     
       
  2043 RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_setting_texts
       
  2044 	{
       
  2045     setting_texts_resource = r_texts;
       
  2046 	}
       
  2047 	
       
  2048 RESOURCE ARRAY r_texts
       
  2049     {
       
  2050     items =
       
  2051         {
       
  2052         AVKON_ENUMERATED_TEXT { value=0; text = "";}
       
  2053         };
       
  2054     } 
       
  2055 
       
  2056 RESOURCE TBUF r_irapp_terms_file {buf = ir_terms_file;}
       
  2057 
       
  2058 
       
  2059 // ---------------------------------------------------------------------------
       
  2060 //    r_ir_channel_list
       
  2061 //    List box of channel list view.
       
  2062 //    Contains the visible items of the view.
       
  2063 // ---------------------------------------------------------------------------
       
  2064 //
       
  2065 RESOURCE LISTBOX r_ir_channel_list
       
  2066     {
       
  2067      flags = EAknListBoxMarkableList;
       
  2068     }
       
  2069 
       
  2070     
       
  2071 // ---------------------------------------------------------
       
  2072 //    r_ir_nowplaying_view
       
  2073 // ---------------------------------------------------------------------------
       
  2074 RESOURCE AVKON_VIEW r_ir_nowplaying_view
       
  2075     {
       
  2076     menubar = r_ir_nowplaying_view_menu_bar;
       
  2077     cba = r_irapp_softkeys_options_back_cba;
       
  2078     toolbar =r_now_nameslist_toolbar;
       
  2079     }
       
  2080     
       
  2081 // ---------------------------------------------------------------------------
       
  2082 //    r_ir_main_view_menu_bar
       
  2083 // ---------------------------------------------------------------------------
       
  2084 //
       
  2085 RESOURCE MENU_BAR r_ir_nowplaying_view_menu_bar
       
  2086     {
       
  2087     titles=
       
  2088         {
       
  2089         MENU_TITLE
       
  2090             { 
       
  2091             menu_pane = r_ir_menu_nowplaying; 
       
  2092             }
       
  2093         };
       
  2094     }
       
  2095     
       
  2096 /////////////////////////////////////////////////////////////////////////////////////////
       
  2097 ///
       
  2098 ///
       
  2099 ///
       
  2100 ///            INTERNET RADIO STATIONS DIRECTORY VIEW RESOURCES -- START
       
  2101 ///
       
  2102 ///
       
  2103 ///
       
  2104 /////////////////////////////////////////////////////////////////////////////////////////
       
  2105 
       
  2106 // ---------------------------------------------------------------------------
       
  2107 //    r_ir_qtn_station_directory_title
       
  2108 //    Stations directory view title.
       
  2109 // ---------------------------------------------------------------------------
       
  2110 //
       
  2111 
       
  2112 RESOURCE TBUF r_ir_station_directory_title { buf = "qtn_ir_discover_title"; }
       
  2113   
       
  2114 
       
  2115 // ---------------------------------------------------------------------------
       
  2116 //    r_ir_station_directory_view
       
  2117 //    Station direcoty view.
       
  2118 // ---------------------------------------------------------------------------
       
  2119 //
       
  2120 
       
  2121 RESOURCE AVKON_VIEW r_ir_station_directory
       
  2122     {
       
  2123     menubar = r_ir_station_directory_menu_bar;
       
  2124     cba = r_irapp_softkeys_options_back_cba;
       
  2125     }
       
  2126     
       
  2127 
       
  2128 // ---------------------------------------------------------------------------
       
  2129 //    r_ir_station_directory_menu_bar
       
  2130 //    Station directory view menu bar.
       
  2131 // ---------------------------------------------------------------------------
       
  2132 //
       
  2133 
       
  2134 RESOURCE MENU_BAR r_ir_station_directory_menu_bar
       
  2135     {
       
  2136     titles=
       
  2137         {
       
  2138         MENU_TITLE
       
  2139             { 
       
  2140             menu_pane = r_ir_station_directory_menu;
       
  2141             }
       
  2142         };
       
  2143     }
       
  2144 // ---------------------------------------------------------------------------
       
  2145 //    r_ir_station_directory_menu
       
  2146 //    Station directory view menu.
       
  2147 // ---------------------------------------------------------------------------
       
  2148 //
       
  2149 RESOURCE MENU_PANE r_ir_station_directory_menu
       
  2150     {
       
  2151     items=
       
  2152         {
       
  2153         MENU_ITEM { command = ESelectCmd; txt = qtn_ir_options_select; },
       
  2154         MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  2155         MENU_ITEM {command = ESettingsCmd; txt = qtn_ir_options_settings;},
       
  2156         MENU_ITEM { command = EHelpCmd; txt = qtn_ir_options_help; },
       
  2157         MENU_ITEM { command = EExitCmd; txt = qtn_ir_options_exit; }
       
  2158         };
       
  2159     }
       
  2160     
       
  2161     
       
  2162 ///////////////////////////////////////////////////////////////////////////////////////////
       
  2163 // MENUBAR FOR HISTORY VIEW
       
  2164 //////////////////////////////////////////////////////////////////////////////////// 
       
  2165 
       
  2166 RESOURCE MENU_BAR r_ir_menubar_history
       
  2167     {
       
  2168     titles =
       
  2169         {
       
  2170         MENU_TITLE {menu_pane = r_ir_menu_history;}
       
  2171         };
       
  2172     }
       
  2173 
       
  2174 RESOURCE MENU_PANE r_ir_menu_history
       
  2175     {
       
  2176     items = 
       
  2177         {
       
  2178 	
       
  2179 		MENU_ITEM {command = EGotoNowPlayingViewCmd;   txt = qtn_ir_options_now;},
       
  2180 		MENU_ITEM {command = EAddtoFavouritesCmd;   txt = qtn_ir_options_add;},
       
  2181 		MENU_ITEM {command = EClearCmd; txt = qtn_ir_options_clearhistory;},
       
  2182         MENU_ITEM {command = ESettingsCmd;   txt = qtn_ir_options_settings;},
       
  2183         MENU_ITEM {command = EHelpCmd;   txt = qtn_ir_options_help ;},
       
  2184         MENU_ITEM {command = EExitCmd;   txt = qtn_ir_options_exit;}
       
  2185         };
       
  2186     }    
       
  2187     
       
  2188 // ---------------------------------------------------------------------------
       
  2189 //    r_ir_searchresults_list
       
  2190 //    List box of search results view.
       
  2191 //    Contains the visible items of the view.
       
  2192 // ---------------------------------------------------------------------------
       
  2193 //
       
  2194 RESOURCE LISTBOX r_ir_searchresults_list
       
  2195  {
       
  2196     flags = EAknListBoxSelectionList;
       
  2197     }   
       
  2198 
       
  2199 
       
  2200 
       
  2201 RESOURCE LISTBOX r_station_directory
       
  2202     {
       
  2203     flags = EAknListBoxSelectionList;
       
  2204     }   
       
  2205 //--------------------------------------------------------------------
       
  2206 //    
       
  2207 //resource for search results view title pane
       
  2208 //------------------------------------------------------------------
       
  2209 RESOURCE TBUF R_IRAPP_SEARCHRESULTS_TITLETEXT { buf = qtn_ir_search_results; }
       
  2210 
       
  2211 
       
  2212 //--------------------------------------------------------------------
       
  2213 //    
       
  2214 //resource for search results view title pane
       
  2215 //------------------------------------------------------------------
       
  2216 RESOURCE TBUF R_IRAPP_SEARCHRESULT_TITLETEXT { buf = qtn_ir_search_result; }
       
  2217 
       
  2218 
       
  2219 // -----------------------------------------------------------------------------
       
  2220 //
       
  2221 //    Resources for PROGRESS DIALOG r_irapp_progress_dialog
       
  2222 //
       
  2223 // -----------------------------------------------------------------------------
       
  2224 //
       
  2225 RESOURCE DIALOG r_irapp_progress_dialog
       
  2226     {
       
  2227     flags = EAknWaitNoteFlags;
       
  2228     buttons = r_irapp_softkey_cancel_cba;
       
  2229     items =
       
  2230         {
       
  2231         DLG_LINE
       
  2232             {
       
  2233             type = EAknCtNote;
       
  2234             id = EProgressDialog;
       
  2235             control= AVKON_NOTE 
       
  2236                 { 
       
  2237                 layout = EWaitLayout;
       
  2238                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
  2239                 };
       
  2240             }
       
  2241         };
       
  2242     }
       
  2243 // ---------------------------------------------------------------------------
       
  2244 //    r_ir_findstation
       
  2245 //    List box of findstations/first time view.
       
  2246 //    Contains the visible items of the view.
       
  2247 // ---------------------------------------------------------------------------
       
  2248 //
       
  2249 RESOURCE LISTBOX r_ir_findstation
       
  2250     {
       
  2251     flags = EAknListBoxSelectionList;
       
  2252     }  
       
  2253 
       
  2254 RESOURCE AVKON_SETTING_ITEM_LIST r_ir_setting_list
       
  2255     {
       
  2256     title = qtn_ir_options_settings;
       
  2257     items =
       
  2258         {
       
  2259         AVKON_SETTING_ITEM
       
  2260             {
       
  2261             identifier = EIRSettingItemSnapSelectionID;
       
  2262             setting_page_resource = r_snap_selection_setting_page;
       
  2263             associated_resource = r_popup_snap_selection_list;
       
  2264             name = qtn_ir_settings_network;
       
  2265             },
       
  2266    
       
  2267         AVKON_SETTING_ITEM
       
  2268             {
       
  2269             identifier = EIRSettingItemGprsConnBitRateID;
       
  2270             setting_page_resource = r_gprs_conn_bitrate_setting_page;
       
  2271             associated_resource = r_popup_gprs_conn_bitrate_list;
       
  2272             name = qtn_ir_settings_gprs;
       
  2273             },
       
  2274 
       
  2275         AVKON_SETTING_ITEM
       
  2276             {
       
  2277             identifier = EIRSettingItem3GConnBitRateID;
       
  2278             setting_page_resource = r_3g_conn_bitrate_setting_page;
       
  2279             associated_resource = r_popup_3g_conn_bitrate_list;
       
  2280             name = qtn_ir_settings_3g;
       
  2281             },
       
  2282 
       
  2283         AVKON_SETTING_ITEM
       
  2284             {
       
  2285             identifier = EIRSettingItemWiFiConnBitRateID;
       
  2286             setting_page_resource = r_wifi_conn_bitrate_setting_page;
       
  2287             associated_resource = r_popup_wifi_conn_bitrate_list;
       
  2288             name = qtn_ir_settings_wifi;
       
  2289             }
       
  2290         };
       
  2291 
       
  2292 
       
  2293     }
       
  2294 
       
  2295 RESOURCE AVKON_SETTING_PAGE r_snap_selection_setting_page
       
  2296     {   
       
  2297     softkey_resource    = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
  2298     type = EAknCtPopupSettingList;
       
  2299     editor_resource_id = r_ir_settings_empty_list;
       
  2300     }
       
  2301 
       
  2302 RESOURCE AVKON_SETTING_PAGE r_gprs_conn_bitrate_setting_page
       
  2303     {   
       
  2304     softkey_resource    = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
  2305     label = qtn_ir_settings_gprs;
       
  2306     type = EAknCtPopupSettingList;
       
  2307     editor_resource_id = r_ir_settings_empty_list;
       
  2308     }
       
  2309 
       
  2310 RESOURCE AVKON_SETTING_PAGE r_3g_conn_bitrate_setting_page
       
  2311     {   
       
  2312     softkey_resource    = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
  2313     label = qtn_ir_settings_3g;
       
  2314     type = EAknCtPopupSettingList;
       
  2315     editor_resource_id = r_ir_settings_empty_list;
       
  2316     }
       
  2317 
       
  2318 RESOURCE AVKON_SETTING_PAGE r_wifi_conn_bitrate_setting_page
       
  2319     {   
       
  2320     softkey_resource    = R_AVKON_SOFTKEYS_OK_CANCEL__OK;
       
  2321     label = qtn_ir_settings_wifi;
       
  2322     type = EAknCtPopupSettingList;
       
  2323     editor_resource_id = r_ir_settings_empty_list;
       
  2324     }
       
  2325 
       
  2326 
       
  2327 RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_snap_selection_list
       
  2328     {
       
  2329     setting_texts_resource = r_settinglist_snap_page_list;
       
  2330     }
       
  2331 
       
  2332 RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_gprs_conn_bitrate_list
       
  2333     {
       
  2334     setting_texts_resource = r_settinglist_gprs_page_list;
       
  2335     }
       
  2336 
       
  2337 RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_3g_conn_bitrate_list
       
  2338     {
       
  2339     setting_texts_resource = r_settinglist_3g_page_list;
       
  2340     }
       
  2341 
       
  2342 RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_wifi_conn_bitrate_list
       
  2343     {
       
  2344     setting_texts_resource = r_settinglist_wifi_page_list;
       
  2345     }
       
  2346 
       
  2347 
       
  2348 RESOURCE ARRAY r_settinglist_snap_page_list
       
  2349     {
       
  2350     items =
       
  2351         {
       
  2352   
       
  2353         };
       
  2354     }
       
  2355 
       
  2356 RESOURCE ARRAY r_settinglist_gprs_page_list
       
  2357 	{
       
  2358 	items =
       
  2359 		{
       
  2360 		AVKON_ENUMERATED_TEXT {value = 0; text = qtn_ir_bitrate_standard;},
       
  2361 		AVKON_ENUMERATED_TEXT {value = 1; text = qtn_ir_bitrate_high;},
       
  2362 		AVKON_ENUMERATED_TEXT {value = 2; text = qtn_ir_bitrate_best;}
       
  2363 		};
       
  2364 	}
       
  2365 
       
  2366 
       
  2367 RESOURCE ARRAY r_settinglist_3g_page_list
       
  2368 	{
       
  2369 	items =
       
  2370 		{
       
  2371 		AVKON_ENUMERATED_TEXT {value = 0; text = qtn_ir_bitrate_standard;},
       
  2372 		AVKON_ENUMERATED_TEXT {value = 1; text = qtn_ir_bitrate_high;},
       
  2373 		AVKON_ENUMERATED_TEXT {value = 2; text = qtn_ir_bitrate_best;}
       
  2374 		};
       
  2375 	}
       
  2376 
       
  2377 
       
  2378 RESOURCE ARRAY r_settinglist_wifi_page_list
       
  2379 	{
       
  2380 	items =
       
  2381 		{
       
  2382 		AVKON_ENUMERATED_TEXT {value = 0; text = qtn_ir_bitrate_standard;},
       
  2383 		AVKON_ENUMERATED_TEXT {value = 1; text = qtn_ir_bitrate_high;},
       
  2384 		AVKON_ENUMERATED_TEXT {value = 2; text = qtn_ir_bitrate_best;}
       
  2385 		};
       
  2386 	}
       
  2387 // ---------------------------------------------------------------------------
       
  2388 // r_vr_settings_empty_list
       
  2389 // Empty popup setting list resource.
       
  2390 // ---------------------------------------------------------------------------
       
  2391 //
       
  2392 RESOURCE POPUP_SETTING_LIST r_ir_settings_empty_list
       
  2393     {
       
  2394     }
       
  2395 
       
  2396 RESOURCE CBA r_ir_softkeys_exit
       
  2397     {
       
  2398     buttons=
       
  2399         {
       
  2400         CBA_BUTTON { id = EAknSoftkeyExit; txt = qtn_ir_options_exit; },
       
  2401         CBA_BUTTON { txt = ""; }
       
  2402         };
       
  2403 	}
       
  2404 // -----------------------------------------------------------------------------
       
  2405 //
       
  2406 //   r_ir_menupane_markable_list
       
  2407 //   Menu for "Markable List"
       
  2408 //
       
  2409 // -----------------------------------------------------------------------------
       
  2410 //
       
  2411 RESOURCE MENU_PANE r_ir_menupane_markable_list
       
  2412 	{
       
  2413 	items =
       
  2414 		{
       
  2415 		MENU_ITEM
       
  2416 			{
       
  2417 			command = EMark;
       
  2418 			txt = qtn_ir_options_mark;
       
  2419 			},
       
  2420 		MENU_ITEM
       
  2421 			{
       
  2422 			command = EMarkAll;
       
  2423 			txt = qtn_ir_options_markall;
       
  2424 			},
       
  2425 		MENU_ITEM
       
  2426 			{
       
  2427 			command = EUnmark;
       
  2428 			txt = qtn_ir_options_unmark;
       
  2429 			},
       
  2430 		MENU_ITEM
       
  2431 			{
       
  2432 			command = EUnmarkAll;
       
  2433 			txt = qtn_ir_options_unmarkall;
       
  2434 			}
       
  2435 		};
       
  2436 	}
       
  2437      
       
  2438  RESOURCE DIALOG r_add_station_form_dialog
       
  2439     {
       
  2440     flags = EEikDialogFlagNoDrag | EEikDialogFlagFillAppClientRect |
       
  2441             EEikDialogFlagNoTitleBar | EEikDialogFlagNoBorder |
       
  2442             EEikDialogFlagCbaButtons | EEikDialogFlagWait;
       
  2443     buttons = r_addstation_form_cba;
       
  2444     form = r_add_station_form;
       
  2445     }
       
  2446 
       
  2447 // --------------------------------------------------------------------------
       
  2448 // DIALOG
       
  2449 // Deletion wait note with cancel button
       
  2450 // --------------------------------------------------------------------------
       
  2451 //
       
  2452 RESOURCE DIALOG r_irapp_progress_dialog_cancel
       
  2453     {
       
  2454     flags = EAknProgressNoteFlags;
       
  2455     buttons = r_irapp_softkeys_empty_cba;
       
  2456     items =
       
  2457         {
       
  2458         DLG_LINE
       
  2459             {
       
  2460             type = EAknCtNote;
       
  2461             id = EDeleteInProgress;
       
  2462             control = AVKON_NOTE
       
  2463                 {
       
  2464                 layout = EProgressLayout;
       
  2465                 imagefile = AVKON_ICON_FILE;
       
  2466                 imageid   = EMbmAvkonQgn_note_erased;
       
  2467                 imagemask = EMbmAvkonQgn_note_erased_mask;
       
  2468                 };
       
  2469             }
       
  2470         };
       
  2471     }
       
  2472 //-----------------------------------------------------------------------------
       
  2473 //
       
  2474 // r_eve_newevent_form
       
  2475 // New event form resource for the dialog
       
  2476 //
       
  2477 //-----------------------------------------------------------------------------
       
  2478 //
       
  2479 RESOURCE FORM r_add_station_form
       
  2480     {
       
  2481     flags = EEikFormUseDoubleSpacedFormat | EEikFormEditModeOnly;
       
  2482    
       
  2483     items =
       
  2484         {
       
  2485         
       
  2486         DLG_LINE
       
  2487             {
       
  2488             type = EEikCtEdwin;
       
  2489             prompt = qtn_ir_addst_streamurl;
       
  2490             id = EAddStaionURL;
       
  2491             itemflags = EEikDlgItemTakesEnterKey  |EEikDlgItemOfferAllHotKeys;
       
  2492             control = EDWIN
       
  2493                 {
       
  2494                 flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable  |
       
  2495                 EEikEdwinNoAutoSelection |EEikEdwinJustAutoCurEnd  ;
       
  2496                 maxlength = 100;
       
  2497                 };
       
  2498             },
       
  2499         DLG_LINE
       
  2500             {
       
  2501             type = EEikCtEdwin;
       
  2502             prompt = qtn_ir_url_name;
       
  2503             id =EAddStaionName;
       
  2504             itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
  2505             control = EDWIN
       
  2506                 {
       
  2507                 flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable |
       
  2508                 EEikEdwinAutoSelection  ;
       
  2509                 maxlength = 100;
       
  2510                 };
       
  2511             },
       
  2512             DLG_LINE
       
  2513             {
       
  2514             type = EEikCtEdwin;
       
  2515             prompt =qtn_ir_addst_description;
       
  2516             id = EAddStaionDescription;
       
  2517             itemflags = EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys;
       
  2518             control = EDWIN
       
  2519                 {
       
  2520                 flags = EEikEdwinNoHorizScrolling | EEikEdwinResizable |EEikEdwinNoAutoSelection;
       
  2521                 maxlength = 100;
       
  2522                 };
       
  2523             }
       
  2524         };
       
  2525          
       
  2526     }   
       
  2527 RESOURCE MENU_BAR r_form_menubar
       
  2528     {
       
  2529     titles =
       
  2530         {
       
  2531         MENU_TITLE 
       
  2532             {
       
  2533             menu_pane = r_form_menu;
       
  2534             }
       
  2535         };
       
  2536     }
       
  2537 
       
  2538 
       
  2539 RESOURCE CBA r_addstation_form_cba
       
  2540 	{
       
  2541 	buttons =
       
  2542 		{
       
  2543 		
       
  2544 		CBA_BUTTON
       
  2545 			{
       
  2546 			id = EAknSoftkeyOptions; 
       
  2547 			txt = qtn_ir_softkey_options;
       
  2548 			},
       
  2549 		CBA_BUTTON 
       
  2550 			{
       
  2551 			id = EAddExit;
       
  2552 			txt = qtn_ir_softkey_cancel;
       
  2553 			}
       
  2554 		};
       
  2555 	}
       
  2556 RESOURCE MENU_PANE r_form_menu
       
  2557 	{
       
  2558 	items = 
       
  2559 		{
       
  2560 		MENU_ITEM
       
  2561 			{
       
  2562 			command = EGotoNowPlayingViewCmd;  
       
  2563 			txt = qtn_ir_options_now;
       
  2564 			},
       
  2565 		MENU_ITEM
       
  2566 			{
       
  2567 			command = EHelpCmd;
       
  2568 			txt = qtn_ir_options_help;
       
  2569 			},
       
  2570 		MENU_ITEM 
       
  2571 			{
       
  2572 			command = EExitCmd;
       
  2573 			txt = qtn_ir_options_exit;
       
  2574 			}
       
  2575 		};
       
  2576 	}
       
  2577 
       
  2578 //Added for ALR/SNAP
       
  2579 
       
  2580 RESOURCE TBUF r_ir_settings_snap_default
       
  2581     {
       
  2582     buf = qtn_ir_settings_snap_default;
       
  2583     }
       
  2584     
       
  2585 RESOURCE TBUF r_ir_access_ask
       
  2586     {
       
  2587     buf = qtn_ir_access_ask;
       
  2588     }   
       
  2589 
       
  2590 RESOURCE CBA r_search_dialog_cba
       
  2591 	{
       
  2592 	buttons =
       
  2593 		{
       
  2594 		AVKON_CBA_BUTTON { txt=qtn_ir_findst_softkey_search; id=EAknSoftkeyOk; },
       
  2595 		AVKON_CBA_BUTTON { txt=qtn_ir_softkey_cancel; id=EAknSoftkeyCancel; }
       
  2596 		};
       
  2597 	}
       
  2598   
       
  2599 RESOURCE DIALOG R_SEARCH_STRING_DIALOG
       
  2600     {
       
  2601     flags = EGeneralQueryFlags;
       
  2602     buttons = r_search_dialog_cba;
       
  2603       
       
  2604     items=
       
  2605         {
       
  2606         DLG_LINE
       
  2607             {
       
  2608             type = EAknCtQuery;
       
  2609             id = EGeneralQuery;
       
  2610             control= AVKON_DATA_QUERY 
       
  2611                 { 
       
  2612                 layout = EDataLayout;
       
  2613                 control = EDWIN
       
  2614                     { 
       
  2615                     flags= EEikEdwinNoHorizScrolling | EEikEdwinResizable; 
       
  2616                     maxlength = 250; 
       
  2617                     width = 10; 
       
  2618                     lines = 1; 
       
  2619                     };
       
  2620                 };
       
  2621             }
       
  2622         };
       
  2623     }
       
  2624     
       
  2625 RESOURCE CBA r_irapp_softkey_cancel_cba
       
  2626 	{
       
  2627 	buttons =
       
  2628 		{
       
  2629 		
       
  2630 		CBA_BUTTON
       
  2631 			{
       
  2632 			id = EAknSoftkeyEmpty; 
       
  2633 			txt = "";
       
  2634 			},
       
  2635 		CBA_BUTTON 
       
  2636 			{
       
  2637 			id = EIRCancel;
       
  2638 			txt = qtn_ir_softkey_cancel;
       
  2639 			}
       
  2640 		};
       
  2641 	}
       
  2642 RESOURCE CBA r_irapp_softkeys_options_back_cba
       
  2643 	{
       
  2644 	buttons =
       
  2645 		{
       
  2646 		
       
  2647 		CBA_BUTTON
       
  2648 			{
       
  2649 			id = EAknSoftkeyOptions; 
       
  2650 			txt = qtn_ir_softkey_options;
       
  2651 			},
       
  2652 		CBA_BUTTON 
       
  2653 			{
       
  2654 			id = EAknSoftkeyBack;
       
  2655 			txt = qtn_ir_softkey_back;
       
  2656 			}
       
  2657 		};
       
  2658 	}
       
  2659 RESOURCE CBA r_irapp_softkeys_empty_cba
       
  2660 	{
       
  2661 	buttons =
       
  2662 		{
       
  2663 		
       
  2664 		CBA_BUTTON
       
  2665 			{
       
  2666 			id = EAknSoftkeyEmpty; 
       
  2667 			txt = "";
       
  2668 			},
       
  2669 		CBA_BUTTON 
       
  2670 			{
       
  2671 			id = EAknSoftkeyEmpty; 
       
  2672 			txt = "";
       
  2673 			}
       
  2674 		};
       
  2675 	}
       
  2676 RESOURCE CBA r_irapp_softkey_close_cba
       
  2677 	{
       
  2678 	buttons =
       
  2679 		{
       
  2680 		CBA_BUTTON
       
  2681 			{
       
  2682 			id = EAknSoftkeyEmpty; 
       
  2683 			txt = "";
       
  2684 			},
       
  2685 		CBA_BUTTON 
       
  2686 			{
       
  2687 			id = EIRBack;
       
  2688 			txt = qtn_ir_info_softkey_close;
       
  2689 			}
       
  2690 		};
       
  2691 	}
       
  2692 // ---------------------------------------------------------------------------
       
  2693 //    r_ir_advertisement_size
       
  2694 //    Size of the advertisement used in station directory
       
  2695 // ---------------------------------------------------------------------------
       
  2696 //
       
  2697 RESOURCE AVKON_LAYOUT_CONTROL r_ir_advertisement_size
       
  2698     {
       
  2699     l=0; t=0; W = 350; H = 64;
       
  2700     }
       
  2701 
       
  2702