X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Ftagresolver.h;h=074d5b4d358aa5a6e92dae356fcd48a9012934d0;hb=2a1cf9a16d15506f9693338a8cd1d174e5e98805;hp=1a0a405ef07752eb21e5c376c92ba539b2c427b0;hpb=7b2a40e92ca217556f2ea5dbb95248b2800909a1;p=someplayer diff --git a/src/tagresolver.h b/src/tagresolver.h index 1a0a405..074d5b4 100644 --- a/src/tagresolver.h +++ b/src/tagresolver.h @@ -1,32 +1,50 @@ +/* + * 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 TAGRESOLVER_H #define TAGRESOLVER_H #include #include "someplayer.h" #include "track.h" -#include -#include using SomePlayer::DataObjects::Track; -class TagResolver : public QObject -{ - Q_OBJECT -public: - explicit TagResolver(QObject *parent = 0); -public slots: - void decode (QStringList files); +namespace SomePlayer { + namespace DataObjects { -signals: - void decoded(Track); + class TagResolver : public QObject + { -private slots: - void metaStateChanged(Phonon::State newState, Phonon::State /*oldState*/); -private: - QStringList _files; - Phonon::MediaObject *_metaObject; - QList _sources; + Q_OBJECT + public: + explicit TagResolver(QObject *parent = 0); + public slots: + void decode (QStringList files); + void updateTags(Track); + Track decodeOne (QString filepath); + signals: + void decoded(Track); + void done(); + void started(); + }; + }; }; - #endif // TAGRESOLVER_H