1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-04 16:12:24 +02:00

Merge branch 'stable'

This commit is contained in:
Jeff Mitchell 2011-03-27 16:10:40 -04:00
commit cedcfdb714
3 changed files with 29 additions and 0 deletions

View File

@ -89,6 +89,17 @@ TomahawkSettings::hasScannerPath() const
return contains( "scannerpath" );
}
void
TomahawkSettings::setAcceptedLegalWarning( bool accept )
{
setValue( "acceptedLegalWarning", accept );
}
bool
TomahawkSettings::acceptedLegalWarning() const
{
return value( "acceptedLegalWarning", false ).toBool();
}
bool
TomahawkSettings::httpEnabled() const

View File

@ -45,6 +45,9 @@ public:
void setScannerPath( const QString& path );
bool hasScannerPath() const;
bool acceptedLegalWarning() const;
void setAcceptedLegalWarning( bool accept );
/// UI settings
QByteArray mainWindowGeometry() const;
void setMainWindowGeometry( const QByteArray& geom );

View File

@ -28,6 +28,7 @@
#include "network/controlconnection.h"
#include "sourcelist.h"
#include "tomahawksettings.h"
#include "tomahawk/tomahawkapp.h"
#include "config.h"
@ -168,6 +169,20 @@ SipHandler::pluginLoaded( const QString& name ) const
void
SipHandler::connectPlugins( bool startup, const QString &pluginName )
{
#ifndef TOMAHAWK_HEADLESS
if ( !TomahawkSettings::instance()->acceptedLegalWarning() )
{
int result = QMessageBox::question(
TomahawkApp::instance()->mainWindow(), "Legal Warning",
"By pressing OK below, you agree that your use of Tomahawk will be in accordance with any applicable laws, including copyright and intellectual property laws, in effect in your country of residence, and indemify the Tomahawk developers and project from liability should you choose to break those laws.\n\nFor more information, please see http://gettomahawk.com/legal",
"I Do Not Agree", "I Agree"
);
if ( result != 1 )
return;
else
TomahawkSettings::instance()->setAcceptedLegalWarning( true );
}
#endif
foreach( SipPlugin* sip, m_plugins )
{
if ( pluginName.isEmpty() || ( !pluginName.isEmpty() && sip->name() == pluginName ) )