You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

157 lines
5.3 KiB
C++

/* === This file is part of Calamares - <https://github.com/calamares> ===
*
* Copyright 2017-2018, Adriaan de Groot <groot@kde.org>
*
* Calamares 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.
*
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#include "TrackingPage.h"
#include "Config.h"
#include "ui_page_trackingstep.h"
#include "Branding.h"
#include "GlobalStorage.h"
#include "JobQueue.h"
#include "ViewManager.h"
#include "utils/CalamaresUtilsGui.h"
#include "utils/Logger.h"
#include "utils/Retranslator.h"
#include <QDesktopServices>
#include <QLabel>
TrackingPage::TrackingPage( Config* config, QWidget* parent )
: QWidget( parent )
, ui( new Ui::TrackingPage )
{
ui->setupUi( this );
CALAMARES_RETRANSLATE_SLOT( &TrackingPage::retranslate );
ui->noneCheckBox->setChecked( true );
ui->noneCheckBox->setEnabled( false );
connect( ui->noneCheckBox, &QCheckBox::stateChanged, this, &TrackingPage::buttonNoneChecked );
// Each "panel" of configuration has the same kind of setup,
// where the xButton and xCheckBox is connected to the xTracking
// configuration object; that takes macro-trickery, unfortunately.
#define trackingSetup( x ) \
do \
{ \
connect( ui->x##CheckBox, &QCheckBox::stateChanged, this, &TrackingPage::buttonChecked ); \
connect( ui->x##CheckBox, \
&QCheckBox::stateChanged, \
config->x##Tracking(), \
QOverload< bool >::of( &TrackingStyleConfig::setTracking ) ); \
connect( config->x##Tracking(), &TrackingStyleConfig::trackingChanged, this, [this, config]() { \
this->trackerChanged( config->x##Tracking(), this->ui->x##Group, this->ui->x##CheckBox ); \
} ); \
connect( ui->x##PolicyButton, &QAbstractButton::clicked, config, [config] { \
QString url( config->x##Tracking()->policy() ); \
if ( !url.isEmpty() ) \
{ \
QDesktopServices::openUrl( url ); \
} \
} ); \
} while ( false )
trackingSetup( install );
trackingSetup( machine );
trackingSetup( user );
#undef trackingSetup
connect( config, &Config::generalPolicyChanged, [this]( const QString& url ) {
this->ui->generalPolicyLabel->setVisible( !url.isEmpty() );
} );
connect( ui->generalPolicyLabel, &QLabel::linkActivated, [config] {
QString url( config->generalPolicy() );
if ( !url.isEmpty() )
{
QDesktopServices::openUrl( url );
}
} );
retranslate();
}
void
TrackingPage::retranslate()
{
QString product = Calamares::Branding::instance()->shortProductName();
ui->retranslateUi( this );
ui->generalExplanation->setText(
tr( "Tracking helps %1 to see how often it is installed, what hardware it is installed on and "
"which applications are used. To see what "
"will be sent, please click the help icon next to each area." )
.arg( product ) );
ui->installExplanation->setText(
tr( "By selecting this you will send information about your installation and hardware. This information "
"will only be sent <b>once</b> after the installation finishes." ) );
ui->machineExplanation->setText(
tr( "By selecting this you will periodically send information about your <b>machine</b> installation, "
"hardware and applications, to %1." )
.arg( product ) );
ui->userExplanation->setText(
tr( "By selecting this you will regularly send information about your "
"<b>user</b> installation, hardware, applications and application usage patterns, to %1." )
.arg( product ) );
}
bool
TrackingPage::anyOtherChecked() const
{
return ui->installCheckBox->isChecked() || ui->machineCheckBox->isChecked() || ui->userCheckBox->isChecked();
}
void
TrackingPage::buttonNoneChecked( int state )
{
if ( state )
{
cDebug() << "Unchecking all other buttons because 'None' was checked";
ui->installCheckBox->setChecked( false );
ui->machineCheckBox->setChecked( false );
ui->userCheckBox->setChecked( false );
ui->noneCheckBox->setEnabled( false );
}
}
void
TrackingPage::buttonChecked( int state )
{
if ( state )
{
// Can't have none checked, if another one is
ui->noneCheckBox->setEnabled( true );
ui->noneCheckBox->setChecked( false );
}
else
{
if ( !anyOtherChecked() )
{
ui->noneCheckBox->setChecked( true );
ui->noneCheckBox->setEnabled( false );
}
}
}
void
TrackingPage::trackerChanged( TrackingStyleConfig* config, QWidget* panel, QCheckBox* check )
{
panel->setVisible( config->isConfigurable() );
check->setChecked( config->isEnabled() );
}