blob: 6f70c7a8dd151c244f077a63253d9aa01ff81d66 (
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
|
TARGET = qtquickextrasflatplugin
TARGETPATH = QtQuick/Controls/Styles/Flat
QT += qml quick
HEADERS += \
flatstyleplugin.h \
qquicktexthandle.h
SOURCES += \
flatstyleplugin.cpp \
qquicktexthandle.cpp
FLAT_STYLE += \
$$PWD/FlatStyle.qml \
$$PWD/ApplicationWindowStyle.qml \
$$PWD/BusyIndicatorStyle.qml \
$$PWD/ButtonStyle.qml \
$$PWD/CalendarStyle.qml \
$$PWD/CheckBoxStyle.qml \
$$PWD/CheckBoxDrawer.qml \
$$PWD/CircularButtonStyle.qml \
$$PWD/CircularGaugeStyle.qml \
$$PWD/CircularTickmarkLabelStyle.qml \
$$PWD/ComboBoxStyle.qml \
$$PWD/CursorHandleStyle.qml \
$$PWD/DelayButtonStyle.qml \
$$PWD/DialStyle.qml \
$$PWD/FocusFrameStyle.qml \
$$PWD/GaugeStyle.qml \
$$PWD/GroupBoxStyle.qml \
$$PWD/LeftArrowIcon.qml \
$$PWD/MenuBarStyle.qml \
$$PWD/MenuStyle.qml \
$$PWD/PieMenuStyle.qml \
$$PWD/ProgressBarStyle.qml \
$$PWD/RadioButtonStyle.qml \
$$PWD/ScrollViewStyle.qml \
$$PWD/SelectionHandleStyle.qml \
$$PWD/SliderStyle.qml \
$$PWD/SpinBoxStyle.qml \
$$PWD/StatusBarStyle.qml \
$$PWD/StatusIndicatorStyle.qml \
$$PWD/SwitchStyle.qml \
$$PWD/TabViewStyle.qml \
$$PWD/TableViewStyle.qml \
$$PWD/TextAreaStyle.qml \
$$PWD/TextFieldStyle.qml \
$$PWD/ToggleButtonStyle.qml \
$$PWD/ToolBarStyle.qml \
$$PWD/ToolButtonStyle.qml \
$$PWD/ToolButtonBackground.qml \
$$PWD/ToolButtonIndicator.qml \
$$PWD/TumblerStyle.qml
FLAT_STYLE += \
$$PWD/images/BusyIndicator_Normal-Large.png \
$$PWD/images/BusyIndicator_Normal-Medium.png \
$$PWD/images/BusyIndicator_Normal-Small.png \
$$PWD/fonts/OpenSans-Light.ttf \
$$PWD/fonts/OpenSans-Regular.ttf \
$$PWD/fonts/OpenSans-Semibold.ttf \
$$PWD/fonts/LICENSE.txt \
RESOURCES += flatstyle.qrc
CONFIG += no_cxx_module
load(qml_plugin)
|