summaryrefslogtreecommitdiffstats
path: root/src/gui/text/text.pri
blob: a15793ec2f5f0775f9d723157d083c303f36a9b5 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Qt kernel module

HEADERS += \
    text/qfont.h \
    text/qfontdatabase.h \
    text/qfontengine_p.h \
    text/qfontengineglyphcache_p.h \
    text/qfontinfo.h \
    text/qfontmetrics.h \
    text/qfont_p.h \
    text/qfontsubset_p.h \
    text/qtextengine_p.h \
    text/qtextlayout.h \
    text/qtextformat.h \
    text/qtextformat_p.h \
    text/qtextobject.h \
    text/qtextobject_p.h \
    text/qtextoption.h \
    text/qfragmentmap_p.h \
    text/qtextdocument.h \
    text/qtextdocument_p.h \
    text/qtexthtmlparser_p.h \
    text/qabstracttextdocumentlayout.h \
    text/qabstracttextdocumentlayout_p.h \
    text/qtextdocumentlayout_p.h \
    text/qtextcursor.h \
    text/qtextcursor_p.h \
    text/qtextdocumentfragment.h \
    text/qtextdocumentfragment_p.h \
    text/qtextimagehandler_p.h \
    text/qtexttable.h \
    text/qtextlist.h \
    text/qsyntaxhighlighter.h \
    text/qtextdocumentwriter.h \
    text/qtexttable_p.h \
    text/qstatictext_p.h \
    text/qstatictext.h \
    text/qrawfont.h \
    text/qrawfont_p.h \
    text/qglyphrun.h \
    text/qglyphrun_p.h \
    text/qdistancefield_p.h

SOURCES += \
    text/qfont.cpp \
    text/qfontengine.cpp \
    text/qfontengineglyphcache.cpp \
    text/qfontsubset.cpp \
    text/qfontmetrics.cpp \
    text/qfontdatabase.cpp \
    text/qtextengine.cpp \
    text/qtextlayout.cpp \
    text/qtextformat.cpp \
    text/qtextobject.cpp \
    text/qtextoption.cpp \
    text/qfragmentmap.cpp \
    text/qtextdocument.cpp \
    text/qtextdocument_p.cpp \
    text/qtexthtmlparser.cpp \
    text/qabstracttextdocumentlayout.cpp \
    text/qtextdocumentlayout.cpp \
    text/qtextcursor.cpp \
    text/qtextdocumentfragment.cpp \
    text/qtextimagehandler.cpp \
    text/qtexttable.cpp \
    text/qtextlist.cpp \
    text/qtextdocumentwriter.cpp \
    text/qsyntaxhighlighter.cpp \
    text/qstatictext.cpp \
    text/qrawfont.cpp \
    text/qglyphrun.cpp \
    text/qdistancefield.cpp

SOURCES += \
    text/qfontengine_qpf2.cpp \
    text/qplatformfontdatabase.cpp

HEADERS += \
    text/qplatformfontdatabase.h

qtConfig(harfbuzz)|qtConfig(system-harfbuzz) {
    DEFINES += QT_ENABLE_HARFBUZZ_NG

    QMAKE_USE_PRIVATE += harfbuzz

    SOURCES += text/qharfbuzzng.cpp
    HEADERS += text/qharfbuzzng_p.h
}

qtConfig(textodfwriter) {
    HEADERS += \
        text/qtextodfwriter_p.h \
        text/qzipreader_p.h \
        text/qzipwriter_p.h
    SOURCES += \
        text/qtextodfwriter.cpp \
        text/qzip.cpp
}

qtConfig(cssparser) {
    HEADERS += \
        text/qcssparser_p.h
    SOURCES += \
        text/qcssparser.cpp
}