bluetoothappprofiles/avrcp/playerinformation/resource/avrcp-settings.rss
changeset 70 f5508c13dfe0
parent 67 16e4b9007960
child 71 083fd884d7dd
equal deleted inserted replaced
67:16e4b9007960 70:f5508c13dfe0
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include "settings.rh"
       
    17 #include "avrcp-settings.rls"
       
    18 
       
    19 UID2 KUidAVRCPResourceFile
       
    20 
       
    21 // Test setting matching rules
       
    22 RESOURCE SETTINGS avrcpsettings
       
    23 	{
       
    24 	settings =
       
    25 		{
       
    26 		SETTING
       
    27 			{ // Equalizer mode
       
    28 			attribute = KEqualizerMode;
       
    29 			initialValue = KOff;
       
    30 			description = STRING_EqualizerMode;
       
    31 			definedValues =
       
    32 				{
       
    33 				VALUE
       
    34 					{
       
    35 					valueId = KOff;
       
    36 					description = STRING_EqualizerOff;
       
    37 					},
       
    38 				VALUE
       
    39 					{
       
    40 					valueId = KOn;
       
    41 					description = STRING_EqualizerOn;
       
    42 					}
       
    43 				};
       
    44 			},
       
    45 		SETTING
       
    46 			{ // Repeat mode
       
    47 			attribute = KRepeatMode;
       
    48 			initialValue = KAllTracksRepeat;
       
    49 			description = STRING_RepeatMode;
       
    50 			definedValues =
       
    51 				{
       
    52 				VALUE
       
    53 					{
       
    54 					valueId = KOff;
       
    55 					description = STRING_RepeatOff;
       
    56 					},
       
    57 				VALUE
       
    58 					{
       
    59 					valueId = KSingleTrackRepeat;
       
    60 					description = STRING_RepeatSingle;
       
    61 					},
       
    62 				VALUE
       
    63 					{
       
    64 					valueId = KAllTracksRepeat;
       
    65 					description = STRING_RepeatAll;
       
    66 					},
       
    67 				VALUE
       
    68 					{
       
    69 					valueId = KGroupRepeat;
       
    70 					description = STRING_RepeatGroup;
       
    71 					}
       
    72 				};
       
    73 			},
       
    74 		SETTING
       
    75 			{ // Shuffle mode
       
    76 			attribute = KShuffleMode;
       
    77 			initialValue = KAllTracksShuffle;
       
    78 			description = STRING_ShuffleMode;
       
    79 			definedValues =
       
    80 				{
       
    81 				VALUE
       
    82 					{
       
    83 					valueId = KOff;
       
    84 					description = STRING_ShuffleOff;
       
    85 					},
       
    86 				VALUE
       
    87 					{
       
    88 					valueId = KAllTracksShuffle;
       
    89 					description = STRING_ShuffleAll;
       
    90 					},
       
    91 				VALUE
       
    92 					{
       
    93 					valueId = KGroupShuffle;
       
    94 					description = STRING_ShuffleGroup;
       
    95 					}
       
    96 				};
       
    97 			},
       
    98 		SETTING
       
    99 			{ // Scan mode
       
   100 			attribute = KScanMode;
       
   101 			initialValue = KAllTracksScan;
       
   102 			description = STRING_ScanMode;
       
   103 			definedValues =
       
   104 				{
       
   105 				VALUE
       
   106 					{
       
   107 					valueId = KOff;
       
   108 					description = STRING_ScanOff;
       
   109 					},
       
   110 				VALUE
       
   111 					{
       
   112 					valueId = KAllTracksScan;
       
   113 					description = STRING_ScanAll;
       
   114 					},
       
   115 				VALUE
       
   116 					{
       
   117 					valueId = KGroupScan;
       
   118 					description = STRING_ScanGroup;
       
   119 					}
       
   120 				};
       
   121 			}			
       
   122 		};
       
   123 	}
       
   124