2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2014-11-11 02:58:14 +01:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2014-2016 Teo Mrnjavac <teo@kde.org>
|
|
|
|
* SPDX-FileCopyrightText: 2014 Kevin Kofler <kevin.kofler@chello.at>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2014-11-11 02:58:14 +01:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2014-11-11 02:58:14 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SETKEYBOARDLAYOUTJOB_H
|
|
|
|
#define SETKEYBOARDLAYOUTJOB_H
|
|
|
|
|
2020-03-10 02:45:40 +01:00
|
|
|
#include "Job.h"
|
2014-11-11 02:58:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
class SetKeyboardLayoutJob : public Calamares::Job
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SetKeyboardLayoutJob( const QString& model,
|
|
|
|
const QString& layout,
|
2014-11-11 14:37:05 +01:00
|
|
|
const QString& variant,
|
|
|
|
const QString& xOrgConfFileName,
|
2016-09-26 10:57:23 +02:00
|
|
|
const QString& convertedKeymapPath,
|
|
|
|
bool writeEtcDefaultKeyboard );
|
2014-11-11 02:58:14 +01:00
|
|
|
|
|
|
|
QString prettyName() const override;
|
|
|
|
Calamares::JobResult exec() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString findConvertedKeymap( const QString& convertedKeymapPath ) const;
|
|
|
|
QString findLegacyKeymap() const;
|
2020-03-26 15:57:02 +01:00
|
|
|
bool writeVConsoleData( const QString& vconsoleConfPath, const QString& convertedKeymapPath ) const;
|
2016-09-22 12:31:57 +02:00
|
|
|
bool writeX11Data( const QString& keyboardConfPath ) const;
|
|
|
|
bool writeDefaultKeyboardData( const QString& defaultKeyboardPath ) const;
|
2014-11-11 02:58:14 +01:00
|
|
|
|
|
|
|
QString m_model;
|
|
|
|
QString m_layout;
|
|
|
|
QString m_variant;
|
2014-11-11 14:37:05 +01:00
|
|
|
QString m_xOrgConfFileName;
|
|
|
|
QString m_convertedKeymapPath;
|
2016-09-26 10:57:23 +02:00
|
|
|
const bool m_writeEtcDefaultKeyboard;
|
2014-11-11 02:58:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* SETKEYBOARDLAYOUTJOB_H */
|