2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2020-03-25 16:08:12 +01:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2014-2015 Teo Mrnjavac <teo@kde.org>
|
|
|
|
* SPDX-FileCopyrightText: 2017 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-25 16:08:12 +01:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2020-03-25 16:08:12 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEYBOARDQMLVIEWSTEP_H
|
|
|
|
#define KEYBOARDQMLVIEWSTEP_H
|
|
|
|
|
|
|
|
#include "Config.h"
|
|
|
|
|
2020-03-26 15:57:02 +01:00
|
|
|
#include <DllMacro.h>
|
2020-03-25 16:08:12 +01:00
|
|
|
#include <utils/PluginFactory.h>
|
|
|
|
#include <viewpages/QmlViewStep.h>
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2020-10-25 18:35:03 +01:00
|
|
|
class Config;
|
2020-03-25 16:08:12 +01:00
|
|
|
class KeyboardPage;
|
|
|
|
|
|
|
|
class PLUGINDLLEXPORT KeyboardQmlViewStep : public Calamares::QmlViewStep
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit KeyboardQmlViewStep( QObject* parent = nullptr );
|
|
|
|
|
|
|
|
QString prettyName() const override;
|
|
|
|
QString prettyStatus() const override;
|
|
|
|
|
|
|
|
bool isNextEnabled() const override;
|
|
|
|
bool isBackEnabled() const override;
|
|
|
|
|
|
|
|
bool isAtBeginning() const override;
|
|
|
|
bool isAtEnd() const override;
|
|
|
|
|
|
|
|
Calamares::JobList jobs() const override;
|
|
|
|
|
|
|
|
void onActivate() override;
|
|
|
|
void onLeave() override;
|
|
|
|
|
|
|
|
void setConfigurationMap( const QVariantMap& configurationMap ) override;
|
|
|
|
QObject* getConfig() override;
|
|
|
|
|
|
|
|
private:
|
2020-03-26 15:57:02 +01:00
|
|
|
Config* m_config;
|
2020-03-25 16:08:12 +01:00
|
|
|
bool m_nextEnabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
CALAMARES_PLUGIN_FACTORY_DECLARATION( KeyboardQmlViewStepFactory )
|
|
|
|
|
2020-03-26 15:57:02 +01:00
|
|
|
#endif // KEYBOARDQMLVIEWSTEP_H
|