/src/libtomahawk/SourcePlaylistInterface.h
http://github.com/tomahawk-player/tomahawk · C Header · 89 lines · 50 code · 21 blank · 18 comment · 0 complexity · c294ba38d18e1f35bb29cfb30894ec60 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- * Copyright 2010-2012, Jeff Mitchell <jeff@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 TOMAHAWKSOURCEPLAYLISTINTERFACE_H
- #define TOMAHAWKSOURCEPLAYLISTINTERFACE_H
- #include <QObject>
- #include <QPointer>
- #include "Typedefs.h"
- #include "PlaylistInterface.h"
- #include "DllMacro.h"
- namespace Tomahawk
- {
- class DLLEXPORT SourcePlaylistInterface : public Tomahawk::PlaylistInterface
- {
- Q_OBJECT
- public:
- SourcePlaylistInterface( Tomahawk::Source* source, Tomahawk::PlaylistModes::LatchMode latchMode = PlaylistModes::StayOnSong );
- virtual ~SourcePlaylistInterface();
- QList<Tomahawk::query_ptr> tracks() const;
- virtual int trackCount() const { return 1; }
- virtual void setCurrentIndex( qint64 index );
- virtual Tomahawk::result_ptr resultAt( qint64 index ) const;
- virtual Tomahawk::query_ptr queryAt( qint64 index ) const;
- virtual qint64 indexOfResult( const Tomahawk::result_ptr& result ) const;
- virtual qint64 indexOfQuery( const Tomahawk::query_ptr& query ) const { Q_UNUSED( query ); Q_ASSERT( false ); return -1; }
- virtual qint64 siblingIndex( int itemsAway, qint64 rootIndex = -1 ) const;
- virtual bool sourceValid() const;
- virtual bool hasNextResult() const;
- virtual Tomahawk::result_ptr nextResult() const;
- virtual Tomahawk::result_ptr currentItem() const;
- virtual PlaylistModes::RepeatMode repeatMode() const { return PlaylistModes::NoRepeat; }
- virtual PlaylistModes::SeekRestrictions seekRestrictions() const { return PlaylistModes::NoSeek; }
- virtual PlaylistModes::SkipRestrictions skipRestrictions() const { return PlaylistModes::NoSkipBackwards; }
- virtual PlaylistModes::RetryMode retryMode() const { return PlaylistModes::Retry; }
- virtual quint32 retryInterval() const { return 5000; }
- virtual void setLatchMode( PlaylistModes::LatchMode latchMode ) { m_latchMode = latchMode; emit latchModeChanged( latchMode ); }
- virtual bool shuffled() const { return false; }
- virtual QPointer< Tomahawk::Source > source() const;
- virtual void reset();
- public slots:
- virtual void setRepeatMode( PlaylistModes::RepeatMode ) {}
- virtual void setShuffled( bool ) {}
- virtual void audioPaused() { setLatchMode( PlaylistModes::StayOnSong ); }
- private slots:
- void onSourcePlaybackStarted( const Tomahawk::track_ptr& track );
- void resolvingFinished( bool hasResults );
- private:
- QPointer< Tomahawk::Source > m_source;
- mutable Tomahawk::result_ptr m_currentItem;
- mutable bool m_gotNextItem;
- };
- }; // ns
- #endif