X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Ftagresolver.h;h=074d5b4d358aa5a6e92dae356fcd48a9012934d0;hb=9171ce8d32ef99f598ec1c1eefed07e13616e54c;hp=123072b5dfd4eb2026056b0fe25e0c14217a38db;hpb=dd00ef6be1a5989020c9ae2c1fa6c17910b260d1;p=someplayer diff --git a/src/tagresolver.h b/src/tagresolver.h index 123072b..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,18 +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); void done(); - - private slots: - void metaStateChanged(Phonon::State newState, Phonon::State /*oldState*/); - private: - QStringList _files; - Phonon::MediaObject *_metaObject; - QList _sources; - + void started(); }; }; };