Start/ | End/ | |||
True | False | - | Line | Source |
1 | /* | |||
2 | * Copyright (c) 2009 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: Wrapper for mpx framework utilities. | |||
15 | * | |||
16 | */ | |||
17 | ||||
18 | #include "mpengine.h" | |||
19 | ||||
20 | #include "mptrace.h" | |||
21 | ||||
22 | ||||
Top | ||||
0 | 0 | - | 23 | MpEngine::MpEngine() |
24 | { | |||
25 | TX_LOG_ARGS("Stub") | |||
26 | } | |||
27 | ||||
28 | /*! | |||
29 | Destructs music player engine. | |||
30 | */ | |||
Top | ||||
0 | 0 | - | 31 | MpEngine::~MpEngine() |
32 | { | |||
33 | TX_ENTRY_ARGS("Stub") | |||
34 | } | |||
35 | ||||
Top | ||||
0 | 0 | - | 36 | void MpEngine::refreshLibrary() |
37 | { | |||
38 | TX_ENTRY_ARGS("Stub") | |||
39 | } | |||
40 | ||||
Top | ||||
0 | 0 | - | 41 | bool MpEngine::verifyUsbBlocking( bool showMessage ) |
42 | { | |||
43 | TX_ENTRY_ARGS("Stub") | |||
0 | - | 44 | return false; | |
45 | } | |||
46 | ||||
Top | ||||
0 | 0 | - | 47 | void MpEngine::checkForSystemEvents() |
48 | { | |||
49 | TX_ENTRY_ARGS("Stub") | |||
50 | } | |||
51 | ||||
Top | ||||
0 | 0 | - | 52 | void MpEngine::handleScanStarted() |
53 | { | |||
54 | TX_ENTRY_ARGS("Stub") | |||
55 | } | |||
56 | ||||
Top | ||||
0 | 0 | - | 57 | void MpEngine::handleScanEnded( int count, int error ) |
58 | { | |||
59 | TX_ENTRY_ARGS("Stub") | |||
60 | } | |||
61 | ||||
Top | ||||
0 | 0 | - | 62 | void MpEngine::handleDiskEvent( MpxDiskEvents event ) |
63 | { | |||
64 | TX_ENTRY_ARGS("Stub") | |||
65 | } | |||
66 | ||||
Top | ||||
0 | 0 | - | 67 | void MpEngine::handleUsbEvent( MpxUsbEvents event ) |
68 | { | |||
69 | TX_ENTRY_ARGS("Stub") | |||
70 | } | |||
71 | ||||
Top | ||||
0 | 0 | - | 72 | void MpEngine::handleBlockingNoteClosing() |
73 | { | |||
74 | TX_ENTRY_ARGS("Stub") | |||
75 | } | |||
76 | ||||
Top | ||||
0 | 0 | - | 77 | void MpEngine::openCollection( TCollectionContext context ) |
78 | { | |||
79 | TX_ENTRY_ARGS("Stub") | |||
80 | } | |||
81 | ||||
Top | ||||
0 | 0 | - | 82 | void MpEngine::openCollectionItem( int index ) |
83 | { | |||
84 | TX_ENTRY_ARGS("Stub") | |||
85 | } | |||
86 | ||||
Top | ||||
0 | 0 | - | 87 | void MpEngine::back() |
88 | { | |||
89 | TX_ENTRY_ARGS("Stub") | |||
90 | } | |||
91 | ||||
Top | ||||
0 | 0 | - | 92 | void MpEngine::findPlaylists( QStringList &playlists ) |
93 | { | |||
94 | TX_ENTRY_ARGS("Stub") | |||
95 | } | |||
96 | ||||
Top | ||||
0 | 0 | - | 97 | void MpEngine::createPlaylist( QString &playlistName, QList<int> &selection, MpMpxCollectionData* collectionData ) |
98 | { | |||
99 | TX_ENTRY_ARGS("Stub") | |||
100 | } | |||
101 | ||||
Top | ||||
0 | 0 | - | 102 | void MpEngine::saveToPlaylist( int playlistIndex, QList<int> &selection ) |
103 | { | |||
104 | TX_ENTRY_ARGS("Stub") | |||
105 | } | |||
106 | ||||
Top | ||||
0 | 0 | - | 107 | void MpEngine::renamePlaylist( QString &newName, int index ) |
108 | { | |||
109 | TX_ENTRY_ARGS("Stub") | |||
110 | } | |||
111 | ||||
Top | ||||
0 | 0 | - | 112 | void MpEngine::saveToCurrentPlaylist( QList<int> &selection, MpMpxCollectionData *collectionData ) |
113 | { | |||
114 | TX_ENTRY_ARGS("Stub") | |||
115 | } | |||
116 | ||||
Top | ||||
0 | 0 | - | 117 | void MpEngine::renamePlaylist( QString &newName ) |
118 | { | |||
119 | TX_ENTRY_ARGS("Stub") | |||
120 | } | |||
121 | ||||
Top | ||||
0 | 0 | - | 122 | void MpEngine::deleteSongs( QList<int> &selection ) |
123 | { | |||
124 | TX_ENTRY_ARGS("Stub") | |||
125 | } | |||
126 | ||||
Top | ||||
0 | 0 | - | 127 | void MpEngine::previewItem( int index ) |
128 | { | |||
129 | TX_ENTRY_ARGS("Stub") | |||
130 | } | |||
131 | ||||
Top | ||||
0 | 0 | - | 132 | void MpEngine::openIsolatedCollection( TCollectionContext context ) |
133 | { | |||
134 | TX_ENTRY_ARGS("Stub") | |||
135 | } | |||
136 | ||||
Top | ||||
0 | 0 | - | 137 | void MpEngine::releaseIsolatedCollection() |
138 | { | |||
139 | TX_ENTRY_ARGS("Stub") | |||
140 | } | |||
141 | ||||
Top | ||||
0 | 0 | - | 142 | void MpEngine::findAlbumSongs( int index ) |
143 | { | |||
144 | TX_ENTRY_ARGS("Stub") | |||
145 | } | |||
146 | ||||
Top | ||||
0 | 0 | - | 147 | void MpEngine::playAlbumSongs( int albumIndex, int songIndex ) |
148 | { | |||
149 | TX_ENTRY_ARGS("Stub") | |||
150 | } | |||
151 | ||||
Top | ||||
0 | 0 | - | 152 | MpMpxCollectionData *MpEngine::collectionData() |
153 | { | |||
154 | TX_ENTRY_ARGS("Stub") | |||
0 | - | 155 | return false; | |
156 | } | |||
157 | ||||
Top | ||||
0 | 0 | - | 158 | void MpEngine::reopenCollection() |
159 | { | |||
160 | TX_ENTRY_ARGS("Stub") | |||
161 | } | |||
162 | ||||
Top | ||||
0 | 0 | - | 163 | void MpEngine::reorderPlaylist( int playlistId, int songId, int originalOrdinal, int newOrdinal ) |
164 | { | |||
165 | TX_ENTRY_ARGS("Stub") | |||
166 | } | |||
167 | ||||
Top | ||||
0 | 0 | - | 168 | MpPlaybackData *MpEngine::playbackData() |
169 | { | |||
170 | TX_ENTRY_ARGS("Stub") | |||
0 | - | 171 | return false; | |
172 | } | |||
173 | ||||
174 | ||||
Top | ||||
0 | 0 | - | 175 | void MpEngine::playEmbedded( QString aFilename ) |
176 | { | |||
177 | TX_ENTRY_ARGS("Stub") | |||
178 | } | |||
179 | ||||
Top | ||||
0 | 0 | - | 180 | void MpEngine::playEmbedded(const XQSharableFile& file ) |
181 | { | |||
182 | TX_ENTRY_ARGS("Stub") | |||
183 | } | |||
184 | ||||
Top | ||||
0 | 0 | - | 185 | void MpEngine::playPause() |
186 | { | |||
187 | TX_ENTRY_ARGS("Stub") | |||
188 | } | |||
189 | ||||
Top | ||||
0 | 0 | - | 190 | void MpEngine::stop() |
191 | { | |||
192 | TX_ENTRY_ARGS("Stub") | |||
193 | } | |||
194 | ||||
Top | ||||
0 | 0 | - | 195 | void MpEngine::skipForward() |
196 | { | |||
197 | TX_ENTRY_ARGS("Stub") | |||
198 | } | |||
199 | ||||
Top | ||||
0 | 0 | - | 200 | void MpEngine::skipBackward() |
201 | { | |||
202 | TX_ENTRY_ARGS("Stub") | |||
203 | } | |||
204 | ||||
Top | ||||
0 | 0 | - | 205 | void MpEngine::setPosition( int position ) |
206 | { | |||
207 | TX_ENTRY_ARGS("Stub") | |||
208 | } | |||
209 | ||||
Top | ||||
0 | 0 | - | 210 | void MpEngine::setShuffle( bool mode ) |
211 | { | |||
212 | TX_ENTRY_ARGS("Stub") | |||
213 | } | |||
214 | ||||
Top | ||||
0 | 0 | - | 215 | void MpEngine::setRepeat( bool mode ) |
216 | { | |||
217 | TX_ENTRY_ARGS("Stub") | |||
218 | } | |||
219 | ||||
Top | ||||
4 | 0 | 220 | MpSongData *MpEngine::songData() | |
221 | { | |||
222 | TX_ENTRY_ARGS("Stub") | |||
4 | 223 | return 0; | ||
224 | } | |||
225 | ||||
Top | ||||
1 | 1 | 226 | void MpEngine::retrieveSong() | |
227 | { | |||
228 | TX_ENTRY_ARGS("Stub") | |||
229 | } | |||
***TER 7% (3/44) of SOURCE FILE mpengine.cpp |