You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
864 B
C++
53 lines
864 B
C++
/*
|
|
SPDX-FileCopyrightText: 2018 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PLASMASCREENPOOL_H
|
|
#define PLASMASCREENPOOL_H
|
|
|
|
// Qt
|
|
#include <QHash>
|
|
#include <QMap>
|
|
#include <QObject>
|
|
|
|
// KDE
|
|
#include <KConfigGroup>
|
|
|
|
namespace Latte {
|
|
namespace PlasmaExtended {
|
|
|
|
class ScreenPool: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ScreenPool(QObject *parent = nullptr);
|
|
~ScreenPool() override;
|
|
|
|
int id(const QString &connector) const;
|
|
QString connector(int id) const;
|
|
|
|
signals:
|
|
void idsChanged();
|
|
|
|
private slots:
|
|
void load();
|
|
void insertScreenMapping(int id, const QString &connector);
|
|
|
|
private:
|
|
QHash<int, QString> m_screens;
|
|
|
|
//order is important
|
|
QMap<int, QString> m_connectorForId;
|
|
QHash<QString, int> m_idForConnector;
|
|
|
|
KConfigGroup m_screensGroup;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif
|