├── .gitignore ├── LICENSE ├── README.md ├── src ├── ReadMe.txt ├── SerialPort.pro ├── SerialPort.pro.user ├── chart.cpp ├── chart.h ├── console.cpp ├── console.h ├── digitlineedit.cpp ├── digitlineedit.h ├── icon.ico ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── readme ├── resrc.qrc ├── settingsdialog.cpp ├── settingsdialog.h ├── settingsdialog.ui ├── varlabel.cpp └── varlabel.h └── win_64_deploy ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5SerialPort.dll ├── Qt5Svg.dll ├── Qt5Widgets.dll ├── QtDemo.exe ├── SavedData ├── JLU2019-04-27_07-37-23-540.csv └── readme ├── SavedImage ├── JLU2019-04-27_11-24-15-574.png ├── JLU2019-04-27_11-24-33-755.png └── readme ├── config.ini ├── iconengines ├── qsvgicon.dll └── readme ├── platforms ├── qwindows.dll └── readme ├── readme └── styles ├── qwindowsvistastyle.dll └── readme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/README.md -------------------------------------------------------------------------------- /src/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/ReadMe.txt -------------------------------------------------------------------------------- /src/SerialPort.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/SerialPort.pro -------------------------------------------------------------------------------- /src/SerialPort.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/SerialPort.pro.user -------------------------------------------------------------------------------- /src/chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/chart.cpp -------------------------------------------------------------------------------- /src/chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/chart.h -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/console.h -------------------------------------------------------------------------------- /src/digitlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/digitlineedit.cpp -------------------------------------------------------------------------------- /src/digitlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/digitlineedit.h -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/resrc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/resrc.qrc -------------------------------------------------------------------------------- /src/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/settingsdialog.cpp -------------------------------------------------------------------------------- /src/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/settingsdialog.h -------------------------------------------------------------------------------- /src/settingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/settingsdialog.ui -------------------------------------------------------------------------------- /src/varlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/varlabel.cpp -------------------------------------------------------------------------------- /src/varlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/src/varlabel.h -------------------------------------------------------------------------------- /win_64_deploy/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/Qt5Core.dll -------------------------------------------------------------------------------- /win_64_deploy/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/Qt5Gui.dll -------------------------------------------------------------------------------- /win_64_deploy/Qt5SerialPort.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/Qt5SerialPort.dll -------------------------------------------------------------------------------- /win_64_deploy/Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/Qt5Svg.dll -------------------------------------------------------------------------------- /win_64_deploy/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/Qt5Widgets.dll -------------------------------------------------------------------------------- /win_64_deploy/QtDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/QtDemo.exe -------------------------------------------------------------------------------- /win_64_deploy/SavedData/JLU2019-04-27_07-37-23-540.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/SavedData/JLU2019-04-27_07-37-23-540.csv -------------------------------------------------------------------------------- /win_64_deploy/SavedData/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /win_64_deploy/SavedImage/JLU2019-04-27_11-24-15-574.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/SavedImage/JLU2019-04-27_11-24-15-574.png -------------------------------------------------------------------------------- /win_64_deploy/SavedImage/JLU2019-04-27_11-24-33-755.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/SavedImage/JLU2019-04-27_11-24-33-755.png -------------------------------------------------------------------------------- /win_64_deploy/SavedImage/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /win_64_deploy/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/config.ini -------------------------------------------------------------------------------- /win_64_deploy/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /win_64_deploy/iconengines/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /win_64_deploy/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/platforms/qwindows.dll -------------------------------------------------------------------------------- /win_64_deploy/platforms/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /win_64_deploy/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /win_64_deploy/styles/qwindowsvistastyle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoWootsi/QtDemo/HEAD/win_64_deploy/styles/qwindowsvistastyle.dll -------------------------------------------------------------------------------- /win_64_deploy/styles/readme: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------