2019-12-14 12:48:09 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
|
|
*
|
2020-01-09 15:11:36 +01:00
|
|
|
* Copyright 2019-2020 Adriaan de Groot <groot@kde.org>
|
2019-12-14 12:48:09 +01:00
|
|
|
*
|
|
|
|
* 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 WELCOME_QMLVIEWSTEP_H
|
|
|
|
#define WELCOME_QMLVIEWSTEP_H
|
|
|
|
|
|
|
|
#include "Config.h"
|
|
|
|
|
|
|
|
#include "modulesystem/Requirement.h"
|
|
|
|
#include "utils/PluginFactory.h"
|
2020-02-12 14:25:30 +01:00
|
|
|
#include "viewpages/QmlViewStep.h"
|
2019-12-14 12:48:09 +01:00
|
|
|
|
2020-03-10 23:56:09 +01:00
|
|
|
#include <DllMacro.h>
|
|
|
|
|
2019-12-14 12:48:09 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QVariantMap>
|
|
|
|
|
|
|
|
namespace CalamaresUtils
|
|
|
|
{
|
|
|
|
namespace GeoIP
|
|
|
|
{
|
|
|
|
class Handler;
|
|
|
|
}
|
|
|
|
} // namespace CalamaresUtils
|
|
|
|
|
|
|
|
class GeneralRequirements;
|
|
|
|
|
2020-03-10 23:56:09 +01:00
|
|
|
// TODO: Needs a generic Calamares::QmlViewStep as base class
|
|
|
|
// TODO: refactor and move what makes sense to base class
|
2020-02-12 14:25:30 +01:00
|
|
|
class PLUGINDLLEXPORT WelcomeQmlViewStep : public Calamares::QmlViewStep
|
2019-12-14 12:48:09 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-03-10 23:56:09 +01:00
|
|
|
|
2019-12-14 12:48:09 +01:00
|
|
|
explicit WelcomeQmlViewStep( QObject* parent = nullptr );
|
|
|
|
|
|
|
|
QString prettyName() const override;
|
|
|
|
|
2020-03-10 23:56:09 +01:00
|
|
|
bool isNextEnabled() const override;
|
|
|
|
bool isBackEnabled() const override;
|
|
|
|
|
|
|
|
bool isAtBeginning() const override;
|
|
|
|
bool isAtEnd() const override;
|
|
|
|
|
|
|
|
Calamares::JobList jobs() const override;
|
|
|
|
|
2019-12-14 12:48:09 +01:00
|
|
|
void setConfigurationMap( const QVariantMap& configurationMap ) override;
|
|
|
|
|
|
|
|
/** @brief Sets the country that Calamares is running in.
|
|
|
|
*
|
|
|
|
* This (ideally) sets up language and locale settings that are right for
|
|
|
|
* the given 2-letter country code. Uses the handler's information (if
|
|
|
|
* given) for error reporting.
|
|
|
|
*/
|
|
|
|
void setCountry( const QString&, CalamaresUtils::GeoIP::Handler* handler );
|
|
|
|
|
|
|
|
Calamares::RequirementsList checkRequirements() override;
|
2020-03-11 16:49:07 +01:00
|
|
|
QObject* getConfig() override;
|
2020-02-12 17:51:10 +01:00
|
|
|
|
2019-12-14 12:48:09 +01:00
|
|
|
private:
|
|
|
|
// TODO: a generic QML viewstep should return a config object from a method
|
2020-03-10 23:56:09 +01:00
|
|
|
Config *m_config;
|
2019-12-14 12:48:09 +01:00
|
|
|
GeneralRequirements* m_requirementsChecker;
|
|
|
|
};
|
|
|
|
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DECLARATION( WelcomeQmlViewStepFactory )
|
|
|
|
|
|
|
|
#endif // WELCOME_QMLVIEWSTEP_H
|