Lomiri
Loading...
Searching...
No Matches
globalfunctions.cpp
1/*
2 * Copyright 2015 Canonical Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15*/
16
17#include "globalfunctions.h"
18
19#include <QColor>
20#include <QQmlEngine>
21#include <private/qquickitem_p.h>
22
23GlobalFunctions::GlobalFunctions(QObject *parent)
24 : QObject(parent)
25{
26}
27
28QQuickItem *GlobalFunctions::itemAt(QQuickItem* parent, int x, int y, QJSValue matcher)
29{
30 if (!parent) return nullptr;
31 QList<QQuickItem *> children = QQuickItemPrivate::get(parent)->paintOrderChildItems();
32
33 for (int i = children.count() - 1; i >= 0; --i) {
34 QQuickItem *child = children.at(i);
35
36 // Map coordinates to the child element's coordinate space
37 QPointF point = parent->mapToItem(child, QPointF(x, y));
38 if (child->isVisible() && point.x() >= 0
39 && child->width() >= point.x()
40 && point.y() >= 0
41 && child->height() >= point.y()) {
42 if (!matcher.isCallable()) return child;
43
44 QQmlEngine* engine = qmlEngine(child);
45 if (!engine) return child;
46
47 QJSValue newObj = engine->newQObject(child);
48 if (matcher.call(QJSValueList() << newObj).toBool()) {
49 return child;
50 }
51 }
52 }
53 return nullptr;
54}
55
56bool GlobalFunctions::itemUnderMouse(QQuickItem* item)
57{
58 return item && item->isUnderMouse();
59}
60
61bool GlobalFunctions::isValidColor(const QString & colorName)
62{
63 return QColor::isValidColor(colorName);
64}