QtProtobuf  0.6
Protobuf plugin to generate Qt classes
qqmllistpropertyconstructor.h
1 /*
2  * MIT License
3  *
4  * Copyright (c) 2019 Alexey Edelev <semlanik@gmail.com>, Viktor Kopp <vifactor@gmail.com>
5  *
6  * This file is part of QtProtobuf project https://git.semlanik.org/semlanik/qtprotobuf
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a copy of this
9  * software and associated documentation files (the "Software"), to deal in the Software
10  * without restriction, including without limitation the rights to use, copy, modify,
11  * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
12  * to permit persons to whom the Software is furnished to do so, subject to the following
13  * conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in all copies
16  * or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
19  * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
20  * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
21  * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23  * DEALINGS IN THE SOFTWARE.
24  */
25 
26 #pragma once //QQmlListPropertyConstructor
27 
28 #include <QQmlListProperty>
29 #include <QQmlEngine>
30 
31 namespace QtProtobuf {
33 template<typename T>
34 static void qmllistpropertyAppend(QQmlListProperty<T> *p, T *v) {
35  QQmlEngine::setObjectOwnership(v, QQmlEngine::CppOwnership);
36  reinterpret_cast<QList<QSharedPointer<T>> *>(p->data)->append(QSharedPointer<T>(v));
37 }
38 
40 template<typename T>
41 static int qmllistpropertyCount(QQmlListProperty<T> *p) {
42  return reinterpret_cast<QList<QSharedPointer<T>> *>(p->data)->count();
43 }
44 
46 template<typename T>
47 static T *qmllistpropertyAt(QQmlListProperty<T> *p, int index) {
48  return reinterpret_cast<QList<QSharedPointer<T>> *>(p->data)->at(index).data();
49 }
50 
52 template<typename T>
53 static void qmllistpropertyReset(QQmlListProperty<T> *p) {
54  reinterpret_cast<QList<QSharedPointer<T>> *>(p->data)->clear();
55 }
56 
58 template<typename T>
59 static QQmlListProperty<T> constructQmlListProperty(QObject *p, QList<QSharedPointer<T>> *data)
60 {
61  return QQmlListProperty<T>(p, data, qmllistpropertyAppend<T>, qmllistpropertyCount<T>,
62  qmllistpropertyAt<T>, qmllistpropertyReset<T>);
63 }
64 
65 }