calamares/src/modules/keyboard/KeyboardLayoutModel.h

112 lines
2.9 KiB
C
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
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: see the License-Identifier above.
2016-05-31 19:05:25 +02:00
*
*/
#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
};
class KeyboardModelsModel : public QAbstractListModel
{
Q_OBJECT
Q_PROPERTY( int currentIndex WRITE setCurrentIndex READ currentIndex NOTIFY currentIndexChanged )
public:
explicit KeyboardModelsModel( QObject* parent = nullptr );
int rowCount( const QModelIndex& = QModelIndex() ) const override;
QVariant data( const QModelIndex& index, int role ) const override;
void setCurrentIndex( const int& index );
int currentIndex() const;
const QMap< QString, QString > item( const int& index ) const;
public slots:
void refresh();
protected:
QHash< int, QByteArray > roleNames() const override;
private:
int m_currentIndex = -1;
QVector< QMap< QString, QString > > m_list;
void detectModels();
signals:
void currentIndexChanged( int index );
};
class KeyboardVariantsModel : public QAbstractListModel
{
Q_OBJECT
Q_PROPERTY( int currentIndex WRITE setCurrentIndex READ currentIndex NOTIFY currentIndexChanged )
public:
explicit KeyboardVariantsModel( QObject* parent = nullptr );
void setVariants( QMap< QString, QString > variants );
int rowCount( const QModelIndex& = QModelIndex() ) const override;
QVariant data( const QModelIndex& index, int role ) const override;
void setCurrentIndex( const int& index );
int currentIndex() const;
const QMap< QString, QString > item( const int& index ) const;
protected:
QHash< int, QByteArray > roleNames() const override;
private:
int m_currentIndex = -1;
QVector< QMap< QString, QString > > m_list;
signals:
void currentIndexChanged( int index );
};
2020-03-26 15:57:02 +01:00
#endif // KEYBOARDLAYOUTMODEL_H