2017-12-20 14:39:09 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2017-08-29 14:00:37 +02:00
|
|
|
*
|
|
|
|
* Copyright 2017, 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TRACKINGPAGE_H
|
|
|
|
#define TRACKINGPAGE_H
|
|
|
|
|
2017-11-08 10:25:36 +01:00
|
|
|
#include "TrackingType.h"
|
|
|
|
|
2020-06-17 12:20:35 +02:00
|
|
|
#include <QCheckBox>
|
2017-08-29 14:00:37 +02:00
|
|
|
#include <QUrl>
|
2019-08-01 23:05:42 +02:00
|
|
|
#include <QWidget>
|
2017-08-29 14:00:37 +02:00
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class TrackingPage;
|
|
|
|
}
|
|
|
|
|
2020-05-12 14:39:42 +02:00
|
|
|
class Config;
|
2020-06-17 12:20:35 +02:00
|
|
|
class TrackingStyleConfig;
|
2020-05-12 14:39:42 +02:00
|
|
|
|
2017-08-29 14:00:37 +02:00
|
|
|
class TrackingPage : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-05-12 14:39:42 +02:00
|
|
|
explicit TrackingPage( Config* config, QWidget* parent = nullptr );
|
2017-08-29 14:00:37 +02:00
|
|
|
|
2020-06-17 10:06:33 +02:00
|
|
|
/** @brief is any of the enable-tracking buttons checked?
|
|
|
|
*
|
|
|
|
* Returns true if any one or more of install, machine or user
|
|
|
|
* tracking is enabled.
|
|
|
|
*/
|
|
|
|
bool anyOtherChecked() const;
|
|
|
|
|
2020-05-12 14:39:42 +02:00
|
|
|
public Q_SLOTS:
|
|
|
|
void retranslate();
|
|
|
|
|
2020-05-25 16:32:56 +02:00
|
|
|
/** @brief When the *no tracking* checkbox is changed
|
|
|
|
*
|
|
|
|
* @p state will be non-zero when the box is checked; this
|
|
|
|
* **unchecks** all the other boxes.
|
|
|
|
*/
|
2020-06-17 10:06:33 +02:00
|
|
|
void buttonNoneChecked( int state );
|
2020-05-25 16:32:56 +02:00
|
|
|
|
|
|
|
/** @brief Some other checkbox changed
|
|
|
|
*
|
|
|
|
* This may check the *none* button if all the others are
|
|
|
|
* now unchecked.
|
|
|
|
*/
|
2020-06-17 10:06:33 +02:00
|
|
|
void buttonChecked( int state );
|
2020-05-25 16:32:56 +02:00
|
|
|
|
2017-08-29 14:00:37 +02:00
|
|
|
private:
|
2020-06-17 12:20:35 +02:00
|
|
|
/** @brief Apply the tracking configuration to the UI
|
|
|
|
*
|
|
|
|
* If the config cannot be changed (disabled in config) then
|
|
|
|
* hide the UI parts on the @p panel; otherwise show it
|
|
|
|
* and set @p check state to whether the user has enabled it.
|
|
|
|
*/
|
|
|
|
void trackerChanged( TrackingStyleConfig* subconfig, QWidget* panel, QCheckBox* check);
|
|
|
|
|
2017-08-29 14:00:37 +02:00
|
|
|
Ui::TrackingPage* ui;
|
|
|
|
};
|
|
|
|
|
2019-08-01 23:05:42 +02:00
|
|
|
#endif //TRACKINGPAGE_H
|