X-Git-Url: http://git.maemo.org/git/?p=someplayer;a=blobdiff_plain;f=src%2Flibrary.h;h=b7e674b5c1eac3a93b79b94a064fbc31238d3764;hp=c9e460abf2ba3d49a1d57cf4b743316166973aa1;hb=40103460aba82191a72f1e6d852b70f96e6fbdae;hpb=a33363a44394be6efff8593737eaa53efd9b6c01 diff --git a/src/library.h b/src/library.h index c9e460a..b7e674b 100644 --- a/src/library.h +++ b/src/library.h @@ -1,3 +1,22 @@ +/* + * SomePlayer - An alternate music player for Maemo 5 + * Copyright (C) 2010 Nikolay (somebody) Tischenko + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + #ifndef LIBRARY #define LIBRARY @@ -9,9 +28,6 @@ #include "mediascanner.h" #include "tagresolver.h" -#define _DATABASE_PATH_ "/tmp" -#define _PLAYLISTS_PATH_ "/tmp" - // represents media library: tracks, playlists // it uses different media storages for tracks and playlists // but dynamic playlits will be stored with tracks into the same storage @@ -46,12 +62,16 @@ namespace SomePlayer { QList getPlaylists(); QStringList getPlaylistsNames(); Playlist getPlaylist(QString name); - void savePlaylist(Playlist playlist); - void removePlaylist(Playlist playlist); + void savePlaylist(const Playlist &playlist); + void removePlaylist(const Playlist &playlist); void removePlaylist(QString name); Playlist getCurrentPlaylist(); - void saveCurrentPlaylist(Playlist playlist); + void saveCurrentPlaylist(const Playlist &playlist); + + signals: + void done(); + void busy(QString); private: DbStorage *_library_storage;