musicplayer_plat/mpx_music_player_remote_control_api/inc/mplayersecondarydisplayapi.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Note IDs and other definitions for secondary displays
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPLAYERSECONDARYDISPLAYAPI_H
       
    20 #define MPLAYERSECONDARYDISPLAYAPI_H
       
    21 
       
    22 /**
       
    23 * Category value used for Music Player notes
       
    24 */
       
    25 const TUid KMPlayerNoteCategory = {0x102072C3};
       
    26 
       
    27 /**
       
    28 * Note IDs for notes Music Player publishes for secondary display
       
    29 * implementations.
       
    30 *
       
    31 * \%U parameters are passed as 16-bit descriptors and \%N parameters as 32-bit
       
    32 * signed integers in the data buffer given to mediator command observers.
       
    33 *
       
    34 * @note The \% character is escaped in comments to make sure documentation
       
    35 * parsers parse this file correctly.
       
    36 *
       
    37 * @see CMediatorCommandResponder
       
    38 * @since S60 3.2.3
       
    39 */
       
    40 enum TMPlayerSecondaryDisplayNote
       
    41     {
       
    42     /**
       
    43      * Not used.
       
    44      */
       
    45     EMPlayerNoteNone = 0,
       
    46 
       
    47     /**
       
    48      * Confirmation note after saving a clip or a playlist.
       
    49      * - \%U is the title of the saved track or playlist
       
    50      *
       
    51      * \em qtn_mus_note_saved_to_collection
       
    52      * "%U saved to Music Library"
       
    53      */
       
    54     EMPlayerNoteClipSaved,
       
    55 
       
    56     /**
       
    57      * Error note when attempting to play an invalid or corrupted clip.
       
    58      *
       
    59      * \em qtn_mp_note_corrupt_file
       
    60      * "File is corrupt. Operation cancelled."
       
    61      */
       
    62     EMPlayerNoteInvalidClip,
       
    63 
       
    64     /**
       
    65      * Error note when attempting to play an invalid or corrupted playlist.
       
    66      *
       
    67      * \em qtn_nmp_note_open_broken_playlist
       
    68      * "Playlist file cannot be found. Unable to open."
       
    69      */
       
    70     EMPlayerNoteInvalidPlaylist,
       
    71 
       
    72     /**
       
    73      * Error note when attempting to play an empty playlist.
       
    74      *
       
    75      * \em qtn_nmp_note_empty_playlist
       
    76      * "Playlist is empty.\nNothing to play."
       
    77      */
       
    78     EMPlayerNoteEmptyPlaylist,
       
    79 
       
    80     /**
       
    81      * Error note when attempting to play a category of tracks and none of the
       
    82      * tracks are playable.
       
    83      *
       
    84      * \em qtn_nmp_note_invalid_list
       
    85      * "Unable to play selection. Operation cancelled."
       
    86      */
       
    87     EMPlayerNoteInvalidGroup,
       
    88 
       
    89     /**
       
    90      * Wait note shown when Music Library DB is created after starting
       
    91      * Music Player for the first time.
       
    92      *
       
    93      * \em qtn_mus_note_searching
       
    94      * "Searching for music."
       
    95      */
       
    96     EMPlayerNoteCreatingDb,
       
    97 
       
    98     /**
       
    99      * Information note shown after Music Library DB was was created but
       
   100      * no tracks were found.
       
   101      *
       
   102      * \em qtn_mus_note_search_complete_no_tracks1
       
   103      * "Search complete\nNothing found"
       
   104      */
       
   105     EMPlayerNoteDbCreationCompleteEmpty,
       
   106 
       
   107     /**
       
   108      * Information note shown after Music Library DB was created and
       
   109      * some tracks were found.
       
   110      * - \%N is the number of (new) tracks
       
   111      *
       
   112      * \em qtn_mus_note_search_complete1
       
   113      * "Search complete\nSongs: %0N\nPlaylists: %1N"
       
   114      */
       
   115     EMPlayerNoteDbCreationComplete,
       
   116 
       
   117     /**
       
   118      * Wait note shown when updating Music Library DB
       
   119      * - \%0N is the number of added tracks
       
   120      * - \%1N is the number of removed tracks
       
   121      *
       
   122      * \em qtn_mus_note_updating_db1
       
   123      * "Refreshing\nAdded: %0N"
       
   124      */
       
   125     EMPlayerNoteUpdatingDb,
       
   126 
       
   127     /**
       
   128      * Information note shown when updating Music Library DB is complete.
       
   129      * - \%0N is the number of added tracks
       
   130      * - \%1N is the number of removed tracks
       
   131      *
       
   132      * \em qtn_mus_note_updating_db_complete1
       
   133      * "Refresh complete\nAdded: %0N"
       
   134      */
       
   135     EMPlayerNoteDbUpdateComplete,
       
   136 
       
   137     /**
       
   138      * Information note shown when updating Music Library DB was stopped
       
   139      * by the user.
       
   140      * - \%0N is the number of added tracks
       
   141      * - \%1N is the number of removed tracks
       
   142      *
       
   143      * \em qtn_mus_note_updating_db_stopped1
       
   144      * "Refresh stopped\nAdded: %0N"
       
   145      */
       
   146     EMPlayerNoteDbUpdateStopped,
       
   147 
       
   148     /**
       
   149      * Wait note for updating Music Library DB.
       
   150      * No track counts are shown.
       
   151      *
       
   152      * \em qtn_mus_note_updating_db_short
       
   153      * "Updating Music Library."
       
   154      */
       
   155     EMPlayerNoteUpdatingDbShort,
       
   156 
       
   157     /**
       
   158      * Information note shown when updating Music Library DB is complete.
       
   159      * No track counts are shown.
       
   160      *
       
   161      * \em qtn_mus_note_update_complete_unmod
       
   162      * "Update complete."
       
   163      */
       
   164     EMPlayerNoteDbUpdateCompleteShort,
       
   165 
       
   166     /**
       
   167      * Information note shown when updating Music Library DB was stopped
       
   168      * by the user. No track counts are shown.
       
   169      *
       
   170      * \em qtn_mus_note_updating_db_stopped_short
       
   171      * "Update stopped."
       
   172      */
       
   173     EMPlayerNoteDbUpdateStoppedShort,
       
   174 
       
   175     /**
       
   176      * Error note shown when there is not enough free space on memory card
       
   177      * to add all tracks to Music Library DB.
       
   178      *
       
   179      * \em qtn_mus_note_memory_card_full
       
   180      * "Not enough memory to add tracks from memory card to Music Library..."
       
   181      */
       
   182     EMPlayerNoteDbUpdateDiscFull,
       
   183 
       
   184     /**
       
   185      * Information note shown when playback had to be paused in progressive
       
   186      * download, because all downloaded data has been played.
       
   187      *
       
   188      * \em qtn_mus_note_played_all_dl_content
       
   189      * "All downloaded content has been played."
       
   190      */
       
   191     EMPlayerNoteAllDlContentPlayed,
       
   192 
       
   193     /**
       
   194      * Information note shown when attempting to use Music Player during
       
   195      * a video call.
       
   196      *
       
   197      * \em qtn_mus_info_video_call_ongoing
       
   198      * "Music Player cannot be used during video call."
       
   199      */
       
   200     EMPlayerNoteVideoCall,
       
   201 
       
   202     /**
       
   203      * Note shown when attempting to play a non-protected track when
       
   204      * KRequireDRMInPlayback is enabled.
       
   205      *
       
   206      * \em qtn_mp_info_tone_no_drm
       
   207      * "Unprotected file. Cannot be played."
       
   208      */
       
   209     EMPlayerNoteCannotPlayUnprotected,
       
   210 
       
   211     /**
       
   212      * Wait note shown when saving a track in embedded mode.
       
   213      *
       
   214      * \em qtn_gen_note_saving
       
   215      * "Saving"
       
   216      */
       
   217     EMPlayerNoteSaving,
       
   218 
       
   219     /**
       
   220      * Query shown when attempting to exit Music Player without saving
       
   221      * a downloaded/received track/playlist in embedded mode.
       
   222      * - \%U is the title of the track or the name of the playlist
       
   223      *
       
   224      * \em qtn_iv_query_conf_save_downloaded
       
   225      * "%U has not been saved. Save now?"
       
   226      */
       
   227     EMPlayerQueryNotSaved,
       
   228 
       
   229     /**
       
   230      * Wait note when deleting either a single track or a category.
       
   231      * - \%U is the title of the track or the name of the category
       
   232      *
       
   233      * \em qtn_album_waiting_deleting1 , qtn_mus_query_conf_delete_all1
       
   234      * "Deleting '%U'"
       
   235      * "Deleting songs belonging to '%U'"
       
   236      */
       
   237     EMPlayerNoteDeletingSingle,
       
   238 
       
   239     /**
       
   240      * when deleting several marked tracks.
       
   241      *
       
   242      * \em qtn_nmp_del_songs_wait_note
       
   243      * "Deleting songs"
       
   244      */
       
   245     EMPlayerNoteDeletingMany,
       
   246 
       
   247     /**
       
   248      * Confirmation query shown when attempting to delete a category.
       
   249      *
       
   250      * \em qtn_nmp_query_conf_delete_group
       
   251      * "Delete all songs belonging to '%U'?"
       
   252      */
       
   253     EMPlayerQueryDeleteCategory,
       
   254 
       
   255     /**
       
   256      * Confirmation query shown when attempting to delete a single track or
       
   257      * a playlist.
       
   258      *
       
   259      * \em qtn_query_common_conf_delete
       
   260      * "Delete?\n%U"
       
   261      */
       
   262     EMPlayerQueryDeleteTrack,
       
   263 
       
   264     /**
       
   265      * Confirmation query shown when attempting to delete several marked
       
   266      * tracks.
       
   267      * - \%N is the number of tracks to be deleted
       
   268      *
       
   269      * \em qtn_nmp_del_songs_query
       
   270      * "Delete %N songs?"
       
   271      */
       
   272     EMPlayerQueryDeleteTracks,
       
   273 
       
   274     /**
       
   275      * Confirmation query shown when attempting to all tracks in a category
       
   276      * to Now Playing List.
       
   277      * - \%U is the name of the category
       
   278      *
       
   279      * \em qtn_mus_query_conf_add_all_to_playing_pl
       
   280      * "Add all tracks belonging to %U to Now Playing?"
       
   281      */
       
   282     EMPlayerQueryAddAllToNowPlaying,
       
   283 
       
   284     /**
       
   285      * Confirmation query shown when attempting to all tracks in a category
       
   286      * to a new playlist.
       
   287      * - \%U is the name of the category
       
   288      *
       
   289      * \em qtn_mus_query_conf_add_all_to_new_pl
       
   290      * "Create new playlist of all tracks belonging to %U?"
       
   291      */
       
   292     EMPlayerQueryAddAllToNewPl,
       
   293 
       
   294     /**
       
   295      * Confirmation query shown when attempting to all tracks in a category
       
   296      * to an existing playlist.
       
   297      * - \%U is the name of the category
       
   298      *
       
   299      * \em qtn_mus_query_conf_add_all_to_pl
       
   300      * "Add all tracks belonging to %U to a playlist?"
       
   301      */
       
   302     EMPlayerQueryAddAllToSavedPl,
       
   303 
       
   304     /**
       
   305      * Confirmation query shown when attempting to remove several tracks
       
   306      * from a playlist.
       
   307      * - \%N is the number of tracks to be removed
       
   308      *
       
   309      * \em qtn_mus_query_conf_remove_many1
       
   310      * "Remove %N songs from the playlist?"
       
   311      */
       
   312     EMPlayerQueryRemoveTracks,
       
   313 
       
   314     /**
       
   315      * Confirmation query shown when attempting to remove a single track
       
   316      * from a playlist.
       
   317      * - \%U is the name of the track to be removed
       
   318      *
       
   319      * \em qtn_mus_query_conf_remove_track
       
   320      * "Remove %U from the playlist?"
       
   321      */
       
   322     EMPlayerQueryRemoveTrack,
       
   323 
       
   324     /**
       
   325      * Confirmation query shown in embedded mode when setting a track
       
   326      * as ringing tone and it has not yet been saved.
       
   327      *
       
   328      * \em qtn_mp_query_embd_rtone_change_for_all
       
   329      * "Tone will be saved to Gallery and changed for all profiles. Continue?"
       
   330      */
       
   331     EMPlayerQuerySaveAndSetAsRt,
       
   332 
       
   333     /**
       
   334      * Confirmation query shown when setting a track as ringing tone.
       
   335      *
       
   336      * \em qtn_mg_query_rtone_change_for_all
       
   337      * "Ringing tone will be changed for all profiles. Change?"
       
   338      */
       
   339     EMPlayerQuerySetAsRt,
       
   340 
       
   341     /**
       
   342      * Wait note shown when copying tracks/playlists using the organize
       
   343      * function.
       
   344      *
       
   345      * \em qtn_mg_copying_many_files
       
   346      * "Copying files"
       
   347      */
       
   348     EMPlayerNoteCopyingTracks,
       
   349 
       
   350     /**
       
   351      * Wait note shown when copying a single track or playlist using the
       
   352      * organize function.
       
   353      * - \%U is the title of the track or name of the playlist
       
   354      *
       
   355      * \em qtn_mg_waiting_copy
       
   356      * "Copying %U"
       
   357      */
       
   358     EMPlayerNoteCopyingTrack,
       
   359 
       
   360     /**
       
   361      * Wait note shown when moving tracks/playlists using the organize
       
   362      * function.
       
   363      *
       
   364      * \em qtn_mg_moving_many_files
       
   365      * "Moving files"
       
   366      */
       
   367     EMPlayerNoteMovingTracks,
       
   368 
       
   369     /**
       
   370      * Wait note shown when moving a single track or playlist using the
       
   371      * organize function.
       
   372      * - \%U is the title of the track or name of the playlist
       
   373      *
       
   374      * \em qtn_album_waiting_move
       
   375      * "Moving %U"
       
   376      */
       
   377     EMPlayerNoteMovingTrack,
       
   378 
       
   379     /**
       
   380      * List query shown when choosing a playlist to add tracks to.
       
   381      * List contents are not available for secondary displays.
       
   382      *
       
   383      * \em qtn_mus_title_select_pl
       
   384      * "Select playlist:"
       
   385      */
       
   386     EMPlayerQuerySelectPlaylist,
       
   387 
       
   388     /**
       
   389      * List query shown when choosing visualization plug-in.
       
   390      *
       
   391      * \em qtn_mus_title_select_visualization
       
   392      * "Select visualization:"
       
   393      */
       
   394     EMPlayerQuerySelectVisualization,
       
   395 
       
   396     /**
       
   397      * Global note shown when running out of disk space when saving, moving,
       
   398      * or copying files.
       
   399      * - Data buffer contains the drive letter of drive in question
       
   400      *
       
   401      * \em qtn_memlo_mmc_not_enough_memory or \em qtn_memlo_not_enough_memory
       
   402      */
       
   403     EMPlayerNoteDiskFull,
       
   404 
       
   405     /**
       
   406     * Wait Note when MMC card becomes anavailable.
       
   407     * \em qtn_nmp_note_mmc_unavailable
       
   408     * "Memory card no longer available. Updating music library."
       
   409     */
       
   410     EMPlayerNoteMMCUnavailableWaitNote,
       
   411 
       
   412     /**
       
   413     * Wait note when opening album art.
       
   414     * \em qtn_nmp_note_opening
       
   415     * "Opening..."
       
   416     */
       
   417     EMPlayerNoteOpeningAlbumArt,
       
   418 
       
   419     /**
       
   420     * Wait note for opening cache.
       
   421     * \em qtn_nmp_note_opening_db
       
   422     * "Opening..."
       
   423     */
       
   424     EMPlayerNoteOpeningDb,
       
   425 
       
   426     /**
       
   427     * Wait note for scan cancelled opening cache.
       
   428     * \em qtn_nmp_note_cancelled_db
       
   429     * "Stopping search..."
       
   430     */
       
   431     EMPlayerNoteCancelledDbWaitNote,
       
   432 
       
   433     /**
       
   434     * Wait note for completing scan opening cache.
       
   435     * \em qtn_nmp_note_completing_db
       
   436     * "Completing search..."
       
   437     */
       
   438     EMPlayerNoteCompletingDb,
       
   439 
       
   440     /**
       
   441     * Wait note text when renaming a category with one item.
       
   442     * \em qtn_nmp_note_updating_name1
       
   443     * "Updating 1 song"
       
   444     */
       
   445     EMPlayerNoteUpdateOneItem,
       
   446 
       
   447     /**
       
   448     * Wait note text when renaming a category.
       
   449     * \em qtn_nmp_note_updating_name
       
   450     * "Updating %N songs"
       
   451     */
       
   452     EMPlayerNoteUpdateManyItems,
       
   453 
       
   454     /**
       
   455     * Wait note text when a corrupt db has been detected and collection
       
   456     *is attempting to rebuild the db
       
   457     * \em qtn_nmp_note_rebuilding_db
       
   458     * "Repairing corrupt library. Searching for songs."
       
   459     */
       
   460     EMPlayerNoteRebuildingDb,
       
   461      /**
       
   462     * Wait note used in wait note while saving an item.
       
   463     * \em qtn_nmp_wait_save_one_item
       
   464     * "Saving %U"
       
   465     */
       
   466     EMPlayerNoteSaveOneItem,
       
   467 
       
   468     /**
       
   469     * Wait Note used when remove one track.
       
   470     * \em qtn_mus_note_removing_track1
       
   471     * "Removing '%U'"
       
   472     */
       
   473     EMPlayerNoteRemovingTrack,
       
   474 
       
   475     /**
       
   476     * Wait note used when remove multiple tracks.
       
   477     * \em qtn_nmp_note_removing_many
       
   478     * "Removing songs"
       
   479     */
       
   480     EMPlayerNoteRemovingMany,
       
   481 
       
   482     /**
       
   483     * Wait note for adding album art.
       
   484     * \em qtn_nmp_note_adding_album_art
       
   485     * "Changing album art"
       
   486     */
       
   487     EMPlayerNoteAddingAlbumArt,
       
   488 
       
   489     /**
       
   490     * Wait note for adding one song.
       
   491     * \em qtn_nmp_note_adding_one_song
       
   492     * "Adding song"
       
   493     */
       
   494     EMPlayerNoteAddingSong,
       
   495 
       
   496     /**
       
   497     * Wait note for adding many songs.
       
   498     * \em qtn_mus_note_adding_tracks1
       
   499     * "Adding songs"
       
   500     */
       
   501     EMPlayerNoteAddingManySongs,
       
   502 
       
   503     /**
       
   504     * Wait note for restoring arlbum art.
       
   505     * \em qtn_nmp_note_restoring_album_art
       
   506     * "Restoring album art"
       
   507     */
       
   508     EMPlayerNoteRestoreAlbumArt,
       
   509 
       
   510     /**
       
   511     * Confirmation query when MMC card is inserted into the phone.
       
   512     * \em qtn_nmp_note_mmc_inserted
       
   513     * "New memory card detected. Update music library?"
       
   514     */
       
   515     EMPlayerNoteMMCInserted,
       
   516 
       
   517     /**
       
   518     * Confirmation query after a MTP sync has occured.
       
   519     * \em qtn_nmp_note_library_refresh_sync
       
   520     * "Music may need to be refreshed due to recent USB sync. Refresh now?"
       
   521     */
       
   522     EMPlayerNoteUSBSyncRefresh,
       
   523 
       
   524     /**
       
   525     * Confirmation query when sending invalid songs.
       
   526     * \em qtn_nmp_query_send_valid_songs1
       
   527     * "Some songs cannot be sent. Continue?"
       
   528     */
       
   529     EMPlayerNoteSendInvalidSongs,
       
   530 
       
   531     /**
       
   532     * Confirmation note text when ringtone is set.
       
   533     * \em qtn_nmp_note_ringtone_set
       
   534     * "%U set as ringing tone for active profile"
       
   535     */
       
   536     EMPlayerRingtoneSet,
       
   537 
       
   538     /**
       
   539     * Confirmation query used when clip isn't supported by collection.
       
   540     * \em qtn_nmp_note_saved_to_gallery
       
   541     * "Saved to Media Gallery"
       
   542     */
       
   543     EMPlayerNoteSavedtoGallery,
       
   544 
       
   545     /**
       
   546     * Confirmation query used in note when save is ok.
       
   547     * \em qtn_nmp_note_saved_to_collection
       
   548     * "Saved to Music Library"
       
   549     */
       
   550     EMPlayerNoteSavedtoCollection,
       
   551     /**
       
   552     * Confirmation query for adding Album Art.
       
   553     * \em qtn_nmp_query_add_art_to_album
       
   554     * "Album art for all songs in album will be changed. Continue?"
       
   555     */
       
   556     EMPlayerNoteAddArtToAlbum,
       
   557 
       
   558     /**
       
   559     * Confirmation query for adding Songs.
       
   560     * \em qtn_nmp_query_add_songs
       
   561     * "Add songs now?"
       
   562     */
       
   563     EMPlayerNoteAddSongs,
       
   564 
       
   565     /**
       
   566     * Confirmation query for canceling download.
       
   567     * \em qtn_musicshop_note_cancel
       
   568     * "Unable to resume download after cancelling. Cancel anyway?"
       
   569     */
       
   570     EMPlayerNoteMusicshopCancel,
       
   571 
       
   572     /**
       
   573     * Confirmation note for original arlbum art restored.
       
   574     * \em qtn_nmp_note_art_restored
       
   575     * "Original album art restored"
       
   576     */
       
   577     EMPlayerNoteArtRestored,
       
   578 
       
   579     /**
       
   580     * Confirmation note for invalid changing album art.
       
   581     * \em qtn_nmp_note_change_with_invalid
       
   582     * "Album art for some songs could not be changed"
       
   583     */
       
   584     EMPlayerNoteAlbumArtChangeInvalid,
       
   585 
       
   586     /**
       
   587     * Confirmation note for invalid updating songs name.
       
   588     * \em qtn_nmp_note_rename_with_invalid
       
   589     * "Some songs could not be updated with %U name"
       
   590     */
       
   591     EMPlayerNoteRenameInvalid,
       
   592 
       
   593     /**
       
   594     * Confirmation qurey for restoring album art.
       
   595     * \em qtn_nmp_query_restore_art_to_album
       
   596     * "Original art for all songs in album will be restored. Continue?"
       
   597     */
       
   598     EMPlayerNoteRestoreArtToAlbum,
       
   599 
       
   600     /**
       
   601     * Confirmation query for drm not alllowed.
       
   602     * \em qtn_nmp_note_art_changed
       
   603     * "Album art changed"
       
   604     */
       
   605     EMPlayerNoteAlbumArtChanged,
       
   606 
       
   607     /**
       
   608     * Confirmation query for adding single song to playlist.
       
   609     * \em qtn_mus_note_track_added_to_pl1
       
   610     * "Song added to %U"
       
   611     */
       
   612     EMPlayerNoteAddSongToPlaylist,
       
   613 
       
   614     /**
       
   615     * Confirmation query for adding many songs to playlist.
       
   616     * \em qtn_mus_multiple_tracks_added_to_pl1
       
   617     * "%N songs added to %U"
       
   618     */
       
   619     EMPlayerNoteAddManySongToPlaylist,
       
   620 
       
   621     /**
       
   622     * Confirmation query for adding many songs to playlist.
       
   623     * \em qtn_sm_all_serv_failed
       
   624     * "Saving failed "
       
   625     */
       
   626     EMPlayerNoteSavingFailed,
       
   627 
       
   628     /**
       
   629     * Warning Note to warn the user that we wer unable to re-create the DB
       
   630     * after a DB corrupted event has been detected.
       
   631     * \em qtn_nmp_note_out_of_disk_error
       
   632     * "Not enough memory to add songs to library. Delete some data and refresh".
       
   633     */
       
   634     EMPlayerNoteCannotCreateDB,
       
   635 
       
   636     /**
       
   637     * Warning note for adding many songs to playlist.
       
   638     * \em qtn_nmp_exp_warn_n_counts
       
   639     * "Rights for %U will expire after %N uses. Renew license on PC."
       
   640     */
       
   641     EMPlayerNoteDrmExpNUse,
       
   642 
       
   643     /**
       
   644     * Information note after a MTP sync has occured.
       
   645     * \em qtn_nmp_note_library_updated_sync
       
   646     * "Music library was updated during Media Player Sync"
       
   647     */
       
   648     EMPlayerNoteMTPSyncInfo,
       
   649 
       
   650     /**
       
   651     * Information note when not enough memory to perform specified operation.
       
   652     * \em qtn_nmp_memlo_not_enough_memory
       
   653     * "Not enough memory to complete operation. Delete some data first"
       
   654     */
       
   655     EMPlayerNoteNotEnoughMemoryNotification,
       
   656 
       
   657     /**
       
   658     * Information note when making changes to items that are currently playing.
       
   659     * \em qtn_nmp_note_changes_take_effect
       
   660     * "Changes will take effect after %U stopped playing"
       
   661     *
       
   662     */
       
   663     EMPlayerNoteMakingChangesInformationNote,
       
   664 
       
   665     /**
       
   666     * Information note for db scan stopped and songs found.
       
   667     * \em qtn_mus_note_search_stopped1
       
   668     * "Search stopped\nSongs: %0N\nPlaylists: %1N"
       
   669     */
       
   670     EMPlayerNoteDbSearchStoppedItemFound,
       
   671 
       
   672     /**
       
   673     * Information note for db scan stopped and no song found.
       
   674     * \em qtn_mus_note_search_stopped_no_tracks1
       
   675     * "Search stopped\nNothing found"
       
   676     */
       
   677     EMPlayerNoteDbSearchStoppedNothingFound,
       
   678 
       
   679     /**
       
   680     * Information note used to display file deletion failed.
       
   681     * \em qtn_nmp_delete_file_open
       
   682     * "Unable to delete song. It is currently in use."
       
   683     */
       
   684     EMPlayerDeleteFileIsOpened,
       
   685 
       
   686     /**
       
   687     * Information note used to display multiple file deletion failed
       
   688     * \em qtn_nmp_delete_mult_file_open
       
   689     * "Unable to delete some songs. They are currently in use."
       
   690     */
       
   691     EMPlayerDeleteMultFileIsOpened,
       
   692 
       
   693     /**
       
   694     * Information note when cannot play DRM music due to no rights.
       
   695     * \em qtn_nmp_note_drm_expired_playback
       
   696     * "Rights are expired. Unable to play %U"
       
   697     */
       
   698     EMPlayerNoteDrmExpiredPlayback,
       
   699 
       
   700     /**
       
   701     * Information note when all songs to be sent are invalid.
       
   702     * \em qtn_nmp_note_nothing_to_send
       
   703     * "Songs cannot be found. Nothing to send."
       
   704     */
       
   705     EMPlayerNoteSendAllInvalidSongs,
       
   706 
       
   707     /**
       
   708     * Information note when not enough memory to perform a refresh.
       
   709     * \em qtn_nmp_note_no_mem_complete_refresh
       
   710     * "Not enough memory to add more music to the library.
       
   711     * Delete some data first"
       
   712     */
       
   713     EMPlayerNoteCannotCompleteRefresh,
       
   714 
       
   715     /**
       
   716     * Information note for unable to play DRM protected music over bluetooth.
       
   717     * \em qtn_nmp_note_protected_over_bluetooth
       
   718     * "Song is protected. Unable to play over Bluetooth headset".
       
   719     */
       
   720     EMPlayerNoteNoDRMOverBT,
       
   721 
       
   722     /**
       
   723     * Information note when attempting to perform an operation on broken file.
       
   724     * \em qtn_mp_note_broken_file
       
   725     * "File cannot be found. Operation cancelled."
       
   726     */
       
   727     EMPlayerBrokenfile,
       
   728 
       
   729     /**
       
   730     * Information note when attempting to play an invalid playlist.
       
   731     * \em qtn_nmp_note_play_broken_file
       
   732     * "Playlist file cannot be found. Unable to play."
       
   733     */
       
   734     EMPlayerNoteInvalidFile,
       
   735 
       
   736     /**
       
   737     * Information note when WMDRM rights activation key has one count remaining.
       
   738     * \em qtn_nmp_exp_warn_1_count
       
   739     * "Rights for %U will expire in 1 use. Renew license on PC."
       
   740     */
       
   741     EMPlayerNoteWDrmExpOneUse,
       
   742 
       
   743     /**
       
   744     * Information note when WMDRM rights are about to expire in one day.
       
   745     * \em qtn_nmp_exp_warn_1_day
       
   746     * "Rights for %U will expire in 1 day.  Renew license on PC."
       
   747     */
       
   748     EMPlayerNoteWDrmExpOneDay,
       
   749 
       
   750     /**
       
   751     * Information note when WMDRM rights are about to expire.
       
   752     * \em qtn_nmp_exp_warn_today
       
   753     * "Rights for %U will expire today.  Renew license on PC."
       
   754     */
       
   755     EMPlayerNoteWDrmExpToday,
       
   756 
       
   757     /**
       
   758     * Information note when WMDRM rights are about to expire in multiple days.
       
   759     * \em qtn_nmp_exp_warn_n_days
       
   760     * "Rights for %U will expire after %N uses. Renew license on PC."
       
   761     */
       
   762     EMPlayerNoteWDrmExpNDays,
       
   763 
       
   764     /**
       
   765     * Information note when WMDRM rights have expired.
       
   766     * \em qtn_nmp_license_exp
       
   767     * "Unable to play song.  Rights are invalid or expired.  Renew rights on PC."
       
   768     */
       
   769     EMPlayerNoteWDrmLicenseExp,
       
   770 
       
   771     /**
       
   772     * Information note for drm not alllowed.
       
   773     * \em qtn_mp_drm_not_allowed
       
   774     * "Unable to select a copyright protected item."
       
   775     */
       
   776     EMPlayerNoteDrmNotAllowed
       
   777 
       
   778 // Cover UI start
       
   779     ,
       
   780     /**
       
   781     * Query for a new playlist: should tracks be added to it or not?
       
   782     * \em qtn_nmp_query_add_songs
       
   783     * "Add songs now?"
       
   784     */
       
   785     EMPlayerQueryAddSongsToPlaylist,
       
   786 
       
   787     /**
       
   788     * Query whether the selected track should be moved to another library
       
   789     * \em qtn_nmp_query_move_to_library
       
   790     * "Item will be moved to %U library. Some details may be lost. Continue?"
       
   791     */
       
   792     EMPlayerQueryMoveToLibrary,
       
   793 
       
   794     /**
       
   795     * Generic confirmation query. Text can vary, but dialog is modal.
       
   796     * "%U"
       
   797     */
       
   798     EMPlayerQueryConfirmationGeneric,
       
   799 
       
   800     /**
       
   801     * Query for name for a playlist to be created.
       
   802     * \em qtn_mp_enter_pl_name
       
   803     * "Playlist name:"
       
   804     */
       
   805     EMPlayerQueryCreatePlaylist,
       
   806 
       
   807     /**
       
   808     * Query for new name for an item.
       
   809     * \em qtn_nmp_prmpt_new_name
       
   810     * "New name:"
       
   811     */
       
   812     EMPlayerQueryPrmptNewName,
       
   813 
       
   814     /**
       
   815     * Progress dialog for USB connection in progress.
       
   816     * \em qtn_nmp_note_usb_connection_in_progress
       
   817     * "USB connection in progress"
       
   818     */
       
   819     EMPlayerUSBConnectionInProgress,
       
   820 
       
   821 
       
   822     /**
       
   823     * Progress dialog for USB connection in progress.
       
   824     * \em qtn_nmp_note_usb_connection_in_progress
       
   825     * "USB connection in progress"
       
   826     */
       
   827     EMPlayerMTPConnectionInProgress,
       
   828 
       
   829     /**
       
   830     * Progress dialog for formatting wait note.
       
   831     * \em qtn_nmp_note_mp_unavailable_mmc
       
   832     * "Music Player unable to access memory card. Memory card operation underway."
       
   833     */
       
   834     EMPlayerFormatting
       
   835 
       
   836 // Cover UI end
       
   837     };
       
   838 #endif // MPLAYERSECONDARYDISPLAYAPI_H