2017-12-20 14:39:09 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2016-05-31 19:05:25 +02:00
|
|
|
*
|
|
|
|
* Copyright 2016, Teo Mrnjavac <teo@kde.org>
|
|
|
|
*
|
|
|
|
* 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>
|
2020-04-03 10:18:07 +02:00
|
|
|
#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 );
|
2020-04-03 10:18:07 +02:00
|
|
|
int currentIndex() const;
|
2020-03-26 15:57:02 +01:00
|
|
|
const QPair< QString, KeyboardGlobal::KeyboardInfo > item( const int& index ) const;
|
2020-04-03 10:18:07 +02:00
|
|
|
|
|
|
|
protected:
|
2020-03-26 15:57:02 +01:00
|
|
|
QHash< int, QByteArray > roleNames() const override;
|
2020-04-03 10:18:07 +02:00
|
|
|
|
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;
|
2020-04-03 10:18:07 +02:00
|
|
|
|
|
|
|
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
|