2020-05-22 07:47:09 +00:00
|
|
|
CONFIG += qskexample
|
|
|
|
|
|
|
|
SOURCES += \
|
2020-09-17 14:14:29 +00:00
|
|
|
Box.cpp \
|
2020-06-19 11:26:20 +00:00
|
|
|
CircularProgressBar.cpp \
|
2020-08-26 15:22:43 +00:00
|
|
|
Diagram.cpp \
|
2020-08-14 14:28:47 +00:00
|
|
|
Humidity.cpp \
|
2020-08-14 10:48:15 +00:00
|
|
|
IndoorTemperature.cpp \
|
2020-09-08 15:21:54 +00:00
|
|
|
LightIntensity.cpp \
|
2020-05-22 09:48:05 +00:00
|
|
|
MainContent.cpp \
|
2020-05-22 07:47:09 +00:00
|
|
|
MenuBar.cpp \
|
2020-08-17 15:19:05 +00:00
|
|
|
MyDevices.cpp \
|
2020-05-22 13:15:38 +00:00
|
|
|
PieChart.cpp \
|
2020-06-19 11:26:20 +00:00
|
|
|
PieChartPainted.cpp \
|
2020-05-22 13:15:38 +00:00
|
|
|
PieChartSkinlet.cpp \
|
2020-09-18 15:36:33 +00:00
|
|
|
QskShadowedRectangle.cpp \
|
|
|
|
QskShadowedRectangleSkinlet.cpp \
|
2020-08-14 10:48:15 +00:00
|
|
|
RoundedIcon.cpp \
|
2021-03-26 10:51:03 +00:00
|
|
|
Skin.cpp \
|
2020-06-12 13:51:13 +00:00
|
|
|
TopBar.cpp \
|
2020-09-30 09:57:07 +00:00
|
|
|
UpAndDownButton.cpp \
|
2020-08-12 15:11:00 +00:00
|
|
|
Usage.cpp \
|
2020-05-22 07:47:09 +00:00
|
|
|
main.cpp \
|
|
|
|
MainWindow.cpp
|
|
|
|
|
|
|
|
HEADERS += \
|
2020-09-17 14:14:29 +00:00
|
|
|
Box.h \
|
2020-06-19 11:26:20 +00:00
|
|
|
CircularProgressBar.h \
|
2020-08-26 15:22:43 +00:00
|
|
|
Diagram.h \
|
2020-08-14 14:28:47 +00:00
|
|
|
Humidity.h \
|
2020-08-14 10:48:15 +00:00
|
|
|
IndoorTemperature.h \
|
2020-09-08 15:21:54 +00:00
|
|
|
LightIntensity.h \
|
2020-05-22 09:48:05 +00:00
|
|
|
MainContent.h \
|
2020-05-22 07:47:09 +00:00
|
|
|
MainWindow.h \
|
2020-05-22 13:15:38 +00:00
|
|
|
MenuBar.h \
|
2020-08-17 15:19:05 +00:00
|
|
|
MyDevices.h \
|
2020-05-22 13:15:38 +00:00
|
|
|
PieChart.h \
|
2020-06-19 11:26:20 +00:00
|
|
|
PieChartPainted.h \
|
2020-06-12 13:51:13 +00:00
|
|
|
PieChartSkinlet.h \
|
2020-09-18 15:36:33 +00:00
|
|
|
QskShadowedRectangle.h \
|
|
|
|
QskShadowedRectangleSkinlet.h \
|
2020-08-14 10:48:15 +00:00
|
|
|
RoundedIcon.h \
|
2021-03-26 10:51:03 +00:00
|
|
|
Skin.h \
|
2020-08-12 15:11:00 +00:00
|
|
|
TopBar.h \
|
2020-09-30 09:57:07 +00:00
|
|
|
UpAndDownButton.h \
|
2020-08-12 15:11:00 +00:00
|
|
|
Usage.h
|
2020-05-22 07:47:09 +00:00
|
|
|
|
2020-09-18 15:36:33 +00:00
|
|
|
HEADERS += \
|
2020-09-18 13:40:46 +00:00
|
|
|
src/shadowedrectangle.h \
|
2020-09-18 15:36:33 +00:00
|
|
|
src/scenegraph/paintedrectangleitem.h \
|
|
|
|
src/scenegraph/shadowedborderrectanglematerial.h \
|
|
|
|
src/scenegraph/shadowedrectanglematerial.h \
|
|
|
|
src/scenegraph/shadowedrectanglenode.h
|
2020-09-18 13:40:46 +00:00
|
|
|
|
2020-09-18 15:36:33 +00:00
|
|
|
SOURCES += \
|
2020-09-18 13:40:46 +00:00
|
|
|
src/shadowedrectangle.cpp \
|
2020-09-18 15:36:33 +00:00
|
|
|
src/scenegraph/paintedrectangleitem.cpp \
|
|
|
|
src/scenegraph/shadowedborderrectanglematerial.cpp \
|
|
|
|
src/scenegraph/shadowedrectanglematerial.cpp \
|
|
|
|
src/scenegraph/shadowedrectanglenode.cpp
|
2020-09-18 13:40:46 +00:00
|
|
|
|
2020-05-22 09:48:05 +00:00
|
|
|
RESOURCES += \
|
2020-06-12 10:19:22 +00:00
|
|
|
images.qrc \
|
2020-09-18 15:36:33 +00:00
|
|
|
fonts.qrc \
|
|
|
|
src/scenegraph/shaders/shaders.qrc
|