/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2007 Free Software Foundation, Inc. * SPDX-FileCopyrightText: 2014-2016 Teo Mrnjavac * SPDX-FileCopyrightText: 2017 Adriaan de Groot * SPDX-License-Identifier: GPL-3.0-or-later * * Portions from the Manjaro Installation Framework * by Roland Singer * Copyright (C) 2007 Free Software Foundation, Inc. * * Calamares is Free Software: see the License-Identifier above. * */ #ifndef KEYBOARDPAGE_H #define KEYBOARDPAGE_H #include "Job.h" #include #include #include namespace Ui { class Page_Keyboard; } class Config; class KeyBoardPreview; class KeyboardPage : public QWidget { Q_OBJECT public: explicit KeyboardPage( Config* config, QWidget* parent = nullptr ); ~KeyboardPage() override; private: Ui::Page_Keyboard* ui; KeyBoardPreview* m_keyboardPreview; Config* m_config; }; #endif // KEYBOARDPAGE_H