1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-31 11:35:24 +01:00

updating SIPs

This commit is contained in:
Paweł Bara 2011-03-10 18:12:56 +00:00
parent 8722e00103
commit 7c86b0c7a5
2 changed files with 11 additions and 1 deletions

View File

@ -52,6 +52,10 @@ signals:
void Seeked(qlonglong microseconds);
// Emitted when Player has processed a request to play another song. This contains
// the URL of the song and a flag saying whether it was able to play the song.
void SongChangeRequestProcessed(const QUrl& url, bool valid);
void ForceShowOSD(Song);
private:

View File

@ -70,7 +70,7 @@ marked in any of these ways.
playcount, skipcount, lastplayed, score, cue_path, has_cue, beginning_nanosec,
end_nanosec, length_nanosec, bitrate, samplerate, directory_id, filename,
basefilename, mtime, ctime, filesize, filetype, art_automatic, art_manual,
has_manually_unset_cover, has_embedded_cover, image, IsEditable,
has_manually_unset_cover, has_embedded_cover, image, url, IsEditable,
IsMetadataEqual
@group Pretty getters: PrettyTitle, PrettyTitleWithArtist, PrettyLength,
PrettyYear, TitleWithCompilationArtist
@ -318,6 +318,12 @@ The filename I{or URL} of this song.
%Docstring
basefilename() -> str
The filename of this song without any directory component.
%End
QUrl url() const;
%Docstring
url() -> QUrl
URL for this song which may point either to a file or to another type of stream.
%End
uint mtime() const;