diff --git a/src/libtomahawk/Source.cpp b/src/libtomahawk/Source.cpp index 8e7fd96c4..2c1e2489f 100644 --- a/src/libtomahawk/Source.cpp +++ b/src/libtomahawk/Source.cpp @@ -2,6 +2,7 @@ * * Copyright 2010-2011, Christian Muehlhaeuser * Copyright 2010-2012, Jeff Mitchell + * Copyright 2013, Uwe L. Korn * * Tomahawk is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -87,6 +88,18 @@ Source::~Source() tDebug() << Q_FUNC_INFO << friendlyName(); } +bool +Source::isLocal() const +{ + return m_isLocal; +} + +bool +Source::isOnline() const +{ + return m_online || m_isLocal; +} + bool Source::setControlConnection( ControlConnection* cc ) @@ -147,6 +160,12 @@ Source::dbCollection() const return tmp; } +QList +Source::collections() const +{ + return m_collections; +} + void Source::setStats( const QVariantMap& m ) @@ -343,6 +362,18 @@ Source::removeCollection( const collection_ptr& c ) emit collectionRemoved( c ); } +int +Source::id() const +{ + return m_id; +} + +ControlConnection* +Source::controlConnection() const +{ + return m_cc.data(); +} + void Source::handleDisconnect( Tomahawk::Accounts::Account*, Tomahawk::Accounts::AccountManager::DisconnectReason reason ) { @@ -484,6 +515,12 @@ Source::trackCount() const return m_stats.value( "numfiles", 0 ).toUInt(); } +query_ptr +Source::currentTrack() const +{ + return m_currentTrack; +} + Tomahawk::playlistinterface_ptr Source::playlistInterface() @@ -700,3 +737,9 @@ Source::textStatus() const return tr( "Offline" ); } } + +DBSyncConnection::State +Source::state() const +{ + return m_state; +} diff --git a/src/libtomahawk/Source.h b/src/libtomahawk/Source.h index 16e41876d..bae449275 100644 --- a/src/libtomahawk/Source.h +++ b/src/libtomahawk/Source.h @@ -61,8 +61,8 @@ public: explicit Source( int id, const QString& nodeId = QString() ); virtual ~Source(); - bool isLocal() const { return m_isLocal; } - bool isOnline() const { return m_online || m_isLocal; } + bool isLocal() const; + bool isOnline() const; QString nodeId() const; @@ -79,12 +79,12 @@ public: #endif collection_ptr dbCollection() const; - QList< Tomahawk::collection_ptr > collections() const { return m_collections; } + QList< Tomahawk::collection_ptr > collections() const; void addCollection( const Tomahawk::collection_ptr& c ); void removeCollection( const Tomahawk::collection_ptr& c ); - int id() const { return m_id; } - ControlConnection* controlConnection() const { return m_cc.data(); } + int id() const; + ControlConnection* controlConnection() const; bool setControlConnection( ControlConnection* cc ); const QSet< Tomahawk::peerinfo_ptr > peerInfos() const; @@ -94,9 +94,9 @@ public: unsigned int trackCount() const; - Tomahawk::query_ptr currentTrack() const { return m_currentTrack; } + Tomahawk::query_ptr currentTrack() const; QString textStatus() const; - DBSyncConnection::State state() const { return m_state; } + DBSyncConnection::State state() const; Tomahawk::playlistinterface_ptr playlistInterface();