3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-22 15:15:53 +00:00
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

70 lines
1.6 KiB
C++

/*
SPDX-FileCopyrightText: 2014 David Edmundson <kde@davidedmundson.co.uk>
SPDX-FileCopyrightText: 2014 Eike Hein <hein@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "subdialog.h"
#include <QGuiApplication>
#include <QScreen>
SubDialog::SubDialog(QQuickItem *parent)
: PlasmaQuick::Dialog(parent)
{
}
SubDialog::~SubDialog()
{
}
QPoint SubDialog::popupPosition(QQuickItem *item, const QSize &size)
{
if (!item || !item->window()) {
return QPoint(0, 0);
}
QPointF pos = item->mapToScene(QPointF(0, 0));
pos = item->window()->mapToGlobal(pos.toPoint());
pos.setX(pos.x() + item->width() / 2);
pos.setY(pos.y() + item->height() / 2);
if (QGuiApplication::layoutDirection() == Qt::RightToLeft) {
pos.setX(pos.x() - size.width());
}
QRect avail = availableScreenRectForItem(item);
if (pos.x() + size.width() > avail.right()) {
pos.setX(pos.x() - size.width());
}
if (pos.x() < avail.left()) {
pos.setX(pos.x() + size.width());
}
if (pos.y() + size.height() > avail.bottom()) {
pos.setY(pos.y() - size.height());
}
return pos.toPoint();
}
QRect SubDialog::availableScreenRectForItem(QQuickItem *item) const
{
QScreen *screen = QGuiApplication::primaryScreen();
const QPoint globalPosition = item->window()->mapToGlobal(item->position().toPoint());
const QList<QScreen *> screens = QGuiApplication::screens();
for (QScreen *s : screens) {
if (s->geometry().contains(globalPosition)) {
screen = s;
}
}
return screen->availableGeometry();
}