1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/*
* Copyright 2016 Canonical Ltd.
* Copyright 2019-2022 UBports Foundation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "deviceconfig.h"
#include <deviceinfo.h>
#include <QDebug>
DeviceConfig::DeviceConfig(QObject *parent):
QObject(parent),
m_info(std::make_unique<DeviceInfo>())
{
}
DeviceConfig::~DeviceConfig() = default;
QString DeviceConfig::name() const
{
return QString::fromStdString(m_info->name());
}
Qt::ScreenOrientation DeviceConfig::primaryOrientation() const
{
return stringToOrientation(m_info->primaryOrientation(), Qt::PrimaryOrientation);
}
Qt::ScreenOrientations DeviceConfig::supportedOrientations() const
{
auto values = m_info->supportedOrientations();
if (values.empty()) {
return Qt::PortraitOrientation
| Qt::InvertedPortraitOrientation
| Qt::LandscapeOrientation
| Qt::InvertedLandscapeOrientation;
}
Qt::ScreenOrientations ret = Qt::PrimaryOrientation;
for (auto orientationString : values) {
ret |= stringToOrientation(orientationString, Qt::PrimaryOrientation);
}
return ret;
}
Qt::ScreenOrientation DeviceConfig::landscapeOrientation() const
{
return stringToOrientation(m_info->landscapeOrientation(), Qt::LandscapeOrientation);
}
Qt::ScreenOrientation DeviceConfig::invertedLandscapeOrientation() const
{
return stringToOrientation(m_info->invertedLandscapeOrientation(), Qt::InvertedLandscapeOrientation);
}
Qt::ScreenOrientation DeviceConfig::portraitOrientation() const
{
return stringToOrientation(m_info->portraitOrientation(), Qt::PortraitOrientation);
}
Qt::ScreenOrientation DeviceConfig::invertedPortraitOrientation() const
{
return stringToOrientation(m_info->invertedPortraitOrientation(), Qt::InvertedPortraitOrientation);
}
QString DeviceConfig::category() const
{
QStringList supportedValues = {"phone", "tablet", "desktop"};
QString value = QString::fromStdString(DeviceInfo::deviceTypeToString(m_info->deviceType()));
if (!supportedValues.contains(value)) {
qWarning().nospace().noquote() << "Unknown option \"" << value
<< ". Supported options are: " << supportedValues.join(", ") << ".";
return "phone";
}
return value;
}
Qt::ScreenOrientation DeviceConfig::stringToOrientation(const std::string &orientationString, Qt::ScreenOrientation defaultValue) const
{
if (orientationString == "Landscape") {
return Qt::LandscapeOrientation;
}
if (orientationString == "InvertedLandscape") {
return Qt::InvertedLandscapeOrientation;
}
if (orientationString == "Portrait") {
return Qt::PortraitOrientation;
}
if (orientationString == "InvertedPortrait") {
return Qt::InvertedPortraitOrientation;
}
if (!orientationString.empty()) {
// Some option we don't know. Give some hint on what went wrong.
qWarning().nospace().noquote() << "Unknown option \"" << QString::fromStdString(orientationString)
<< ". Supported options are: Landscape, InvertedLandscape, Portrait and InvertedPortrait.\"";
}
return defaultValue;
}
bool DeviceConfig::supportsMultiColorLed() const
{
return m_info->contains("supportsMultiColorLed");
}
|