aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qqmlsaconstants.h
blob: 019040d2597da5b75652964c36f57825149a8ddb (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
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef QQMLSACONSTANTS_H
#define QQMLSACONSTANTS_H

#include <QtCore/qtconfigmacros.h>

QT_BEGIN_NAMESPACE

namespace QQmlSA {

enum class BindingType : unsigned int {
    Invalid,
    BoolLiteral,
    NumberLiteral,
    StringLiteral,
    RegExpLiteral,
    Null,
    Translation,
    TranslationById,
    Script,
    Object,
    Interceptor,
    ValueSource,
    AttachedProperty,
    GroupProperty,
};

enum class ScriptBindingKind : unsigned int {
    Invalid,
    PropertyBinding, // property int p: 1 + 1
    SignalHandler, // onSignal: { ... }
    ChangeHandler, // onXChanged: { ... }
};

enum class ScopeType {
    JSFunctionScope,
    JSLexicalScope,
    QMLScope,
    GroupedPropertyScope,
    AttachedPropertyScope,
    EnumScope
};

} // namespace QQmlSA

QT_END_NAMESPACE

#endif // QQMLSACONSTANTS_H