Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqmlpropertyvaluesource.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant
4
6
7QT_BEGIN_NAMESPACE
8
9/*!
10 \class QQmlPropertyValueSource
11 \brief The QQmlPropertyValueSource class is an interface for property value sources such as animations and bindings.
12 \inmodule QtQml
13
14 See \l{Property Value Sources} for information on writing custom property
15 value sources.
16 */
17
18/*!
19 Constructs a QQmlPropertyValueSource.
20*/
21QQmlPropertyValueSource::QQmlPropertyValueSource()
22{
23}
24
25/*!
26 Destroys the value source.
27*/
28QQmlPropertyValueSource::~QQmlPropertyValueSource()
29{
30}
31
32/*!
33 \fn void QQmlPropertyValueSource::setTarget(const QQmlProperty &property)
34 Set the target \a property for the value source. This method will
35 be called by the QML engine when assigning a value source.
36*/
37
38QT_END_NAMESPACE