X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Ftagresolver.h;h=074d5b4d358aa5a6e92dae356fcd48a9012934d0;hb=875c27609dcd0863a74b140b7087b976545e1596;hp=993711ed23837dff9bd33493017726bacbc3af7a;hpb=c92d96e01d110d72cee8e8d307667507bf5d6fff;p=someplayer diff --git a/src/tagresolver.h b/src/tagresolver.h index 993711e..074d5b4 100644 --- a/src/tagresolver.h +++ b/src/tagresolver.h @@ -1,11 +1,28 @@ +/* + * 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; @@ -20,17 +37,13 @@ namespace SomePlayer { explicit TagResolver(QObject *parent = 0); public slots: void decode (QStringList files); + void updateTags(Track); + Track decodeOne (QString filepath); signals: void decoded(Track); - - private slots: - void metaStateChanged(Phonon::State newState, Phonon::State /*oldState*/); - private: - QStringList _files; - Phonon::MediaObject *_metaObject; - QList _sources; - + void done(); + void started(); }; }; };