2020-10-27 02:56:19 +01:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
|
|
*
|
|
|
|
* SPDX-FileCopyrightText: 2020 Artem Grinev <agrinev@manjaro.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEYBOARD_ADDITIONAL_LAYOUT_INFO_H
|
|
|
|
#define KEYBOARD_ADDITIONAL_LAYOUT_INFO_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
2020-10-28 13:41:34 +01:00
|
|
|
struct AdditionalLayoutInfo
|
|
|
|
{
|
2020-10-27 02:56:19 +01:00
|
|
|
QString additionalLayout;
|
|
|
|
QString additionalVariant;
|
|
|
|
|
|
|
|
QString groupSwitcher;
|
|
|
|
|
|
|
|
QString vconsoleKeymap;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|