2018-03-29 10:46:53 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright 2018 Roman Gilg <subdiff@gmail.com>
|
|
|
|
|
|
|
|
This program 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#include "outputscreens.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "abstract_output.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
OutputScreens::OutputScreens(Platform *platform, QObject *parent)
|
|
|
|
: Screens(parent),
|
|
|
|
m_platform(platform)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OutputScreens::~OutputScreens() = default;
|
|
|
|
|
|
|
|
void OutputScreens::init()
|
|
|
|
{
|
|
|
|
updateCount();
|
|
|
|
KWin::Screens::init();
|
|
|
|
emit changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString OutputScreens::name(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->name();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return QString();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool OutputScreens::isInternal(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->isInternal();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return false;
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QRect OutputScreens::geometry(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->geometry();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return QRect();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QSize OutputScreens::size(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->geometry().size();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return QSize();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal OutputScreens::scale(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->scale();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return 1.0;
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QSizeF OutputScreens::physicalSize(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->physicalSize();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return QSizeF();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
2018-11-09 22:17:27 +00:00
|
|
|
float OutputScreens::refreshRate(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->refreshRate() / 1000.0;
|
2018-11-09 22:17:27 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return 60.0;
|
2018-11-09 22:17:27 +00:00
|
|
|
}
|
|
|
|
|
2018-03-29 10:46:53 +00:00
|
|
|
Qt::ScreenOrientation OutputScreens::orientation(int screen) const
|
|
|
|
{
|
2019-04-15 21:31:12 +00:00
|
|
|
if (AbstractOutput *output = findOutput(screen)) {
|
|
|
|
return output->orientation();
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
2019-04-15 21:31:12 +00:00
|
|
|
return Qt::PrimaryOrientation;
|
2018-03-29 10:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OutputScreens::updateCount()
|
|
|
|
{
|
|
|
|
setCount(m_platform->enabledOutputs().size());
|
|
|
|
}
|
|
|
|
|
|
|
|
int OutputScreens::number(const QPoint &pos) const
|
|
|
|
{
|
|
|
|
int bestScreen = 0;
|
|
|
|
int minDistance = INT_MAX;
|
2019-04-15 21:31:12 +00:00
|
|
|
const auto outputs = m_platform->enabledOutputs();
|
|
|
|
for (int i = 0; i < outputs.size(); ++i) {
|
|
|
|
const QRect &geo = outputs[i]->geometry();
|
2018-03-29 10:46:53 +00:00
|
|
|
if (geo.contains(pos)) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
int distance = QPoint(geo.topLeft() - pos).manhattanLength();
|
|
|
|
distance = qMin(distance, QPoint(geo.topRight() - pos).manhattanLength());
|
|
|
|
distance = qMin(distance, QPoint(geo.bottomRight() - pos).manhattanLength());
|
|
|
|
distance = qMin(distance, QPoint(geo.bottomLeft() - pos).manhattanLength());
|
|
|
|
if (distance < minDistance) {
|
|
|
|
minDistance = distance;
|
|
|
|
bestScreen = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bestScreen;
|
|
|
|
}
|
|
|
|
|
2019-04-15 21:31:12 +00:00
|
|
|
AbstractOutput *OutputScreens::findOutput(int screen) const
|
|
|
|
{
|
|
|
|
return m_platform->enabledOutputs().value(screen);
|
|
|
|
}
|
|
|
|
|
2018-03-29 10:46:53 +00:00
|
|
|
} // namespace
|