/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.h
http://github.com/tomahawk-player/tomahawk · C Header · 107 lines · 61 code · 26 blank · 20 comment · 0 complexity · b6f4fd3ca7585a377b30e02491d7f6ef MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Leo Franchi <lfranchi@kde.org>
- *
- * Tomahawk 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 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef ECHONEST_CONTROL_H
- #define ECHONEST_CONTROL_H
- #include "playlist/dynamic/DynamicControl.h"
- #include <QTimer>
- #include <QPointer>
- #include <echonest5/Playlist.h>
- namespace Tomahawk
- {
- class EchonestControl : public DynamicControl
- {
- Q_OBJECT
- public:
- virtual QWidget* inputField();
- virtual QWidget* matchSelector();
- /// Converts this to an echonest suitable parameter
- Echonest::DynamicPlaylist::PlaylistParamData toENParam() const;
- virtual QString input() const;
- virtual QString match() const;
- virtual QString matchString() const;
- virtual QString summary() const;
- virtual void setInput(const QString& input);
- virtual void setMatch(const QString& match);
- /// DO NOT USE IF YOU ARE NOT A DBCMD
- EchonestControl( const QString& type, const QStringList& typeSelectors, QObject* parent = 0 );
- public slots:
- virtual void setSelectedType ( const QString& type );
- private slots:
- void updateData();
- void editingFinished();
- void editTimerFired();
- void artistTextEdited( const QString& );
- void suggestFinished();
- void checkForMoodsStylesOrGenresFetched();
- private:
- void updateWidgets();
- void updateWidgetsFromData();
- // utility
- void setupMinMaxWidgets( Echonest::DynamicPlaylist::PlaylistParam min, Echonest::DynamicPlaylist::PlaylistParam max, const QString& leftL, const QString& rightL, int maxRange );
- void updateFromComboAndSlider( bool smooth = false );
- void updateFromLabelAndCombo();
- bool insertMoodsStylesAndGenres();
- void updateToComboAndSlider( bool smooth = false );
- void updateToLabelAndCombo();
- void addArtistSuggestions( const QStringList& suggestions );
- void calculateSummary();
- Echonest::DynamicPlaylist::PlaylistParam m_currentType;
- int m_overrideType;
- QPointer< QWidget > m_input;
- QPointer< QWidget > m_match;
- QString m_matchData;
- QString m_matchString;
- QString m_summary;
- QTimer m_editingTimer;
- QTimer m_delayedEditTimer;
- Echonest::DynamicPlaylist::PlaylistParamData m_data;
- QVariant m_cacheData;
- static bool s_fetchingMoodsStylesAndGenres;
- static int s_stylePollCount;
- QSet< QNetworkReply* > m_suggestWorkers;
- static QHash< QString, QStringList > s_suggestCache;
- friend class EchonestGenerator;
- };
- };
- #endif