calamares/src/modules/keyboard/KeyboardLayoutModel.h

65 lines
1.9 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <https://github.com/calamares> ===
2016-05-31 19:05:25 +02:00
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2016 Teo Mrnjavac <teo@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
2016-05-31 19:05:25 +02: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 KEYBOARDLAYOUTMODEL_H
#define KEYBOARDLAYOUTMODEL_H
#include "keyboardwidget/keyboardglobal.h"
#include <QAbstractListModel>
#include <QMap>
#include <QMetaType>
#include <QObject>
2016-05-31 19:05:25 +02:00
class KeyboardLayoutModel : public QAbstractListModel
{
Q_OBJECT
2020-03-26 15:57:02 +01:00
Q_PROPERTY( int currentIndex WRITE setCurrentIndex READ currentIndex NOTIFY currentIndexChanged )
2016-05-31 19:05:25 +02:00
public:
enum Roles : int
{
KeyboardVariantsRole = Qt::UserRole,
KeyboardLayoutKeyRole
};
KeyboardLayoutModel( QObject* parent = nullptr );
int rowCount( const QModelIndex& parent = QModelIndex() ) const override;
QVariant data( const QModelIndex& index, int role ) const override;
2020-03-26 15:57:02 +01:00
void setCurrentIndex( const int& index );
int currentIndex() const;
2020-03-26 15:57:02 +01:00
const QPair< QString, KeyboardGlobal::KeyboardInfo > item( const int& index ) const;
protected:
2020-03-26 15:57:02 +01:00
QHash< int, QByteArray > roleNames() const override;
2016-05-31 19:05:25 +02:00
private:
void init();
2020-03-26 15:57:02 +01:00
int m_currentIndex = -1;
2016-05-31 19:05:25 +02:00
QList< QPair< QString, KeyboardGlobal::KeyboardInfo > > m_layouts;
signals:
2020-03-26 15:57:02 +01:00
void currentIndexChanged( int index );
2016-05-31 19:05:25 +02:00
};
2020-03-26 15:57:02 +01:00
#endif // KEYBOARDLAYOUTMODEL_H