/src/libtomahawk/infosystem/infoplugins/mac/adiumplugin.h
http://github.com/tomahawk-player/tomahawk · C Header · 91 lines · 51 code · 23 blank · 17 comment · 0 complexity · d110ba620b74ad13001dbcf01c20c9e2 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.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 ADIUMPLUGIN_H
- #define ADIUMPLUGIN_H
- #include "infosystem/infosystem.h"
- #include <QNetworkAccessManager>
- #include <QObject>
- #include <QVariant>
- #include <QWeakPointer>
- class QTimer;
- namespace Tomahawk {
- namespace InfoSystem {
- class AdiumPlugin : public InfoPlugin
- {
- Q_OBJECT
- public:
- AdiumPlugin();
- virtual ~AdiumPlugin();
- protected slots:
- virtual void getInfo( Tomahawk::InfoSystem::InfoRequestData requestData )
- {
- Q_UNUSED( requestData );
- }
-
- void pushInfo( QString caller, Tomahawk::InfoSystem::InfoType type, QVariant input );
- public slots:
- virtual void notInCacheSlot( const Tomahawk::InfoSystem::InfoStringHash criteria, Tomahawk::InfoSystem::InfoRequestData requestData )
- {
- Q_UNUSED( criteria );
- Q_UNUSED( requestData );
- }
- private slots:
- void shortLinkReady( QUrl longUrl, QUrl shortUrl );
- void clearStatus();
- void settingsChanged();
- private:
- void audioStarted( const QVariant &input );
- void audioFinished( const QVariant &input );
- void audioStopped();
- void audioPaused();
- void audioResumed( const QVariant &input );
- QUrl openLinkFromHash( const InfoStringHash& hash ) const;
- bool m_active;
- QString m_beforeStatus;
- QString m_afterStatus;
- QString m_currentTitle;
- QString m_currentArtist;
- QUrl m_currentLongUrl;
- QTimer* m_pauseTimer;
- QWeakPointer<QNetworkAccessManager> m_nam;
- };
- }
- }
- #endif // ADIUMPLUGIN_H