blob: 761ffaadd67161c5969e154311c2fed6596c52a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
{#
# Copyright (C) 2021 The Qt Company Ltd.
# Copyright (C) 2019 Luxoft Sweden AB
# Copyright (C) 2018 Pelagicore AG
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#}
{% set class = '{0}Factory'.format(module.module_name|upperfirst) %}
{% set qml_name = (module|qml_type).split('.')[-1]|upperfirst %}
{% include 'common/generated_comment.cpp.jinja' %}
#include "{{class|lower}}.h"
{{ module|begin_namespace }}
/*!
\class {{class}}
\inmodule {{module}}
\brief The {{class}} class provides factory methods for all structs defined in the {{module}} module.
*/
/*!
\qmltype {{qml_name}}
\nativetype {{class}}
\inqmlmodule {{module|qml_type}}
\brief The {{qml_name}} singleton holds all the enums defined in the {{module}} module and
provides factory methods for all structs.
The following enums are exported from this object:
{% for enum in module.enums %}
\section3 {{enum}}
\include {{module|lower}}module_enum.qdocinc {{enum}}
{% endfor %}
*/
{{class}}::{{class}}(QObject *parent)
: {{module.module_name|upperfirst}}(parent)
{
}
{% for struct in module.structs %}
/*!
\qmlmethod {{struct}} {{module|qml_type}}::{{qml_name}}()
Returns a default instance of {{struct}}
\sa {{struct}}
*/
/*!
Returns a default instance of {{struct}}.
\sa {{struct}}
*/
{{struct}} {{class}}::{{struct|lowerfirst}}() const
{
return {{struct}}();
}
/*!
\qmlmethod {{struct}} {{module|qml_type}}::{{qml_name}}({{struct.fields|map('parameter_type')|join(', ')}})
Returns a default instance of {{struct}}
\sa {{struct}}
*/
/*!
Returns a instance of {{struct}} using the passed arguments.
{% for field in struct.fields %}
{% if field.type.is_enum or field.type.is_flag %}
Available values for {{field}} are:
\include {{module|lower}}module_enum.qdocinc {{field.type}}
{% endif %}
{% endfor %}
\sa {{struct}}
*/
{{struct}} {{class}}::{{struct|lowerfirst}}({{struct.fields|map('parameter_type')|join(', ')}}) const
{
return {{struct}}({{struct.fields|join(', ')}});
}
{% endfor %}
{{ module|end_namespace }}
#include "moc_{{class|lower}}.cpp"
|