/src/libtomahawk/sip/SipPlugin.cpp
http://github.com/tomahawk-player/tomahawk · C++ · 102 lines · 60 code · 22 blank · 20 comment · 2 complexity · 34e05e4fc136af229b382905d51bd41f MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- * 2011, Dominik Schmidt <dev@dominik-schmidt.de>
- * 2010-2011, Leo Franchi <lfranchi@kde.org>
- * Copyright 2010-2011, 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/>.
- */
- #include "sip/SipPlugin.h"
- #include "utils/Logger.h"
- #include "Source.h"
- #include "sip/PeerInfo.h"
- SipPlugin::SipPlugin() : QObject() {}
- SipPlugin::~SipPlugin() {}
- SipPlugin::SipPlugin( Tomahawk::Accounts::Account *account, QObject* parent )
- : QObject( parent )
- , m_account( account )
- {
- connect( account, SIGNAL( configurationChanged() ), SLOT( configurationChanged() ) );
- }
- QString
- SipPlugin::pluginId() const
- {
- return m_account->accountId();
- }
- const QString
- SipPlugin::friendlyName() const
- {
- return m_account->accountFriendlyName();
- }
- const QString
- SipPlugin::serviceName() const
- {
- return m_account->accountServiceName();
- }
- QString
- SipPlugin::inviteString() const
- {
- return QString();
- }
- QMenu*
- SipPlugin::menu()
- {
- return nullptr;
- }
- Tomahawk::Accounts::Account*
- SipPlugin::account() const
- {
- return m_account;
- }
- const QList< Tomahawk::peerinfo_ptr >
- SipPlugin::peersOnline() const
- {
- QList< Tomahawk::peerinfo_ptr > result;
- foreach( const Tomahawk::peerinfo_ptr& peerInfo, Tomahawk::PeerInfo::getAll() )
- {
- if(peerInfo->sipPlugin() == this)
- result.append( peerInfo );
- }
- return result;
- }
- void SipPlugin::setAllPeersOffline()
- {
- foreach( const Tomahawk::peerinfo_ptr& peerInfo, peersOnline() )
- {
- peerInfo->setStatus( Tomahawk::PeerInfo::Offline );
- }
- }