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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* SPDX-FileCopyrightText: 2013 Alejandro Fiestas Olivares <afiestas@kde.org>
* SPDX-FileCopyrightText: 2014 Sebastian Kügler <sebas@kde.org>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "testpnp.h"
#include "../src/configmonitor.h"
#include "../src/edid.h"
#include "../src/getconfigoperation.h"
#include "../src/mode.h"
#include "../src/output.h"
#include <QGuiApplication>
#include <QRect>
#include <QScreen>
#include <cstdint>
// #include <QX11Info>
using namespace KScreen;
QString typetoString(const Output::Type &type)
{
switch (type) {
case Output::Unknown:
return QStringLiteral("Unknown");
case Output::Panel:
return QStringLiteral("Panel (Laptop)");
case Output::VGA:
return QStringLiteral("VGA");
case Output::DVII:
return QStringLiteral("DVI-I");
case Output::DVIA:
return QStringLiteral("DVI-A");
case Output::DVID:
return QStringLiteral("DVI-D");
case Output::HDMI:
return QStringLiteral("HDMI");
case Output::TV:
return QStringLiteral("TV");
case Output::TVComposite:
return QStringLiteral("TV-Composite");
case Output::TVSVideo:
return QStringLiteral("TV-SVideo");
case Output::TVComponent:
return QStringLiteral("TV-Component");
case Output::TVSCART:
return QStringLiteral("TV-SCART");
case Output::TVC4:
return QStringLiteral("TV-C4");
case Output::DisplayPort:
return QStringLiteral("DisplayPort");
default:
return QStringLiteral("Invalid Type");
};
}
TestPnp::TestPnp(bool monitor, QObject *parent)
: QObject(parent)
, m_monitor(monitor)
{
init();
}
TestPnp::~TestPnp()
{
}
void TestPnp::init()
{
connect(new KScreen::GetConfigOperation(), &KScreen::GetConfigOperation::finished, this, &TestPnp::configReady);
}
void TestPnp::configReady(KScreen::ConfigOperation *op)
{
m_config = qobject_cast<KScreen::GetConfigOperation *>(op)->config();
if (!m_config) {
qDebug() << "Config is invalid, probably backend couldn't load";
qApp->quit();
return;
}
if (!m_config->screen()) {
qDebug() << "No screen in the configuration, broken backend";
qApp->quit();
return;
}
print();
if (m_monitor) {
ConfigMonitor::instance()->addConfig(m_config);
} else {
qApp->quit();
}
}
void TestPnp::print()
{
qDebug() << "Screen:";
qDebug() << "\tmaxSize:" << m_config->screen()->maxSize();
qDebug() << "\tminSize:" << m_config->screen()->minSize();
qDebug() << "\tcurrentSize:" << m_config->screen()->currentSize();
const OutputList outputs = m_config->outputs();
for (const OutputPtr &output : outputs) {
qDebug() << "\n-----------------------------------------------------\n";
qDebug() << "Id: " << output->id();
qDebug() << "Name: " << output->name();
qDebug() << "Type: " << typetoString(output->type());
qDebug() << "Connected: " << output->isConnected();
if (!output->isConnected()) {
continue;
}
qDebug() << "Enabled: " << output->isEnabled();
qDebug() << "Priority: " << output->priority();
qDebug() << "Rotation: " << output->rotation();
qDebug() << "Pos: " << output->pos();
qDebug() << "MMSize: " << output->sizeMm();
if (output->currentMode()) {
qDebug() << "Size: " << output->currentMode()->size();
}
if (output->clones().isEmpty()) {
qDebug() << "Clones: "
<< "None";
} else {
qDebug() << "Clones: " << output->clones().count();
}
qDebug() << "Mode: " << output->currentModeId();
qDebug() << "Preferred Mode: " << output->preferredModeId();
qDebug() << "Preferred modes: " << output->preferredModes();
qDebug() << "Modes: ";
const ModeList modes = output->modes();
for (const ModePtr &mode : modes) {
qDebug() << "\t" << mode->id() << " " << mode->name() << " " << mode->size() << " " << mode->refreshRate();
}
const Edid *const edid = output->edid();
qDebug() << "EDID Info: ";
if (edid && edid->isValid()) {
qDebug() << "\tDevice ID: " << edid->deviceId();
qDebug() << "\tName: " << edid->name();
qDebug() << "\tVendor: " << edid->vendor();
qDebug() << "\tSerial: " << edid->serial();
qDebug() << "\tEISA ID: " << edid->eisaId();
qDebug() << "\tHash: " << edid->hash();
qDebug() << "\tWidth: " << edid->width();
qDebug() << "\tHeight: " << edid->height();
qDebug() << "\tGamma: " << edid->gamma();
qDebug() << "\tRed: " << edid->red();
qDebug() << "\tGreen: " << edid->green();
qDebug() << "\tBlue: " << edid->blue();
qDebug() << "\tWhite: " << edid->white();
} else {
qDebug() << "\tUnavailable";
}
}
}
#include "moc_testpnp.cpp"
|