2021-04-26 06:22:35 +02:00
|
|
|
CONFIG += qskexample
|
|
|
|
|
2021-08-26 17:02:31 +02:00
|
|
|
QT += svg
|
2022-03-20 14:22:11 +01:00
|
|
|
QT += quick_private # TODO: examples should not use private headers
|
2021-08-26 17:02:31 +02:00
|
|
|
|
2021-04-26 06:22:35 +02:00
|
|
|
SOURCES += \
|
|
|
|
Box.cpp \
|
|
|
|
BoxWithButtons.cpp \
|
|
|
|
CircularProgressBar.cpp \
|
2021-08-24 08:46:26 +02:00
|
|
|
CircularProgressBarSkinlet.cpp \
|
2021-04-26 06:22:35 +02:00
|
|
|
Diagram.cpp \
|
|
|
|
DiagramSkinlet.cpp \
|
2021-08-26 17:02:31 +02:00
|
|
|
GraphicProvider.cpp \
|
2021-11-19 15:02:57 +01:00
|
|
|
LightDisplaySkinlet.cpp \
|
|
|
|
LightDisplay.cpp \
|
2021-04-26 06:22:35 +02:00
|
|
|
MainContent.cpp \
|
|
|
|
MenuBar.cpp \
|
|
|
|
MyDevices.cpp \
|
|
|
|
PieChart.cpp \
|
|
|
|
PieChartPainted.cpp \
|
|
|
|
PieChartSkinlet.cpp \
|
|
|
|
RoundedIcon.cpp \
|
2021-10-31 11:16:03 +01:00
|
|
|
ShadowedBox.cpp \
|
2021-04-26 06:22:35 +02:00
|
|
|
Skin.cpp \
|
|
|
|
TopBar.cpp \
|
2021-08-04 18:55:18 +02:00
|
|
|
RoundButton.cpp \
|
|
|
|
UsageBox.cpp \
|
|
|
|
UsageDiagram.cpp \
|
2021-04-26 06:22:35 +02:00
|
|
|
MainWindow.cpp \
|
2021-08-04 18:55:18 +02:00
|
|
|
main.cpp \
|
2021-04-26 06:22:35 +02:00
|
|
|
|
|
|
|
SOURCES += \
|
2021-11-19 15:02:57 +01:00
|
|
|
nodes/BoxShadowNode.cpp \
|
2021-04-26 06:22:35 +02:00
|
|
|
nodes/DiagramDataNode.cpp \
|
2021-10-31 11:16:03 +01:00
|
|
|
nodes/DiagramSegmentsNode.cpp \
|
2021-11-19 15:02:57 +01:00
|
|
|
nodes/RadialTickmarksNode.cpp
|
2021-04-26 06:22:35 +02:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
Box.h \
|
|
|
|
BoxWithButtons.h \
|
|
|
|
CircularProgressBar.h \
|
2021-08-24 08:46:26 +02:00
|
|
|
CircularProgressBarSkinlet.h \
|
2021-04-26 06:22:35 +02:00
|
|
|
Diagram.h \
|
|
|
|
DiagramSkinlet.h \
|
2021-08-26 17:02:31 +02:00
|
|
|
GraphicProvider.h \
|
2021-11-19 15:02:57 +01:00
|
|
|
LightDisplaySkinlet.h \
|
|
|
|
LightDisplay.h \
|
2021-04-26 06:22:35 +02:00
|
|
|
MainContent.h \
|
|
|
|
MainWindow.h \
|
|
|
|
MenuBar.h \
|
|
|
|
MyDevices.h \
|
|
|
|
PieChart.h \
|
|
|
|
PieChartPainted.h \
|
|
|
|
PieChartSkinlet.h \
|
|
|
|
RoundedIcon.h \
|
2021-10-31 11:16:03 +01:00
|
|
|
ShadowedBox.h \
|
2021-04-26 06:22:35 +02:00
|
|
|
Skin.h \
|
|
|
|
TopBar.h \
|
2021-08-04 18:55:18 +02:00
|
|
|
RoundButton.h \
|
|
|
|
UsageBox.h \
|
2021-04-26 06:22:35 +02:00
|
|
|
UsageDiagram.h
|
|
|
|
|
|
|
|
HEADERS += \
|
2021-11-19 15:02:57 +01:00
|
|
|
nodes/BoxShadowNode.h \
|
2021-04-26 06:22:35 +02:00
|
|
|
nodes/DiagramDataNode.h \
|
2021-10-31 11:16:03 +01:00
|
|
|
nodes/DiagramSegmentsNode.h \
|
2021-11-19 15:02:57 +01:00
|
|
|
nodes/RadialTickmarksNode.h
|
2021-04-26 06:22:35 +02:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
images.qrc \
|
|
|
|
fonts.qrc \
|
2021-10-31 11:16:03 +01:00
|
|
|
shaders.qrc
|