2
* Copyright 2016 Canonical Ltd.
4
* This file is part of webbrowser-app.
6
* webbrowser-app is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 3.
10
* webbrowser-app is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19
#ifndef __REPARENTER_H__
20
#define __REPARENTER_H__
22
#include <QtCore/QMap>
23
#include <QtCore/QObject>
24
#include <QtCore/QPointer>
25
#include <QtCore/QVariantMap>
26
#include <QtQml/QQmlComponent>
27
#include <QtQml/QQmlContext>
28
#include <QtQuick/QQuickItem>
30
class Reparenter : public QObject
38
Q_INVOKABLE QObject *createObject(QQmlComponent *comp, QQuickItem *parent, QVariantMap properties={}, QQuickItem *contextItem=Q_NULLPTR);
39
Q_INVOKABLE void destroyContextAndObject(QQuickItem *item);
40
Q_INVOKABLE void reparent(QQuickItem *obj, QQuickItem *newParent);
42
QMap<QPointer<QQmlContext>, QPointer<QObject>> m_contexts;
45
#endif // __REPARENTER_H__