├── LaserHMI.pro ├── LaserHMI.pro.user ├── LaserHMI.pro.user.398c9b9 ├── LaserHMI.pro.user.67cb7f2 ├── LaserHMI.pro.user.cbf4ef1 ├── LaserHMI.pro.user.f55503b ├── README.md ├── Snapshots ├── ui1.png ├── ui2.png ├── ui3.png ├── ui4.png ├── ui5.png └── ui6.png ├── base ├── zbaseobj.cpp ├── zbaseobj.h ├── zbaseui.cpp ├── zbaseui.h ├── zdatetimechooser.cpp ├── zdatetimechooser.h ├── zpiechart.cpp └── zpiechart.h ├── ci ├── crc16.cpp ├── crc16.h ├── zbaseci.cpp ├── zbaseci.h ├── zlitronicsci.cpp └── zlitronicsci.h ├── db ├── zbasedb.cpp ├── zbasedb.h ├── zsqlitedb.cpp └── zsqlitedb.h ├── dump ├── zdbgserver.cpp └── zdbgserver.h ├── fonts ├── msyh.ttf └── wqy-microhei.ttc ├── gbl ├── hmi_const.cpp └── hmi_const.h ├── hmires.qrc ├── images ├── Keyboard │ ├── bottom.png │ ├── close.png │ ├── left.png │ ├── next.png │ ├── previous.png │ ├── right.png │ └── top.png ├── about │ └── logo.png ├── bottombar │ ├── Cancel.png │ ├── Console.png │ ├── Exit.png │ ├── Logout.png │ ├── Reboot.png │ └── Shutdown.png ├── chiller │ ├── BypassChiller.png │ └── ReEnableChiller.png ├── common │ ├── .directory │ ├── Checked.png │ ├── UnChecked.png │ ├── add.png │ ├── arrow.png │ ├── pushed_left.png │ ├── pushed_right.png │ ├── sub.png │ ├── up_left.png │ └── up_right.png ├── hzpy-utf8.txt ├── laser │ ├── mainCtl.png │ └── mdlCtl.png ├── led │ ├── led_green.png │ ├── led_red.png │ └── led_yellow.png ├── load │ └── background.png ├── log │ ├── Alarm.png │ ├── Chiller.png │ ├── Export.png │ ├── Keyboard.png │ ├── Laser.png │ ├── Operate.png │ ├── Search.png │ ├── Trash.png │ ├── next.png │ └── previous.png ├── login │ ├── .directory │ ├── background.png │ └── lock.png ├── mainctl │ ├── RGB_All.png │ ├── RGB_Blue.png │ ├── RGB_Green.png │ ├── RGB_Red.png │ ├── WhiteBalance.png │ ├── add.png │ ├── add1.png │ ├── add_gray.png │ ├── busy.png │ ├── circle_gray.png │ ├── circle_orange.png │ ├── colortemp.png │ ├── hexagon.png │ ├── sub.png │ ├── sub1.png │ └── sub_gray.png ├── navigate │ ├── about.png │ ├── chiller.png │ ├── debug.png │ ├── laser.png │ ├── log.png │ ├── network.png │ ├── setup.png │ ├── status.png │ └── sysinfo.png ├── op2 │ ├── add.png │ └── sub.png ├── summary │ ├── Left.png │ └── Right.png └── topbar │ ├── signal0.png │ ├── signal1.png │ ├── signal2.png │ └── signal3.png ├── main.cpp ├── ringbuffer ├── zringbuffer.cpp └── zringbuffer.h ├── skin └── defaultSkin ├── test_command ├── ui ├── log │ ├── zchillerlogui.cpp │ ├── zchillerlogui.h │ ├── zlaserlogui.cpp │ ├── zlaserlogui.h │ ├── zlogfilterdialog.cpp │ ├── zlogfilterdialog.h │ ├── zlogmanager.cpp │ ├── zlogmanager.h │ ├── zoperatelogui.cpp │ └── zoperatelogui.h ├── zaboutui.cpp ├── zaboutui.h ├── zbarui.cpp ├── zbarui.h ├── zbottombar.cpp ├── zbottombar.h ├── zcheckbox.cpp ├── zcheckbox.h ├── zchillerui.cpp ├── zchillerui.h ├── zcircleindicator.cpp ├── zcircleindicator.h ├── zcolortemptuningdia.cpp ├── zcolortemptuningdia.h ├── zcurveui.cpp ├── zcurveui.h ├── zdatetimesetdia.cpp ├── zdatetimesetdia.h ├── zdbgtestui.cpp ├── zdbgtestui.h ├── zdigkbd.cpp ├── zdigkbd.h ├── zframe.cpp ├── zframe.h ├── zfullkbd.cpp ├── zfullkbd.h ├── zlaserrunhoursui.cpp ├── zlaserrunhoursui.h ├── zlaserui.cpp ├── zlaserui.h ├── zlinelabel.cpp ├── zlinelabel.h ├── zloadui.cpp ├── zloadui.h ├── zloginui.cpp ├── zloginui.h ├── zlogui.cpp ├── zlogui.h ├── zmainctlui.cpp ├── zmainctlui.h ├── zmainui.cpp ├── zmainui.h ├── zmdlctlui.cpp ├── zmdlctlui.h ├── znavigateui.cpp ├── znavigateui.h ├── znetworkui.cpp ├── znetworkui.h ├── zprogressbar.cpp ├── zprogressbar.h ├── zpwrprecisionsetdialog.cpp ├── zpwrprecisionsetdialog.h ├── zshutdwndia.cpp ├── zshutdwndia.h ├── zspinbox.cpp ├── zspinbox.h ├── zsummaryui.cpp ├── zsummaryui.h ├── zsyssetupui.cpp ├── zsyssetupui.h ├── ztextcombobox.cpp ├── ztextcombobox.h ├── ztextimglabel.cpp ├── ztextimglabel.h ├── ztextlineeditlabel.cpp ├── ztextlineeditlabel.h ├── ztopbar.cpp ├── ztopbar.h ├── zupdatewizarddialog.cpp ├── zupdatewizarddialog.h ├── zverticalindicator.cpp ├── zverticalindicator.h ├── zvslider.cpp ├── zvslider.h ├── zwaitingdialog.cpp ├── zwaitingdialog.h ├── zwarningtipsdialog.cpp └── zwarningtipsdialog.h └── upload2hmi.sh /LaserHMI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/LaserHMI.pro -------------------------------------------------------------------------------- /LaserHMI.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/LaserHMI.pro.user -------------------------------------------------------------------------------- /LaserHMI.pro.user.398c9b9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/LaserHMI.pro.user.398c9b9 -------------------------------------------------------------------------------- /LaserHMI.pro.user.67cb7f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/LaserHMI.pro.user.67cb7f2 -------------------------------------------------------------------------------- /LaserHMI.pro.user.cbf4ef1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/LaserHMI.pro.user.cbf4ef1 -------------------------------------------------------------------------------- /LaserHMI.pro.user.f55503b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/LaserHMI.pro.user.f55503b -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/README.md -------------------------------------------------------------------------------- /Snapshots/ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/Snapshots/ui1.png -------------------------------------------------------------------------------- /Snapshots/ui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/Snapshots/ui2.png -------------------------------------------------------------------------------- /Snapshots/ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/Snapshots/ui3.png -------------------------------------------------------------------------------- /Snapshots/ui4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/Snapshots/ui4.png -------------------------------------------------------------------------------- /Snapshots/ui5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/Snapshots/ui5.png -------------------------------------------------------------------------------- /Snapshots/ui6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/Snapshots/ui6.png -------------------------------------------------------------------------------- /base/zbaseobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zbaseobj.cpp -------------------------------------------------------------------------------- /base/zbaseobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zbaseobj.h -------------------------------------------------------------------------------- /base/zbaseui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zbaseui.cpp -------------------------------------------------------------------------------- /base/zbaseui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zbaseui.h -------------------------------------------------------------------------------- /base/zdatetimechooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zdatetimechooser.cpp -------------------------------------------------------------------------------- /base/zdatetimechooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zdatetimechooser.h -------------------------------------------------------------------------------- /base/zpiechart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zpiechart.cpp -------------------------------------------------------------------------------- /base/zpiechart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/base/zpiechart.h -------------------------------------------------------------------------------- /ci/crc16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ci/crc16.cpp -------------------------------------------------------------------------------- /ci/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ci/crc16.h -------------------------------------------------------------------------------- /ci/zbaseci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ci/zbaseci.cpp -------------------------------------------------------------------------------- /ci/zbaseci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ci/zbaseci.h -------------------------------------------------------------------------------- /ci/zlitronicsci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ci/zlitronicsci.cpp -------------------------------------------------------------------------------- /ci/zlitronicsci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ci/zlitronicsci.h -------------------------------------------------------------------------------- /db/zbasedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/db/zbasedb.cpp -------------------------------------------------------------------------------- /db/zbasedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/db/zbasedb.h -------------------------------------------------------------------------------- /db/zsqlitedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/db/zsqlitedb.cpp -------------------------------------------------------------------------------- /db/zsqlitedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/db/zsqlitedb.h -------------------------------------------------------------------------------- /dump/zdbgserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/dump/zdbgserver.cpp -------------------------------------------------------------------------------- /dump/zdbgserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/dump/zdbgserver.h -------------------------------------------------------------------------------- /fonts/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/fonts/msyh.ttf -------------------------------------------------------------------------------- /fonts/wqy-microhei.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/fonts/wqy-microhei.ttc -------------------------------------------------------------------------------- /gbl/hmi_const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/gbl/hmi_const.cpp -------------------------------------------------------------------------------- /gbl/hmi_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/gbl/hmi_const.h -------------------------------------------------------------------------------- /hmires.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/hmires.qrc -------------------------------------------------------------------------------- /images/Keyboard/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/bottom.png -------------------------------------------------------------------------------- /images/Keyboard/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/close.png -------------------------------------------------------------------------------- /images/Keyboard/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/left.png -------------------------------------------------------------------------------- /images/Keyboard/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/next.png -------------------------------------------------------------------------------- /images/Keyboard/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/previous.png -------------------------------------------------------------------------------- /images/Keyboard/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/right.png -------------------------------------------------------------------------------- /images/Keyboard/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/Keyboard/top.png -------------------------------------------------------------------------------- /images/about/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/about/logo.png -------------------------------------------------------------------------------- /images/bottombar/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/bottombar/Cancel.png -------------------------------------------------------------------------------- /images/bottombar/Console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/bottombar/Console.png -------------------------------------------------------------------------------- /images/bottombar/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/bottombar/Exit.png -------------------------------------------------------------------------------- /images/bottombar/Logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/bottombar/Logout.png -------------------------------------------------------------------------------- /images/bottombar/Reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/bottombar/Reboot.png -------------------------------------------------------------------------------- /images/bottombar/Shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/bottombar/Shutdown.png -------------------------------------------------------------------------------- /images/chiller/BypassChiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/chiller/BypassChiller.png -------------------------------------------------------------------------------- /images/chiller/ReEnableChiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/chiller/ReEnableChiller.png -------------------------------------------------------------------------------- /images/common/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,8,15,11,12,5 4 | Version=3 5 | -------------------------------------------------------------------------------- /images/common/Checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/Checked.png -------------------------------------------------------------------------------- /images/common/UnChecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/UnChecked.png -------------------------------------------------------------------------------- /images/common/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/add.png -------------------------------------------------------------------------------- /images/common/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/arrow.png -------------------------------------------------------------------------------- /images/common/pushed_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/pushed_left.png -------------------------------------------------------------------------------- /images/common/pushed_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/pushed_right.png -------------------------------------------------------------------------------- /images/common/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/sub.png -------------------------------------------------------------------------------- /images/common/up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/up_left.png -------------------------------------------------------------------------------- /images/common/up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/common/up_right.png -------------------------------------------------------------------------------- /images/hzpy-utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/hzpy-utf8.txt -------------------------------------------------------------------------------- /images/laser/mainCtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/laser/mainCtl.png -------------------------------------------------------------------------------- /images/laser/mdlCtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/laser/mdlCtl.png -------------------------------------------------------------------------------- /images/led/led_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/led/led_green.png -------------------------------------------------------------------------------- /images/led/led_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/led/led_red.png -------------------------------------------------------------------------------- /images/led/led_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/led/led_yellow.png -------------------------------------------------------------------------------- /images/load/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/load/background.png -------------------------------------------------------------------------------- /images/log/Alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Alarm.png -------------------------------------------------------------------------------- /images/log/Chiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Chiller.png -------------------------------------------------------------------------------- /images/log/Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Export.png -------------------------------------------------------------------------------- /images/log/Keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Keyboard.png -------------------------------------------------------------------------------- /images/log/Laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Laser.png -------------------------------------------------------------------------------- /images/log/Operate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Operate.png -------------------------------------------------------------------------------- /images/log/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Search.png -------------------------------------------------------------------------------- /images/log/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/Trash.png -------------------------------------------------------------------------------- /images/log/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/next.png -------------------------------------------------------------------------------- /images/log/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/log/previous.png -------------------------------------------------------------------------------- /images/login/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,8,14,13,12,51 4 | Version=3 5 | -------------------------------------------------------------------------------- /images/login/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/login/background.png -------------------------------------------------------------------------------- /images/login/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/login/lock.png -------------------------------------------------------------------------------- /images/mainctl/RGB_All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/RGB_All.png -------------------------------------------------------------------------------- /images/mainctl/RGB_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/RGB_Blue.png -------------------------------------------------------------------------------- /images/mainctl/RGB_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/RGB_Green.png -------------------------------------------------------------------------------- /images/mainctl/RGB_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/RGB_Red.png -------------------------------------------------------------------------------- /images/mainctl/WhiteBalance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/WhiteBalance.png -------------------------------------------------------------------------------- /images/mainctl/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/add.png -------------------------------------------------------------------------------- /images/mainctl/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/add1.png -------------------------------------------------------------------------------- /images/mainctl/add_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/add_gray.png -------------------------------------------------------------------------------- /images/mainctl/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/busy.png -------------------------------------------------------------------------------- /images/mainctl/circle_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/circle_gray.png -------------------------------------------------------------------------------- /images/mainctl/circle_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/circle_orange.png -------------------------------------------------------------------------------- /images/mainctl/colortemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/colortemp.png -------------------------------------------------------------------------------- /images/mainctl/hexagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/hexagon.png -------------------------------------------------------------------------------- /images/mainctl/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/sub.png -------------------------------------------------------------------------------- /images/mainctl/sub1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/sub1.png -------------------------------------------------------------------------------- /images/mainctl/sub_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/mainctl/sub_gray.png -------------------------------------------------------------------------------- /images/navigate/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/about.png -------------------------------------------------------------------------------- /images/navigate/chiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/chiller.png -------------------------------------------------------------------------------- /images/navigate/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/debug.png -------------------------------------------------------------------------------- /images/navigate/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/laser.png -------------------------------------------------------------------------------- /images/navigate/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/log.png -------------------------------------------------------------------------------- /images/navigate/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/network.png -------------------------------------------------------------------------------- /images/navigate/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/setup.png -------------------------------------------------------------------------------- /images/navigate/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/status.png -------------------------------------------------------------------------------- /images/navigate/sysinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/navigate/sysinfo.png -------------------------------------------------------------------------------- /images/op2/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/op2/add.png -------------------------------------------------------------------------------- /images/op2/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/op2/sub.png -------------------------------------------------------------------------------- /images/summary/Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/summary/Left.png -------------------------------------------------------------------------------- /images/summary/Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/summary/Right.png -------------------------------------------------------------------------------- /images/topbar/signal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/topbar/signal0.png -------------------------------------------------------------------------------- /images/topbar/signal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/topbar/signal1.png -------------------------------------------------------------------------------- /images/topbar/signal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/topbar/signal2.png -------------------------------------------------------------------------------- /images/topbar/signal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/images/topbar/signal3.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/main.cpp -------------------------------------------------------------------------------- /ringbuffer/zringbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ringbuffer/zringbuffer.cpp -------------------------------------------------------------------------------- /ringbuffer/zringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ringbuffer/zringbuffer.h -------------------------------------------------------------------------------- /skin/defaultSkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/skin/defaultSkin -------------------------------------------------------------------------------- /test_command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/test_command -------------------------------------------------------------------------------- /ui/log/zchillerlogui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zchillerlogui.cpp -------------------------------------------------------------------------------- /ui/log/zchillerlogui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zchillerlogui.h -------------------------------------------------------------------------------- /ui/log/zlaserlogui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zlaserlogui.cpp -------------------------------------------------------------------------------- /ui/log/zlaserlogui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zlaserlogui.h -------------------------------------------------------------------------------- /ui/log/zlogfilterdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zlogfilterdialog.cpp -------------------------------------------------------------------------------- /ui/log/zlogfilterdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zlogfilterdialog.h -------------------------------------------------------------------------------- /ui/log/zlogmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zlogmanager.cpp -------------------------------------------------------------------------------- /ui/log/zlogmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zlogmanager.h -------------------------------------------------------------------------------- /ui/log/zoperatelogui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zoperatelogui.cpp -------------------------------------------------------------------------------- /ui/log/zoperatelogui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/log/zoperatelogui.h -------------------------------------------------------------------------------- /ui/zaboutui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zaboutui.cpp -------------------------------------------------------------------------------- /ui/zaboutui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zaboutui.h -------------------------------------------------------------------------------- /ui/zbarui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zbarui.cpp -------------------------------------------------------------------------------- /ui/zbarui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zbarui.h -------------------------------------------------------------------------------- /ui/zbottombar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zbottombar.cpp -------------------------------------------------------------------------------- /ui/zbottombar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zbottombar.h -------------------------------------------------------------------------------- /ui/zcheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcheckbox.cpp -------------------------------------------------------------------------------- /ui/zcheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcheckbox.h -------------------------------------------------------------------------------- /ui/zchillerui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zchillerui.cpp -------------------------------------------------------------------------------- /ui/zchillerui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zchillerui.h -------------------------------------------------------------------------------- /ui/zcircleindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcircleindicator.cpp -------------------------------------------------------------------------------- /ui/zcircleindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcircleindicator.h -------------------------------------------------------------------------------- /ui/zcolortemptuningdia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcolortemptuningdia.cpp -------------------------------------------------------------------------------- /ui/zcolortemptuningdia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcolortemptuningdia.h -------------------------------------------------------------------------------- /ui/zcurveui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcurveui.cpp -------------------------------------------------------------------------------- /ui/zcurveui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zcurveui.h -------------------------------------------------------------------------------- /ui/zdatetimesetdia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zdatetimesetdia.cpp -------------------------------------------------------------------------------- /ui/zdatetimesetdia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zdatetimesetdia.h -------------------------------------------------------------------------------- /ui/zdbgtestui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zdbgtestui.cpp -------------------------------------------------------------------------------- /ui/zdbgtestui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zdbgtestui.h -------------------------------------------------------------------------------- /ui/zdigkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zdigkbd.cpp -------------------------------------------------------------------------------- /ui/zdigkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zdigkbd.h -------------------------------------------------------------------------------- /ui/zframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zframe.cpp -------------------------------------------------------------------------------- /ui/zframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zframe.h -------------------------------------------------------------------------------- /ui/zfullkbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zfullkbd.cpp -------------------------------------------------------------------------------- /ui/zfullkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zfullkbd.h -------------------------------------------------------------------------------- /ui/zlaserrunhoursui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlaserrunhoursui.cpp -------------------------------------------------------------------------------- /ui/zlaserrunhoursui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlaserrunhoursui.h -------------------------------------------------------------------------------- /ui/zlaserui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlaserui.cpp -------------------------------------------------------------------------------- /ui/zlaserui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlaserui.h -------------------------------------------------------------------------------- /ui/zlinelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlinelabel.cpp -------------------------------------------------------------------------------- /ui/zlinelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlinelabel.h -------------------------------------------------------------------------------- /ui/zloadui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zloadui.cpp -------------------------------------------------------------------------------- /ui/zloadui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zloadui.h -------------------------------------------------------------------------------- /ui/zloginui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zloginui.cpp -------------------------------------------------------------------------------- /ui/zloginui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zloginui.h -------------------------------------------------------------------------------- /ui/zlogui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlogui.cpp -------------------------------------------------------------------------------- /ui/zlogui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zlogui.h -------------------------------------------------------------------------------- /ui/zmainctlui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zmainctlui.cpp -------------------------------------------------------------------------------- /ui/zmainctlui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zmainctlui.h -------------------------------------------------------------------------------- /ui/zmainui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zmainui.cpp -------------------------------------------------------------------------------- /ui/zmainui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zmainui.h -------------------------------------------------------------------------------- /ui/zmdlctlui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zmdlctlui.cpp -------------------------------------------------------------------------------- /ui/zmdlctlui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zmdlctlui.h -------------------------------------------------------------------------------- /ui/znavigateui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/znavigateui.cpp -------------------------------------------------------------------------------- /ui/znavigateui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/znavigateui.h -------------------------------------------------------------------------------- /ui/znetworkui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/znetworkui.cpp -------------------------------------------------------------------------------- /ui/znetworkui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/znetworkui.h -------------------------------------------------------------------------------- /ui/zprogressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zprogressbar.cpp -------------------------------------------------------------------------------- /ui/zprogressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zprogressbar.h -------------------------------------------------------------------------------- /ui/zpwrprecisionsetdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zpwrprecisionsetdialog.cpp -------------------------------------------------------------------------------- /ui/zpwrprecisionsetdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zpwrprecisionsetdialog.h -------------------------------------------------------------------------------- /ui/zshutdwndia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zshutdwndia.cpp -------------------------------------------------------------------------------- /ui/zshutdwndia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zshutdwndia.h -------------------------------------------------------------------------------- /ui/zspinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zspinbox.cpp -------------------------------------------------------------------------------- /ui/zspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zspinbox.h -------------------------------------------------------------------------------- /ui/zsummaryui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zsummaryui.cpp -------------------------------------------------------------------------------- /ui/zsummaryui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zsummaryui.h -------------------------------------------------------------------------------- /ui/zsyssetupui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zsyssetupui.cpp -------------------------------------------------------------------------------- /ui/zsyssetupui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zsyssetupui.h -------------------------------------------------------------------------------- /ui/ztextcombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztextcombobox.cpp -------------------------------------------------------------------------------- /ui/ztextcombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztextcombobox.h -------------------------------------------------------------------------------- /ui/ztextimglabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztextimglabel.cpp -------------------------------------------------------------------------------- /ui/ztextimglabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztextimglabel.h -------------------------------------------------------------------------------- /ui/ztextlineeditlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztextlineeditlabel.cpp -------------------------------------------------------------------------------- /ui/ztextlineeditlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztextlineeditlabel.h -------------------------------------------------------------------------------- /ui/ztopbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztopbar.cpp -------------------------------------------------------------------------------- /ui/ztopbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/ztopbar.h -------------------------------------------------------------------------------- /ui/zupdatewizarddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zupdatewizarddialog.cpp -------------------------------------------------------------------------------- /ui/zupdatewizarddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zupdatewizarddialog.h -------------------------------------------------------------------------------- /ui/zverticalindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zverticalindicator.cpp -------------------------------------------------------------------------------- /ui/zverticalindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zverticalindicator.h -------------------------------------------------------------------------------- /ui/zvslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zvslider.cpp -------------------------------------------------------------------------------- /ui/zvslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zvslider.h -------------------------------------------------------------------------------- /ui/zwaitingdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zwaitingdialog.cpp -------------------------------------------------------------------------------- /ui/zwaitingdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zwaitingdialog.h -------------------------------------------------------------------------------- /ui/zwarningtipsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zwarningtipsdialog.cpp -------------------------------------------------------------------------------- /ui/zwarningtipsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/ui/zwarningtipsdialog.h -------------------------------------------------------------------------------- /upload2hmi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShellAlbert/LaserHMI/HEAD/upload2hmi.sh --------------------------------------------------------------------------------