summaryrefslogtreecommitdiffstats
path: root/src/tools/uic/shared/writeincludesbase.h
blob: 71ddcc80d91c51e2bc179241d8ca8cff66c68606 (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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef WRITEINCLUDES_BASE_H
#define WRITEINCLUDES_BASE_H

#include <treewalker.h>

#include <QtCore/qset.h>
#include <QtCore/qstring.h>

QT_BEGIN_NAMESPACE

class DomCustomWidget;
class Uic;

struct ClassInfoEntry
{
    const char *klass;
    const char *module;
    const char *header;
};

struct ClassInfoEntries
{
    const ClassInfoEntry *begin() const { return m_begin; }
    const ClassInfoEntry *end() const { return m_end; }

    const ClassInfoEntry *m_begin;
    const ClassInfoEntry *m_end;
};

ClassInfoEntries classInfoEntries();

class WriteIncludesBase : public TreeWalker
{
public:
    explicit WriteIncludesBase(Uic *uic);

    void acceptUI(DomUI *node) override;
    void acceptWidget(DomWidget *node) override;
    void acceptLayout(DomLayout *node) override;
    void acceptSpacer(DomSpacer *node) override;
    void acceptProperty(DomProperty *node) override;

    //
    // actions
    //
    void acceptActionGroup(DomActionGroup *node) override;
    void acceptAction(DomAction *node) override;
    void acceptActionRef(DomActionRef *node) override;

    //
    // custom widgets
    //
    void acceptCustomWidget(DomCustomWidget *node) override;

protected:
    void add(const QString &className, const DomCustomWidget *dcw = nullptr);

    virtual void doAdd(const QString &className, const DomCustomWidget *dcw = nullptr) = 0;

    const Uic *uic() const { return m_uic; }
    Uic *uic() { return m_uic; }

private:
    QSet<QString> m_knownClasses;
    Uic *m_uic;
    bool m_laidOut = false;
};

QT_END_NAMESPACE

#endif // WRITEINCLUDES_BASE_H