blob: 90ef5d75acf10e976c03f994169dcc589b6a74f7 (
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
|
TEMPLATE = lib
CONFIG += qt plugin
QT += qml quick
TARGET=tizenstyleplugin
TARGETPATH = QtQuick/Controls/Styles/Tizen
QT+=qml
QML_FILES = \
TizenBorderImage.qml \
ProgressBarStyle.qml \
SliderStyle.qml \
ButtonStyle.qml \
CheckBoxStyle.qml \
Panel.qml \
TabViewStyle.qml \
Floater.qml \
SwitchStyle.qml\
DetailButtonStyle.qml\
ContextMenuStyle.qml\
PopupStyle.qml\
BusyIndicatorStyle.qml \
TitleBarStyle.qml \
ViewStyle.qml \
DateEditStyle.qml\
TimeEditStyle.qml \
ToolBarStyle.qml \
ToolBarButton.qml \
PanelStyle.qml \
RadioButtonStyle.qml \
FocusFrameStyle.qml \
ScrollViewStyle.qml
QML_FILES += \
private/DateEditField.qml\
private/DateEditBarPicker.qml \
private/PrivatePanel.qml
# Images
QML_FILES += \
images/720x1280/*.png \
images/720x1280/*.sci \
images/720x1280/white/*.png \
images/720x1280/white/*.sci \
images/720x1280/black/*.png \
images/720x1280/black/*.sci
CONFIG += force_independent
OTHER_FILES += qmldir \
private/TizenStyleConfig.qml \
TizenSansRegular.ttf \
themes/Colors.js \
Images.js \
DefaultSettings.js \
$$QML_FILES
load(qml_module)
target.base = $$_PRO_FILE_PWD_
target.path = $$instbase/$$TARGETPATH
HEADERS += \
qquicktizenstyleextensionplugin.h
SOURCES += \
qquicktizenstyleextensionplugin.cpp
INSTALLS += target
RESOURCES += \
internal_resources.qrc
|