summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/tests/generatedoutput/testdata/qml/parent.qdoc
blob: a2e41eaddf35ea8fb4ac891a2ba12439fd3bc30b (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
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

/*!
    \qmltype AbstractParent
    \inqmlmodule QDoc.Test
    \qmlabstract
    \brief Abstract base QML type.
*/

/*!
    \qmlproperty list<Child> AbstractParent::children
    \qmldefault
    \brief Children of the type.
*/

/*!
    \qmlmethod void AbstractParent::rear(Child child, var method =  Strict)
    \brief Do some abstract parenting on \a child using a specific \a method.
*/

/*!
    \qmlproperty string AbstractParent::name
    \brief Name of this parent.
*/

/*!
    \qmlmethod void AbstractParent::name(Child child, name)
    \brief Name a \a child using \a name.

*/

/*!
    \qmlmethod void AbstractParent::name()
    \brief Name all children with random names.
*/

/*!
    \qmltype Child
    \inqmlmodule QDoc.Test
    \inherits AbstractParent
    \brief A Child inheriting its parent.
*/

/*!
    //! override from abstract base
    \qmlproperty string Child::name
    \brief Name of this child.
*/

/*!
    //! override from abstract base
    \qmlmethod void Child::name(Child child, name)
    \brief Name a \a child of this child using \a name.
*/

/*!
    \qmlvaluetype int
    \inqmlmodule QDoc.Test

    \brief An integer value type.
*/

/*!
    \qmlmethod int int::abs()
    Returns the absolute value of this integer.
*/

/*!
    \qmltype InternParent
    \inqmlmodule QDoc.Test
    \internal
    \qmlabstract
    \brief Internal abstract base QML type.
*/

/*!
    \qmlproperty int InternParent::prop
    \brief Propagated to inheriting type docs.
*/

/*!
    \qmltype YetAnotherChild
    \inherits InternParent
    \inqmlmodule QDoc.Test
    \brief A type inheriting from internal abstract parent.
*/