├── LICENSE ├── QWidgetDemo.pro ├── README.md ├── control ├── 0snap │ ├── battery.jpg │ ├── cpumemorylabel.jpg │ ├── devicebutton.jpg │ ├── devicesizetable.jpg │ ├── imageswitch.jpg │ ├── ipaddress.jpg │ ├── lightbutton.jpg │ ├── navbutton.jpg │ ├── savelog.jpg │ ├── saveruntime.jpg │ ├── smoothcurve.jpg │ └── zhtopy.jpg ├── battery │ ├── battery.cpp │ ├── battery.h │ ├── battery.pro │ ├── frmbattery.cpp │ ├── frmbattery.h │ ├── frmbattery.ui │ └── main.cpp ├── control.pro ├── cpumemorylabel │ ├── cpumemorylabel.cpp │ ├── cpumemorylabel.h │ ├── cpumemorylabel.pro │ ├── frmcpumemorylabel.cpp │ ├── frmcpumemorylabel.h │ ├── frmcpumemorylabel.ui │ └── main.cpp ├── devicebutton │ ├── devicebutton.cpp │ ├── devicebutton.h │ ├── devicebutton.pro │ ├── frmdevicebutton.cpp │ ├── frmdevicebutton.h │ ├── frmdevicebutton.ui │ ├── image │ │ ├── bg_call.jpg │ │ └── devicebutton │ │ │ ├── devicebutton_black_bubble.png │ │ │ ├── devicebutton_black_bubble2.png │ │ │ ├── devicebutton_black_circle.png │ │ │ ├── devicebutton_black_msg.png │ │ │ ├── devicebutton_black_msg2.png │ │ │ ├── devicebutton_black_police.png │ │ │ ├── devicebutton_blue_bubble.png │ │ │ ├── devicebutton_blue_bubble2.png │ │ │ ├── devicebutton_blue_circle.png │ │ │ ├── devicebutton_blue_msg.png │ │ │ ├── devicebutton_blue_msg2.png │ │ │ ├── devicebutton_blue_police.png │ │ │ ├── devicebutton_gray_bubble.png │ │ │ ├── devicebutton_gray_bubble2.png │ │ │ ├── devicebutton_gray_circle.png │ │ │ ├── devicebutton_gray_msg.png │ │ │ ├── devicebutton_gray_msg2.png │ │ │ ├── devicebutton_gray_police.png │ │ │ ├── devicebutton_green_bubble.png │ │ │ ├── devicebutton_green_bubble2.png │ │ │ ├── devicebutton_green_circle.png │ │ │ ├── devicebutton_green_msg.png │ │ │ ├── devicebutton_green_msg2.png │ │ │ ├── devicebutton_green_police.png │ │ │ ├── devicebutton_purple_bubble.png │ │ │ ├── devicebutton_purple_bubble2.png │ │ │ ├── devicebutton_purple_circle.png │ │ │ ├── devicebutton_purple_msg.png │ │ │ ├── devicebutton_purple_msg2.png │ │ │ ├── devicebutton_purple_police.png │ │ │ ├── devicebutton_red_bubble.png │ │ │ ├── devicebutton_red_bubble2.png │ │ │ ├── devicebutton_red_circle.png │ │ │ ├── devicebutton_red_msg.png │ │ │ ├── devicebutton_red_msg2.png │ │ │ ├── devicebutton_red_police.png │ │ │ ├── devicebutton_yellow_bubble.png │ │ │ ├── devicebutton_yellow_bubble2.png │ │ │ ├── devicebutton_yellow_circle.png │ │ │ ├── devicebutton_yellow_msg.png │ │ │ ├── devicebutton_yellow_msg2.png │ │ │ └── devicebutton_yellow_police.png │ ├── main.cpp │ └── main.qrc ├── devicesizetable │ ├── devicesizetable.cpp │ ├── devicesizetable.h │ ├── devicesizetable.pro │ ├── frmdevicesizetable.cpp │ ├── frmdevicesizetable.h │ ├── frmdevicesizetable.ui │ └── main.cpp ├── imageswitch │ ├── frmimageswitch.cpp │ ├── frmimageswitch.h │ ├── frmimageswitch.ui │ ├── image │ │ └── imageswitch │ │ │ ├── btncheckoff1.png │ │ │ ├── btncheckoff2.png │ │ │ ├── btncheckoff3.png │ │ │ ├── btncheckon1.png │ │ │ ├── btncheckon2.png │ │ │ └── btncheckon3.png │ ├── imageswitch.cpp │ ├── imageswitch.h │ ├── imageswitch.pro │ ├── main.cpp │ └── main.qrc ├── ipaddress │ ├── frmipaddress.cpp │ ├── frmipaddress.h │ ├── frmipaddress.ui │ ├── ipaddress.cpp │ ├── ipaddress.h │ ├── ipaddress.pro │ └── main.cpp ├── lightbutton │ ├── frmlightbutton.cpp │ ├── frmlightbutton.h │ ├── frmlightbutton.ui │ ├── lightbutton.cpp │ ├── lightbutton.h │ ├── lightbutton.pro │ └── main.cpp ├── navbutton │ ├── font │ │ └── fontawesome-webfont.ttf │ ├── frmnavbutton.cpp │ ├── frmnavbutton.h │ ├── frmnavbutton.ui │ ├── iconhelper.cpp │ ├── iconhelper.h │ ├── main.cpp │ ├── main.qrc │ ├── navbutton.cpp │ ├── navbutton.h │ └── navbutton.pro ├── savelog │ ├── frmsavelog.cpp │ ├── frmsavelog.h │ ├── frmsavelog.ui │ ├── main.cpp │ ├── savelog.cpp │ ├── savelog.h │ └── savelog.pro ├── saveruntime │ ├── frmsaveruntime.cpp │ ├── frmsaveruntime.h │ ├── frmsaveruntime.ui │ ├── main.cpp │ ├── saveruntime.cpp │ ├── saveruntime.h │ └── saveruntime.pro ├── smoothcurve │ ├── frmsmoothcurve.cpp │ ├── frmsmoothcurve.h │ ├── frmsmoothcurve.ui │ ├── main.cpp │ ├── smoothcurve.cpp │ ├── smoothcurve.h │ └── smoothcurve.pro └── zhtopy │ ├── data │ └── zhtopy.txt │ ├── frmzhtopy.cpp │ ├── frmzhtopy.h │ ├── frmzhtopy.ui │ ├── main.cpp │ ├── main.qrc │ ├── zhtopy.cpp │ ├── zhtopy.h │ └── zhtopy.pro ├── docs ├── 0gitee │ ├── bigscreen │ │ └── index.html │ ├── iotsystem │ │ └── index.html │ └── video_system │ │ └── index.html ├── 0github │ ├── bigscreen │ │ └── index.html │ ├── iotsystem │ │ └── index.html │ └── video_system │ │ └── index.html ├── bigscreen.html ├── bigscreen │ ├── index.html │ └── snap │ │ ├── 1-1-1-1.jpg │ │ ├── 1-1-1-2.jpg │ │ ├── 1-1-1-3.jpg │ │ ├── 1-1-1-4.jpg │ │ ├── 1-1-2-1.jpg │ │ ├── 1-1-2-2.jpg │ │ ├── 1-1-3-1.jpg │ │ ├── 1-1-3-2.jpg │ │ ├── 1-2-0.jpg │ │ ├── 1-2-1.jpg │ │ ├── 1-2-2.jpg │ │ ├── 1-2-3.jpg │ │ ├── 1-2-4.jpg │ │ ├── 1-3-2.jpg │ │ ├── 1-3-3.jpg │ │ ├── 1-3-5.jpg │ │ ├── 2-1-0.jpg │ │ ├── 2-1-1.jpg │ │ ├── 2-1-2.jpg │ │ ├── 2-1-3.jpg │ │ ├── 2-1-4.jpg │ │ ├── 2-2-0.jpg │ │ ├── 2-2-1.jpg │ │ ├── 2-2-2.jpg │ │ ├── 2-2-3.jpg │ │ ├── 2-2-4.jpg │ │ ├── 2-3-0.jpg │ │ ├── 2-3-1.jpg │ │ ├── 2-3-2.jpg │ │ ├── 2-3-3.jpg │ │ ├── 2-3-4.jpg │ │ ├── 2-4-0.jpg │ │ ├── 2-4-1.jpg │ │ ├── 2-4-2.jpg │ │ ├── 2-4-3.jpg │ │ ├── 2-5-0.jpg │ │ ├── 2-5-1.jpg │ │ ├── 2-5-2.jpg │ │ ├── 2-5-3.jpg │ │ ├── 2-6-0.jpg │ │ ├── 2-6-1.jpg │ │ ├── 2-6-2.jpg │ │ ├── 2-6-3.jpg │ │ ├── 2-6-4.jpg │ │ ├── 2-7-0.jpg │ │ ├── 2-7-1.jpg │ │ ├── 2-7-2.jpg │ │ ├── 2-7-3.jpg │ │ ├── 2-8-0.jpg │ │ ├── 2-8-1.jpg │ │ ├── 2-8-2.jpg │ │ ├── 4-4-4-1.jpg │ │ ├── 4-4-4-2.jpg │ │ ├── 4-4-4-3.jpg │ │ ├── 4-4-4-4.jpg │ │ ├── 4-4-4-5.jpg │ │ ├── 4-4-4-6.jpg │ │ ├── 4-4-4-7.jpg │ │ ├── 4-4-4-8.jpg │ │ ├── 5-1-1.jpg │ │ ├── 5-1-2.jpg │ │ ├── 5-1-3.jpg │ │ ├── 5-1-4.jpg │ │ ├── 5-1-5.jpg │ │ ├── 5-1-6.jpg │ │ ├── 5-1-7.jpg │ │ ├── 5-1-8.jpg │ │ ├── 5-2-1.jpg │ │ ├── 5-2-2.jpg │ │ ├── 5-2-3.jpg │ │ ├── 5-2-4.jpg │ │ ├── 5-3-1.jpg │ │ ├── 5-3-10-1.jpg │ │ ├── 5-3-10-2.jpg │ │ ├── 5-3-10-3.jpg │ │ ├── 5-3-10-4.jpg │ │ ├── 5-3-11.jpg │ │ ├── 5-3-2.jpg │ │ ├── 5-3-3.jpg │ │ ├── 5-3-4.jpg │ │ ├── 5-3-5.jpg │ │ ├── 5-3-6.jpg │ │ ├── 5-3-7.jpg │ │ ├── 5-3-8.jpg │ │ ├── 5-3-9.jpg │ │ ├── 5-4-1.jpg │ │ ├── 5-4-10.jpg │ │ ├── 5-4-11.jpg │ │ ├── 5-4-12.jpg │ │ ├── 5-4-2.jpg │ │ ├── 5-4-3.jpg │ │ ├── 5-4-4.jpg │ │ ├── 5-4-5.jpg │ │ ├── 5-4-6.jpg │ │ ├── 5-4-7.jpg │ │ ├── 5-4-8.jpg │ │ ├── 5-4-9.jpg │ │ ├── 5-5-1.jpg │ │ ├── 5-5-2.jpg │ │ ├── 5-5-3.jpg │ │ ├── 5-5-4.jpg │ │ ├── 5-5-6.jpg │ │ ├── 5-5-7.jpg │ │ ├── 5-5-8.jpg │ │ ├── 5-6-1.jpg │ │ ├── 5-6-2.jpg │ │ ├── 5-6-3.jpg │ │ ├── 5-6-4.jpg │ │ ├── 5-6-5.jpg │ │ ├── 5-6-6.jpg │ │ ├── 5-6-7.jpg │ │ └── 5-6-8.jpg ├── index.html ├── iotsystem.html ├── iotsystem │ ├── index.html │ └── snap │ │ ├── 1-1-1.jpg │ │ ├── 1-1-2.jpg │ │ ├── 1-2-1.jpg │ │ ├── 10-1-1.jpg │ │ ├── 10-1-2.jpg │ │ ├── 10-1-3.jpg │ │ ├── 10-2-1.jpg │ │ ├── 10-3-1.jpg │ │ ├── 10-3-2.jpg │ │ ├── 10-3-3.jpg │ │ ├── 10-4-1.jpg │ │ ├── 10-5-1.jpg │ │ ├── 10-6-1.jpg │ │ ├── 10-6-2.jpg │ │ ├── 10-6-3.jpg │ │ ├── 10-6-4.jpg │ │ ├── 10-6-5.jpg │ │ ├── 10-6-6.jpg │ │ ├── 10-7-1.jpg │ │ ├── 10-7-2.jpg │ │ ├── 10-8-1.jpg │ │ ├── 10-8-2.jpg │ │ ├── 10-8-3.jpg │ │ ├── 10-9-1.jpg │ │ ├── 2-1-0.jpg │ │ ├── 2-1-1.jpg │ │ ├── 2-1-10.jpg │ │ ├── 2-1-2.jpg │ │ ├── 2-1-3.jpg │ │ ├── 2-1-4.jpg │ │ ├── 2-1-5.jpg │ │ ├── 2-1-6.jpg │ │ ├── 2-1-7.jpg │ │ ├── 2-1-8.jpg │ │ ├── 2-1-9.jpg │ │ ├── 2-2-1.jpg │ │ ├── 2-2-6.jpg │ │ ├── 2-2-7.jpg │ │ ├── 2-3-1.jpg │ │ ├── 2-3-6.jpg │ │ ├── 2-3-7.jpg │ │ ├── 2-4-1.jpg │ │ ├── 2-4-6.jpg │ │ ├── 2-4-7.jpg │ │ ├── 2-5-1.jpg │ │ ├── 2-5-6.jpg │ │ ├── 2-5-7.jpg │ │ ├── 2-6-1.jpg │ │ ├── 2-6-6.jpg │ │ ├── 2-6-7.jpg │ │ ├── 3-1-1.jpg │ │ ├── 3-1-6.jpg │ │ ├── 3-1-7.jpg │ │ ├── 3-1-8-1.jpg │ │ ├── 3-1-8-2.jpg │ │ ├── 3-2-1.jpg │ │ ├── 3-3-1.jpg │ │ ├── 3-4-1.jpg │ │ ├── 3-5-1.jpg │ │ ├── 4-0-1.jpg │ │ ├── 4-1-1.jpg │ │ ├── 4-2-1.jpg │ │ ├── 4-2-2.jpg │ │ ├── 4-2-3.jpg │ │ ├── 4-3-1.jpg │ │ ├── 4-4-1.jpg │ │ ├── 4-4-2.jpg │ │ ├── 5-1-1.jpg │ │ ├── 5-1-2.jpg │ │ ├── 5-1-3.jpg │ │ ├── 5-1-4.jpg │ │ ├── 5-2-1.jpg │ │ ├── 5-2-2.jpg │ │ ├── 5-2-3.jpg │ │ ├── 5-2-4.jpg │ │ ├── 5-3-1.jpg │ │ ├── 5-3-2.jpg │ │ ├── 5-3-3.jpg │ │ ├── 5-3-4.jpg │ │ ├── 6-1-1.jpg │ │ ├── 6-1-2.jpg │ │ ├── 6-1-3.jpg │ │ ├── 6-1-4.jpg │ │ ├── 6-1-5.jpg │ │ ├── 6-1-6.jpg │ │ ├── 7-0-1.jpg │ │ ├── 7-0-10.jpg │ │ ├── 7-0-11.jpg │ │ ├── 7-0-12.jpg │ │ ├── 7-0-13.jpg │ │ ├── 7-0-14.jpg │ │ ├── 7-0-15.jpg │ │ ├── 7-0-16.jpg │ │ ├── 7-0-17.jpg │ │ ├── 7-0-18.jpg │ │ ├── 7-0-2.jpg │ │ ├── 7-0-3.jpg │ │ ├── 7-0-4.jpg │ │ ├── 7-0-5.jpg │ │ ├── 7-0-6.jpg │ │ ├── 7-0-7.jpg │ │ ├── 7-0-8.jpg │ │ ├── 7-0-9.jpg │ │ ├── 7-1-1.jpg │ │ ├── 7-2-1.jpg │ │ ├── 7-3-1.jpg │ │ ├── 7-4-1.jpg │ │ ├── 7-5-1.jpg │ │ ├── 7-6-1.jpg │ │ ├── 7-7-1.jpg │ │ ├── 7-8-1.jpg │ │ └── 7-9-1.jpg ├── video_system.html └── video_system │ ├── index.html │ └── snap │ ├── 0-7-4.jpg │ ├── 1-1-1.jpg │ ├── 1-1-2.jpg │ ├── 1-2-1.jpg │ ├── 10-0-1.jpg │ ├── 10-0-2.jpg │ ├── 10-1-1.jpg │ ├── 10-10-1.jpg │ ├── 10-11-1.jpg │ ├── 10-2-1.jpg │ ├── 10-3-1.jpg │ ├── 10-4-1.jpg │ ├── 10-5-1.jpg │ ├── 10-6-1.jpg │ ├── 10-7-1.jpg │ ├── 10-8-1.jpg │ ├── 10-9-1.jpg │ ├── 12-3-1.jpg │ ├── 12-3-10.jpg │ ├── 12-3-11.jpg │ ├── 12-3-2.jpg │ ├── 12-3-3.jpg │ ├── 12-3-4.jpg │ ├── 12-3-5.jpg │ ├── 12-3-6.jpg │ ├── 12-3-7.jpg │ ├── 12-3-8.jpg │ ├── 12-3-9.jpg │ ├── 13-1-1.jpg │ ├── 13-1-2.jpg │ ├── 13-10-1.jpg │ ├── 13-10-2.jpg │ ├── 13-10-3.jpg │ ├── 13-11-1.jpg │ ├── 13-11-2.jpg │ ├── 13-12-1.jpg │ ├── 13-13-1.jpg │ ├── 13-13-2.jpg │ ├── 13-14-1.jpg │ ├── 13-15-1.jpg │ ├── 13-15-2.jpg │ ├── 13-15-3.jpg │ ├── 13-16-1.jpg │ ├── 13-17-1.jpg │ ├── 13-2-1.jpg │ ├── 13-2-2.jpg │ ├── 13-20-1.jpg │ ├── 13-20-2.jpg │ ├── 13-20-3.jpg │ ├── 13-21-1.jpg │ ├── 13-21-2.jpg │ ├── 13-3-1.jpg │ ├── 13-3-2.jpg │ ├── 13-3-3.jpg │ ├── 13-3-4.jpg │ ├── 13-4-1.jpg │ ├── 13-4-2.jpg │ ├── 13-4-3.jpg │ ├── 13-4-4.jpg │ ├── 13-5-1.jpg │ ├── 13-5-2.jpg │ ├── 13-5-3.jpg │ ├── 13-6-1.jpg │ ├── 13-6-2.jpg │ ├── 13-7-1.jpg │ ├── 13-7-2.jpg │ ├── 13-7-3.jpg │ ├── 13-7-4.jpg │ ├── 13-8-1.jpg │ ├── 2-0-1.jpg │ ├── 2-1-1.jpg │ ├── 2-1-2.jpg │ ├── 2-10-1.jpg │ ├── 2-11-1.jpg │ ├── 2-12-1.jpg │ ├── 2-13-1.jpg │ ├── 2-14-1.jpg │ ├── 2-15-1.jpg │ ├── 2-16-1.jpg │ ├── 2-17-1.jpg │ ├── 2-18-1.jpg │ ├── 2-19-1.jpg │ ├── 2-2-1.jpg │ ├── 2-20-1.jpg │ ├── 2-21-1.jpg │ ├── 2-22-1.jpg │ ├── 2-23-1.jpg │ ├── 2-24-1.jpg │ ├── 2-25-1.jpg │ ├── 2-26-1.jpg │ ├── 2-3-1.jpg │ ├── 2-4-1.jpg │ ├── 2-5-1.jpg │ ├── 2-6-1.jpg │ ├── 2-7-1.jpg │ ├── 2-8-1.jpg │ ├── 2-9-1.jpg │ ├── 3-1-1.jpg │ ├── 3-1-2.jpg │ ├── 3-2-1.jpg │ ├── 3-3-1.jpg │ ├── 3-4-1.jpg │ ├── 3-4-2.jpg │ ├── 3-4-3.jpg │ ├── 3-5-1.jpg │ ├── 3-5-2.jpg │ ├── 4-1-1.jpg │ ├── 4-2-1.jpg │ ├── 4-3-1.jpg │ ├── 4-4-1.jpg │ ├── 5-1-1.jpg │ ├── 5-1-2.jpg │ ├── 5-1-3.jpg │ ├── 5-1-4.jpg │ ├── 5-1-5.jpg │ ├── 5-1-7.jpg │ ├── 5-1-8.jpg │ ├── 5-2-1.jpg │ ├── 6-1-0.jpg │ ├── 6-1-1.jpg │ ├── 6-1-2.jpg │ ├── 6-1-3.jpg │ ├── 6-1-4.jpg │ ├── 6-1-5.jpg │ ├── 6-2-1.jpg │ ├── 6-2-6.jpg │ ├── 6-2-7.jpg │ ├── 6-3-1.jpg │ ├── 6-3-6.jpg │ ├── 6-3-7.jpg │ ├── 6-3-8.jpg │ ├── 6-3-9.jpg │ ├── 6-4-1.jpg │ ├── 6-4-9.jpg │ ├── 6-5-1.jpg │ ├── 6-5-6.jpg │ ├── 6-5-7.jpg │ ├── 6-5-8-1.jpg │ ├── 6-5-8-2.jpg │ ├── 6-6-1.jpg │ ├── 6-7-0.jpg │ ├── 6-7-1.jpg │ ├── 6-7-2.jpg │ ├── 6-7-3.jpg │ ├── 6-7-4.jpg │ ├── 6-7-5.jpg │ ├── 7-6-1.jpg │ ├── 8-1-1.jpg │ ├── 8-1-2.jpg │ ├── 8-1-3.jpg │ ├── 8-1-4.jpg │ ├── 8-1-5.jpg │ ├── 8-1-6.jpg │ ├── 8-1-7.jpg │ ├── 8-2-1.jpg │ ├── 8-2-2.jpg │ ├── 8-2-3.jpg │ ├── 8-2-4.jpg │ ├── 9-1-1.jpg │ ├── 9-1-2.jpg │ ├── 9-1-3.jpg │ ├── 9-1-4.jpg │ ├── 9-1-5.jpg │ ├── 9-1-6.jpg │ ├── 9-1-7.jpg │ ├── 9-2-1.jpg │ ├── 9-2-2.jpg │ ├── 9-3-1.jpg │ ├── 9-3-2.jpg │ ├── 9-3-3.jpg │ ├── 9-3-4.jpg │ ├── 9-4-1.jpg │ ├── 9-4-2.jpg │ └── 9-4-3.jpg ├── netfriend ├── 0snap │ ├── astackwidget.jpg │ ├── imagecropper.jpg │ ├── imageviewwindow.jpg │ └── sliderpuzzlewidget.jpg ├── astackwidget │ ├── astackwidget.cpp │ ├── astackwidget.h │ ├── astackwidget.pro │ ├── frmastackwidget.cpp │ ├── frmastackwidget.h │ ├── frmastackwidget.ui │ └── main.cpp ├── imagecropper │ ├── assets │ │ └── README │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── cropper_shape.png │ │ │ └── import_functions.png │ ├── base │ │ ├── imagecropperdialog.h │ │ ├── imagecropperlabel.cpp │ │ └── imagecropperlabel.h │ ├── example │ │ ├── imagecropperdemo.cpp │ │ ├── imagecropperdemo.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── imagecropper.pro │ └── res │ │ ├── color-palette.ico │ │ ├── save.ico │ │ └── select-file.ico ├── imageviewwindow │ ├── Resources │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── Wblog_left.png │ │ └── Wblog_right.png │ ├── graphicspixmap.cpp │ ├── graphicspixmap.h │ ├── graphicsview.cpp │ ├── graphicsview.h │ ├── imageviewwindow.cpp │ ├── imageviewwindow.h │ ├── imageviewwindow.pro │ ├── imageviewwindow.qrc │ ├── imageviewwindow.ui │ └── main.cpp ├── netfriend.pro └── slidepuzzlewidget │ ├── Resources │ ├── back1.png │ ├── back2.png │ ├── back3.png │ └── back4.png │ ├── frmslidepuzzlewidget.cpp │ ├── frmslidepuzzlewidget.h │ ├── frmslidepuzzlewidget.qrc │ ├── frmslidepuzzlewidget.ui │ ├── main.cpp │ ├── puzzlewidget.cpp │ ├── puzzlewidget.h │ ├── slidepuzzlewidget.pro │ ├── sliderpuzzlewidget.cpp │ ├── sliderpuzzlewidget.h │ └── sliderpuzzlewidget.ui ├── other ├── 0snap │ ├── bgdemo.jpg │ ├── dbpage.jpg │ ├── drawrect.jpg │ ├── echartgauge.jpg │ ├── lineeditnext.jpg │ ├── mouseline.jpg │ ├── multobj2slot.jpg │ ├── ntpclient.jpg │ └── trayicon.jpg ├── bgdemo │ ├── bgdemo.pro │ ├── image │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── main.cpp │ ├── rc.qrc │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── dbpage │ ├── TA.db │ ├── dbpage.cpp │ ├── dbpage.h │ ├── dbpage.pro │ ├── frmdbpage.cpp │ ├── frmdbpage.h │ ├── frmdbpage.ui │ ├── head.h │ ├── main.cpp │ └── readme.txt ├── drawrect │ ├── drawrect.pro │ ├── main.cpp │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── echartgauge │ ├── echartgauge.pro │ ├── file │ │ ├── echarts.min.js │ │ ├── gauge.html │ │ └── qwebchannel.js │ ├── main.cpp │ ├── readme.txt │ ├── webcore.pri │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── lineeditnext │ ├── lineeditnext.pro │ ├── main.cpp │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── mouseline │ ├── main.cpp │ ├── mouseline.pro │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── multobj2slot │ ├── main.cpp │ ├── multobj2slot.pro │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── ntpclient │ ├── frmntpclient.cpp │ ├── frmntpclient.h │ ├── frmntpclient.ui │ ├── main.cpp │ ├── ntpclient.cpp │ ├── ntpclient.h │ └── ntpclient.pro ├── other.pro └── trayicon │ ├── frmtrayicon.cpp │ ├── frmtrayicon.h │ ├── frmtrayicon.ui │ ├── main.cpp │ ├── main.ico │ ├── main.qrc │ ├── trayicon.cpp │ ├── trayicon.h │ └── trayicon.pro ├── third ├── 0snap │ ├── designer.jpg │ ├── hotkey.jpg │ ├── miniblink.jpg │ ├── qcustomplotdemo1.jpg │ ├── qcustomplotdemo2.jpg │ ├── qcustomplotdemo3.jpg │ ├── qcustomplotdemo4.jpg │ ├── qcustomplotdemo5.jpg │ ├── qcustomplotdemo6.jpg │ ├── qcustomplotdemo7.jpg │ ├── qwtdemo.jpg │ └── shortcut.jpg ├── 3rd_qcustomplot │ ├── 3rd_qcustomplot.pri │ ├── smoothcurve.cpp │ ├── smoothcurve.h │ ├── v1_3 │ │ ├── qcustomplot.cpp │ │ └── qcustomplot.h │ ├── v2_0 │ │ ├── qcustomplot.cpp │ │ └── qcustomplot.h │ ├── v2_1 │ │ ├── qcustomplot.cpp │ │ └── qcustomplot.h │ └── v2_1_6 │ │ └── qcustomplot.h ├── 3rd_qhotkey │ ├── 3rd_qhotkey.pri │ ├── qhotkey.cpp │ ├── qhotkey.h │ ├── qhotkey_mac.cpp │ ├── qhotkey_p.h │ ├── qhotkey_win.cpp │ └── qhotkey_x11.cpp ├── 3rd_qwt │ ├── 3rd_qwt.pri │ ├── qwt.h │ ├── qwt_abstract_legend.cpp │ ├── qwt_abstract_legend.h │ ├── qwt_abstract_scale.cpp │ ├── qwt_abstract_scale.h │ ├── qwt_abstract_scale_draw.cpp │ ├── qwt_abstract_scale_draw.h │ ├── qwt_abstract_slider.cpp │ ├── qwt_abstract_slider.h │ ├── qwt_analog_clock.cpp │ ├── qwt_analog_clock.h │ ├── qwt_arrow_button.cpp │ ├── qwt_arrow_button.h │ ├── qwt_clipper.cpp │ ├── qwt_clipper.h │ ├── qwt_color_map.cpp │ ├── qwt_color_map.h │ ├── qwt_column_symbol.cpp │ ├── qwt_column_symbol.h │ ├── qwt_compass.cpp │ ├── qwt_compass.h │ ├── qwt_compass_rose.cpp │ ├── qwt_compass_rose.h │ ├── qwt_compat.h │ ├── qwt_counter.cpp │ ├── qwt_counter.h │ ├── qwt_curve_fitter.cpp │ ├── qwt_curve_fitter.h │ ├── qwt_date.cpp │ ├── qwt_date.h │ ├── qwt_date_scale_draw.cpp │ ├── qwt_date_scale_draw.h │ ├── qwt_date_scale_engine.cpp │ ├── qwt_date_scale_engine.h │ ├── qwt_dial.cpp │ ├── qwt_dial.h │ ├── qwt_dial_needle.cpp │ ├── qwt_dial_needle.h │ ├── qwt_dyngrid_layout.cpp │ ├── qwt_dyngrid_layout.h │ ├── qwt_event_pattern.cpp │ ├── qwt_event_pattern.h │ ├── qwt_global.h │ ├── qwt_graphic.cpp │ ├── qwt_graphic.h │ ├── qwt_interval.cpp │ ├── qwt_interval.h │ ├── qwt_interval_symbol.cpp │ ├── qwt_interval_symbol.h │ ├── qwt_knob.cpp │ ├── qwt_knob.h │ ├── qwt_legend.cpp │ ├── qwt_legend.h │ ├── qwt_legend_data.cpp │ ├── qwt_legend_data.h │ ├── qwt_legend_label.cpp │ ├── qwt_legend_label.h │ ├── qwt_magnifier.cpp │ ├── qwt_magnifier.h │ ├── qwt_math.cpp │ ├── qwt_math.h │ ├── qwt_matrix_raster_data.cpp │ ├── qwt_matrix_raster_data.h │ ├── qwt_null_paintdevice.cpp │ ├── qwt_null_paintdevice.h │ ├── qwt_painter.cpp │ ├── qwt_painter.h │ ├── qwt_painter_command.cpp │ ├── qwt_painter_command.h │ ├── qwt_panner.cpp │ ├── qwt_panner.h │ ├── qwt_picker.cpp │ ├── qwt_picker.h │ ├── qwt_picker_machine.cpp │ ├── qwt_picker_machine.h │ ├── qwt_pixel_matrix.cpp │ ├── qwt_pixel_matrix.h │ ├── qwt_plot.cpp │ ├── qwt_plot.h │ ├── qwt_plot_abstract_barchart.cpp │ ├── qwt_plot_abstract_barchart.h │ ├── qwt_plot_axis.cpp │ ├── qwt_plot_barchart.cpp │ ├── qwt_plot_barchart.h │ ├── qwt_plot_canvas.cpp │ ├── qwt_plot_canvas.h │ ├── qwt_plot_curve.cpp │ ├── qwt_plot_curve.h │ ├── qwt_plot_dict.cpp │ ├── qwt_plot_dict.h │ ├── qwt_plot_directpainter.cpp │ ├── qwt_plot_directpainter.h │ ├── qwt_plot_glcanvas.cpp │ ├── qwt_plot_glcanvas.h │ ├── qwt_plot_grid.cpp │ ├── qwt_plot_grid.h │ ├── qwt_plot_histogram.cpp │ ├── qwt_plot_histogram.h │ ├── qwt_plot_intervalcurve.cpp │ ├── qwt_plot_intervalcurve.h │ ├── qwt_plot_item.cpp │ ├── qwt_plot_item.h │ ├── qwt_plot_layout.cpp │ ├── qwt_plot_layout.h │ ├── qwt_plot_legenditem.cpp │ ├── qwt_plot_legenditem.h │ ├── qwt_plot_magnifier.cpp │ ├── qwt_plot_magnifier.h │ ├── qwt_plot_marker.cpp │ ├── qwt_plot_marker.h │ ├── qwt_plot_multi_barchart.cpp │ ├── qwt_plot_multi_barchart.h │ ├── qwt_plot_panner.cpp │ ├── qwt_plot_panner.h │ ├── qwt_plot_picker.cpp │ ├── qwt_plot_picker.h │ ├── qwt_plot_rasteritem.cpp │ ├── qwt_plot_rasteritem.h │ ├── qwt_plot_renderer.cpp │ ├── qwt_plot_renderer.h │ ├── qwt_plot_rescaler.cpp │ ├── qwt_plot_rescaler.h │ ├── qwt_plot_scaleitem.cpp │ ├── qwt_plot_scaleitem.h │ ├── qwt_plot_seriesitem.cpp │ ├── qwt_plot_seriesitem.h │ ├── qwt_plot_shapeitem.cpp │ ├── qwt_plot_shapeitem.h │ ├── qwt_plot_spectrocurve.cpp │ ├── qwt_plot_spectrocurve.h │ ├── qwt_plot_spectrogram.cpp │ ├── qwt_plot_spectrogram.h │ ├── qwt_plot_svgitem.cpp │ ├── qwt_plot_svgitem.h │ ├── qwt_plot_textlabel.cpp │ ├── qwt_plot_textlabel.h │ ├── qwt_plot_tradingcurve.cpp │ ├── qwt_plot_tradingcurve.h │ ├── qwt_plot_xml.cpp │ ├── qwt_plot_zoneitem.cpp │ ├── qwt_plot_zoneitem.h │ ├── qwt_plot_zoomer.cpp │ ├── qwt_plot_zoomer.h │ ├── qwt_point_3d.cpp │ ├── qwt_point_3d.h │ ├── qwt_point_data.cpp │ ├── qwt_point_data.h │ ├── qwt_point_mapper.cpp │ ├── qwt_point_mapper.h │ ├── qwt_point_polar.cpp │ ├── qwt_point_polar.h │ ├── qwt_raster_data.cpp │ ├── qwt_raster_data.h │ ├── qwt_round_scale_draw.cpp │ ├── qwt_round_scale_draw.h │ ├── qwt_samples.h │ ├── qwt_sampling_thread.cpp │ ├── qwt_sampling_thread.h │ ├── qwt_scale_div.cpp │ ├── qwt_scale_div.h │ ├── qwt_scale_draw.cpp │ ├── qwt_scale_draw.h │ ├── qwt_scale_engine.cpp │ ├── qwt_scale_engine.h │ ├── qwt_scale_map.cpp │ ├── qwt_scale_map.h │ ├── qwt_scale_widget.cpp │ ├── qwt_scale_widget.h │ ├── qwt_series_data.cpp │ ├── qwt_series_data.h │ ├── qwt_series_store.h │ ├── qwt_slider.cpp │ ├── qwt_slider.h │ ├── qwt_spline.cpp │ ├── qwt_spline.h │ ├── qwt_symbol.cpp │ ├── qwt_symbol.h │ ├── qwt_system_clock.cpp │ ├── qwt_system_clock.h │ ├── qwt_text.cpp │ ├── qwt_text.h │ ├── qwt_text_engine.cpp │ ├── qwt_text_engine.h │ ├── qwt_text_label.cpp │ ├── qwt_text_label.h │ ├── qwt_thermo.cpp │ ├── qwt_thermo.h │ ├── qwt_transform.cpp │ ├── qwt_transform.h │ ├── qwt_wheel.cpp │ ├── qwt_wheel.h │ ├── qwt_widget_overlay.cpp │ └── qwt_widget_overlay.h ├── 3rd_qxtglobalshortcut │ ├── 3rd_qxtglobalshortcut.pri │ ├── qxtglobal.cpp │ ├── qxtglobal.h │ ├── qxtglobalshortcut.cpp │ ├── qxtglobalshortcut.h │ ├── qxtglobalshortcut_mac.cpp │ ├── qxtglobalshortcut_p.h │ ├── qxtglobalshortcut_win.cpp │ ├── qxtglobalshortcut_x11.cpp │ ├── qxtwindowsystem.cpp │ ├── qxtwindowsystem.h │ ├── qxtwindowsystem_mac.cpp │ ├── qxtwindowsystem_mac.h │ ├── qxtwindowsystem_win.cpp │ ├── qxtwindowsystem_x11.cpp │ ├── x11info.cpp │ └── x11info.h ├── designer │ ├── designer.pro │ ├── designer.qrc │ ├── form │ │ ├── appfontdialog.cpp │ │ ├── appfontdialog.h │ │ ├── assistantclient.cpp │ │ ├── assistantclient.h │ │ ├── fontpanel.cpp │ │ ├── fontpanel.h │ │ ├── form.pri │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── newform.cpp │ │ ├── newform.h │ │ ├── preferencesdialog.cpp │ │ ├── preferencesdialog.h │ │ ├── preferencesdialog.ui │ │ ├── qttoolbardialog.cpp │ │ ├── qttoolbardialog.h │ │ ├── qttoolbardialog.ui │ │ ├── saveformastemplate.cpp │ │ ├── saveformastemplate.h │ │ ├── saveformastemplate.ui │ │ ├── versiondialog.cpp │ │ └── versiondialog.h │ ├── images │ │ ├── back.png │ │ ├── designer.png │ │ ├── designer_zh_CN.qm │ │ ├── down.png │ │ ├── forward.png │ │ ├── minus.png │ │ ├── plus.png │ │ └── up.png │ ├── lib │ │ ├── extension │ │ │ ├── default_extensionfactory.cpp │ │ │ ├── default_extensionfactory.h │ │ │ ├── extension.cpp │ │ │ ├── extension.h │ │ │ ├── extension.pri │ │ │ ├── extension_global.h │ │ │ ├── qextensionmanager.cpp │ │ │ └── qextensionmanager.h │ │ ├── lib.pro │ │ ├── lib_pch.h │ │ ├── sdk │ │ │ ├── abstractactioneditor.cpp │ │ │ ├── abstractactioneditor.h │ │ │ ├── abstractbrushmanager.h │ │ │ ├── abstractdialoggui.cpp │ │ │ ├── abstractdialoggui_p.h │ │ │ ├── abstractdnditem.h │ │ │ ├── abstractdnditem.qdoc │ │ │ ├── abstractformeditor.cpp │ │ │ ├── abstractformeditor.h │ │ │ ├── abstractformeditorplugin.cpp │ │ │ ├── abstractformeditorplugin.h │ │ │ ├── abstractformwindow.cpp │ │ │ ├── abstractformwindow.h │ │ │ ├── abstractformwindowcursor.cpp │ │ │ ├── abstractformwindowcursor.h │ │ │ ├── abstractformwindowmanager.cpp │ │ │ ├── abstractformwindowmanager.h │ │ │ ├── abstractformwindowtool.cpp │ │ │ ├── abstractformwindowtool.h │ │ │ ├── abstracticoncache.h │ │ │ ├── abstracticoncache.qdoc │ │ │ ├── abstractintegration.cpp │ │ │ ├── abstractintegration.h │ │ │ ├── abstractintrospection.cpp │ │ │ ├── abstractintrospection_p.h │ │ │ ├── abstractlanguage.h │ │ │ ├── abstractmetadatabase.cpp │ │ │ ├── abstractmetadatabase.h │ │ │ ├── abstractnewformwidget.cpp │ │ │ ├── abstractnewformwidget_p.h │ │ │ ├── abstractobjectinspector.cpp │ │ │ ├── abstractobjectinspector.h │ │ │ ├── abstractoptionspage_p.h │ │ │ ├── abstractpromotioninterface.cpp │ │ │ ├── abstractpromotioninterface.h │ │ │ ├── abstractpropertyeditor.cpp │ │ │ ├── abstractpropertyeditor.h │ │ │ ├── abstractresourcebrowser.cpp │ │ │ ├── abstractresourcebrowser.h │ │ │ ├── abstractsettings_p.h │ │ │ ├── abstractwidgetbox.cpp │ │ │ ├── abstractwidgetbox.h │ │ │ ├── abstractwidgetdatabase.cpp │ │ │ ├── abstractwidgetdatabase.h │ │ │ ├── abstractwidgetfactory.cpp │ │ │ ├── abstractwidgetfactory.h │ │ │ ├── dynamicpropertysheet.h │ │ │ ├── dynamicpropertysheet.qdoc │ │ │ ├── extrainfo.cpp │ │ │ ├── extrainfo.h │ │ │ ├── layoutdecoration.h │ │ │ ├── layoutdecoration.qdoc │ │ │ ├── membersheet.h │ │ │ ├── membersheet.qdoc │ │ │ ├── propertysheet.h │ │ │ ├── propertysheet.qdoc │ │ │ ├── script.cpp │ │ │ ├── script_p.h │ │ │ ├── sdk.pri │ │ │ ├── sdk_global.h │ │ │ ├── taskmenu.h │ │ │ └── taskmenu.qdoc │ │ ├── shared │ │ │ ├── actioneditor.cpp │ │ │ ├── actioneditor_p.h │ │ │ ├── actionprovider_p.h │ │ │ ├── actionrepository.cpp │ │ │ ├── actionrepository_p.h │ │ │ ├── addlinkdialog.ui │ │ │ ├── codedialog.cpp │ │ │ ├── codedialog_p.h │ │ │ ├── connectionedit.cpp │ │ │ ├── connectionedit_p.h │ │ │ ├── csshighlighter.cpp │ │ │ ├── csshighlighter_p.h │ │ │ ├── defaultgradients.xml │ │ │ ├── deviceprofile.cpp │ │ │ ├── deviceprofile_p.h │ │ │ ├── dialoggui.cpp │ │ │ ├── dialoggui_p.h │ │ │ ├── extensionfactory_p.h │ │ │ ├── filterwidget.cpp │ │ │ ├── filterwidget_p.h │ │ │ ├── formlayoutmenu.cpp │ │ │ ├── formlayoutmenu_p.h │ │ │ ├── formlayoutrowdialog.ui │ │ │ ├── formwindowbase.cpp │ │ │ ├── formwindowbase_p.h │ │ │ ├── grid.cpp │ │ │ ├── grid_p.h │ │ │ ├── gridpanel.cpp │ │ │ ├── gridpanel.ui │ │ │ ├── gridpanel_p.h │ │ │ ├── htmlhighlighter.cpp │ │ │ ├── htmlhighlighter_p.h │ │ │ ├── iconloader.cpp │ │ │ ├── iconloader_p.h │ │ │ ├── iconselector.cpp │ │ │ ├── iconselector_p.h │ │ │ ├── invisible_widget.cpp │ │ │ ├── invisible_widget_p.h │ │ │ ├── layout.cpp │ │ │ ├── layout_p.h │ │ │ ├── layoutinfo.cpp │ │ │ ├── layoutinfo_p.h │ │ │ ├── metadatabase.cpp │ │ │ ├── metadatabase_p.h │ │ │ ├── morphmenu.cpp │ │ │ ├── morphmenu_p.h │ │ │ ├── newactiondialog.cpp │ │ │ ├── newactiondialog.ui │ │ │ ├── newactiondialog_p.h │ │ │ ├── newformwidget.cpp │ │ │ ├── newformwidget.ui │ │ │ ├── newformwidget_p.h │ │ │ ├── orderdialog.cpp │ │ │ ├── orderdialog.ui │ │ │ ├── orderdialog_p.h │ │ │ ├── plaintexteditor.cpp │ │ │ ├── plaintexteditor_p.h │ │ │ ├── plugindialog.cpp │ │ │ ├── plugindialog.ui │ │ │ ├── plugindialog_p.h │ │ │ ├── pluginmanager.cpp │ │ │ ├── pluginmanager_p.h │ │ │ ├── previewconfigurationwidget.cpp │ │ │ ├── previewconfigurationwidget.ui │ │ │ ├── previewconfigurationwidget_p.h │ │ │ ├── previewmanager.cpp │ │ │ ├── previewmanager_p.h │ │ │ ├── promotionmodel.cpp │ │ │ ├── promotionmodel_p.h │ │ │ ├── promotiontaskmenu.cpp │ │ │ ├── promotiontaskmenu_p.h │ │ │ ├── propertylineedit.cpp │ │ │ ├── propertylineedit_p.h │ │ │ ├── qdesigner_command.cpp │ │ │ ├── qdesigner_command2.cpp │ │ │ ├── qdesigner_command2_p.h │ │ │ ├── qdesigner_command_p.h │ │ │ ├── qdesigner_dnditem.cpp │ │ │ ├── qdesigner_dnditem_p.h │ │ │ ├── qdesigner_dockwidget.cpp │ │ │ ├── qdesigner_dockwidget_p.h │ │ │ ├── qdesigner_formbuilder.cpp │ │ │ ├── qdesigner_formbuilder_p.h │ │ │ ├── qdesigner_formeditorcommand.cpp │ │ │ ├── qdesigner_formeditorcommand_p.h │ │ │ ├── qdesigner_formwindowcommand.cpp │ │ │ ├── qdesigner_formwindowcommand_p.h │ │ │ ├── qdesigner_formwindowmanager.cpp │ │ │ ├── qdesigner_formwindowmanager_p.h │ │ │ ├── qdesigner_integration.cpp │ │ │ ├── qdesigner_integration_p.h │ │ │ ├── qdesigner_introspection.cpp │ │ │ ├── qdesigner_introspection_p.h │ │ │ ├── qdesigner_membersheet.cpp │ │ │ ├── qdesigner_membersheet_p.h │ │ │ ├── qdesigner_menu.cpp │ │ │ ├── qdesigner_menu_p.h │ │ │ ├── qdesigner_menubar.cpp │ │ │ ├── qdesigner_menubar_p.h │ │ │ ├── qdesigner_objectinspector.cpp │ │ │ ├── qdesigner_objectinspector_p.h │ │ │ ├── qdesigner_promotion.cpp │ │ │ ├── qdesigner_promotion_p.h │ │ │ ├── qdesigner_promotiondialog.cpp │ │ │ ├── qdesigner_promotiondialog_p.h │ │ │ ├── qdesigner_propertycommand.cpp │ │ │ ├── qdesigner_propertycommand_p.h │ │ │ ├── qdesigner_propertyeditor.cpp │ │ │ ├── qdesigner_propertyeditor_p.h │ │ │ ├── qdesigner_propertysheet.cpp │ │ │ ├── qdesigner_propertysheet_p.h │ │ │ ├── qdesigner_qsettings.cpp │ │ │ ├── qdesigner_qsettings_p.h │ │ │ ├── qdesigner_stackedbox.cpp │ │ │ ├── qdesigner_stackedbox_p.h │ │ │ ├── qdesigner_tabwidget.cpp │ │ │ ├── qdesigner_tabwidget_p.h │ │ │ ├── qdesigner_taskmenu.cpp │ │ │ ├── qdesigner_taskmenu_p.h │ │ │ ├── qdesigner_toolbar.cpp │ │ │ ├── qdesigner_toolbar_p.h │ │ │ ├── qdesigner_toolbox.cpp │ │ │ ├── qdesigner_toolbox_p.h │ │ │ ├── qdesigner_utils.cpp │ │ │ ├── qdesigner_utils_p.h │ │ │ ├── qdesigner_widget.cpp │ │ │ ├── qdesigner_widget_p.h │ │ │ ├── qdesigner_widgetbox.cpp │ │ │ ├── qdesigner_widgetbox_p.h │ │ │ ├── qdesigner_widgetitem.cpp │ │ │ ├── qdesigner_widgetitem_p.h │ │ │ ├── qlayout_widget.cpp │ │ │ ├── qlayout_widget_p.h │ │ │ ├── qscripthighlighter.cpp │ │ │ ├── qscripthighlighter_p.h │ │ │ ├── qsimpleresource.cpp │ │ │ ├── qsimpleresource_p.h │ │ │ ├── qtresourceeditordialog.cpp │ │ │ ├── qtresourceeditordialog.ui │ │ │ ├── qtresourceeditordialog_p.h │ │ │ ├── qtresourcemodel.cpp │ │ │ ├── qtresourcemodel_p.h │ │ │ ├── qtresourceview.cpp │ │ │ ├── qtresourceview_p.h │ │ │ ├── richtexteditor.cpp │ │ │ ├── richtexteditor_p.h │ │ │ ├── scriptcommand.cpp │ │ │ ├── scriptcommand_p.h │ │ │ ├── scriptdialog.cpp │ │ │ ├── scriptdialog_p.h │ │ │ ├── scripterrordialog.cpp │ │ │ ├── scripterrordialog_p.h │ │ │ ├── selectsignaldialog.ui │ │ │ ├── shared.pri │ │ │ ├── shared.qrc │ │ │ ├── shared_enums_p.h │ │ │ ├── shared_global_p.h │ │ │ ├── shared_settings.cpp │ │ │ ├── shared_settings_p.h │ │ │ ├── sheet_delegate.cpp │ │ │ ├── sheet_delegate_p.h │ │ │ ├── signalslotdialog.cpp │ │ │ ├── signalslotdialog.ui │ │ │ ├── signalslotdialog_p.h │ │ │ ├── spacer_widget.cpp │ │ │ ├── spacer_widget_p.h │ │ │ ├── stylesheeteditor.cpp │ │ │ ├── stylesheeteditor_p.h │ │ │ ├── templates │ │ │ │ └── forms │ │ │ │ │ ├── 240x320 │ │ │ │ │ ├── Dialog_with_Buttons_Bottom.ui │ │ │ │ │ └── Dialog_with_Buttons_Right.ui │ │ │ │ │ ├── 320x240 │ │ │ │ │ ├── Dialog_with_Buttons_Bottom.ui │ │ │ │ │ └── Dialog_with_Buttons_Right.ui │ │ │ │ │ ├── 480x640 │ │ │ │ │ ├── Dialog_with_Buttons_Bottom.ui │ │ │ │ │ └── Dialog_with_Buttons_Right.ui │ │ │ │ │ ├── 640x480 │ │ │ │ │ ├── Dialog_with_Buttons_Bottom.ui │ │ │ │ │ └── Dialog_with_Buttons_Right.ui │ │ │ │ │ ├── Dialog_with_Buttons_Bottom.ui │ │ │ │ │ ├── Dialog_with_Buttons_Right.ui │ │ │ │ │ ├── Dialog_without_Buttons.ui │ │ │ │ │ ├── Main_Window.ui │ │ │ │ │ └── Widget.ui │ │ │ ├── textpropertyeditor.cpp │ │ │ ├── textpropertyeditor_p.h │ │ │ ├── widgetdatabase.cpp │ │ │ ├── widgetdatabase_p.h │ │ │ ├── widgetfactory.cpp │ │ │ ├── widgetfactory_p.h │ │ │ ├── zoomwidget.cpp │ │ │ └── zoomwidget_p.h │ │ └── uilib │ │ │ ├── abstractformbuilder.cpp │ │ │ ├── abstractformbuilder.h │ │ │ ├── container.h │ │ │ ├── container.qdoc │ │ │ ├── customwidget.h │ │ │ ├── customwidget.qdoc │ │ │ ├── formbuilder.cpp │ │ │ ├── formbuilder.h │ │ │ ├── formbuilderextra.cpp │ │ │ ├── formbuilderextra_p.h │ │ │ ├── formscriptrunner.cpp │ │ │ ├── formscriptrunner_p.h │ │ │ ├── properties.cpp │ │ │ ├── properties_p.h │ │ │ ├── qdesignerexportwidget.h │ │ │ ├── resourcebuilder.cpp │ │ │ ├── resourcebuilder_p.h │ │ │ ├── textbuilder.cpp │ │ │ ├── textbuilder_p.h │ │ │ ├── ui4.cpp │ │ │ ├── ui4_p.h │ │ │ ├── uilib.pri │ │ │ ├── uilib_global.h │ │ │ └── widgets.table │ ├── main.cpp │ ├── main.ico │ ├── main.rc │ ├── qdesigner │ │ ├── designer_enums.h │ │ ├── qdesigner.cpp │ │ ├── qdesigner.h │ │ ├── qdesigner.pri │ │ ├── qdesigner_actions.cpp │ │ ├── qdesigner_actions.h │ │ ├── qdesigner_appearanceoptions.cpp │ │ ├── qdesigner_appearanceoptions.h │ │ ├── qdesigner_appearanceoptions.ui │ │ ├── qdesigner_formwindow.cpp │ │ ├── qdesigner_formwindow.h │ │ ├── qdesigner_pch.h │ │ ├── qdesigner_server.cpp │ │ ├── qdesigner_server.h │ │ ├── qdesigner_settings.cpp │ │ ├── qdesigner_settings.h │ │ ├── qdesigner_toolwindow.cpp │ │ ├── qdesigner_toolwindow.h │ │ ├── qdesigner_workbench.cpp │ │ └── qdesigner_workbench.h │ └── readme.md ├── hotkey │ ├── frmhotkey.cpp │ ├── frmhotkey.h │ ├── frmhotkey.ui │ ├── hotkey.pro │ └── main.cpp ├── miniblink │ ├── file │ │ ├── demo.html │ │ ├── echarts.min.js │ │ └── gauge.html │ ├── main.cpp │ ├── miniblink.pro │ ├── miniblink │ │ ├── miniblink.cpp │ │ ├── miniblink.h │ │ ├── miniblink.pri │ │ └── wke.h │ ├── readme.md │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── qcustomplotdemo │ ├── frmcustom │ │ ├── frmcustom.pri │ │ ├── frmmain.cpp │ │ ├── frmmain.h │ │ ├── frmmain.ui │ │ ├── iconhelper.cpp │ │ └── iconhelper.h │ ├── frmexample │ │ ├── frmadvancedaxes.cpp │ │ ├── frmadvancedaxes.h │ │ ├── frmadvancedaxes.ui │ │ ├── frmbarchart.cpp │ │ ├── frmbarchart.h │ │ ├── frmbarchart.ui │ │ ├── frmcolormap.cpp │ │ ├── frmcolormap.h │ │ ├── frmcolormap.ui │ │ ├── frmdate.cpp │ │ ├── frmdate.h │ │ ├── frmdate.ui │ │ ├── frmexample.pri │ │ ├── frmfinancial.cpp │ │ ├── frmfinancial.h │ │ ├── frmfinancial.ui │ │ ├── frmitem.cpp │ │ ├── frmitem.h │ │ ├── frmitem.ui │ │ ├── frmlinestyle.cpp │ │ ├── frmlinestyle.h │ │ ├── frmlinestyle.ui │ │ ├── frmlogarithmic.cpp │ │ ├── frmlogarithmic.h │ │ ├── frmlogarithmic.ui │ │ ├── frmmultiaxis.cpp │ │ ├── frmmultiaxis.h │ │ ├── frmmultiaxis.ui │ │ ├── frmparametriccurve.cpp │ │ ├── frmparametriccurve.h │ │ ├── frmparametriccurve.ui │ │ ├── frmpolarplot.cpp │ │ ├── frmpolarplot.h │ │ ├── frmpolarplot.ui │ │ ├── frmquadratic.cpp │ │ ├── frmquadratic.h │ │ ├── frmquadratic.ui │ │ ├── frmrealtimedata.cpp │ │ ├── frmrealtimedata.h │ │ ├── frmrealtimedata.ui │ │ ├── frmscatterpixmap.cpp │ │ ├── frmscatterpixmap.h │ │ ├── frmscatterpixmap.ui │ │ ├── frmscatterstyle.cpp │ │ ├── frmscatterstyle.h │ │ ├── frmscatterstyle.ui │ │ ├── frmsimple.cpp │ │ ├── frmsimple.h │ │ ├── frmsimple.ui │ │ ├── frmsimpleitem.cpp │ │ ├── frmsimpleitem.h │ │ ├── frmsimpleitem.ui │ │ ├── frmsincscatter.cpp │ │ ├── frmsincscatter.h │ │ ├── frmsincscatter.ui │ │ ├── frmstatistical.cpp │ │ ├── frmstatistical.h │ │ ├── frmstatistical.ui │ │ ├── frmstyled.cpp │ │ ├── frmstyled.h │ │ ├── frmstyled.ui │ │ ├── frmtexturebrush.cpp │ │ ├── frmtexturebrush.h │ │ └── frmtexturebrush.ui │ ├── frmexample2 │ │ ├── axistag.cpp │ │ ├── axistag.h │ │ ├── frmaxistag.cpp │ │ ├── frmaxistag.h │ │ ├── frmaxistag.ui │ │ ├── frmexample2.pri │ │ ├── frminteraction.cpp │ │ ├── frminteraction.h │ │ ├── frminteraction.ui │ │ ├── frmscrollbar.cpp │ │ ├── frmscrollbar.h │ │ └── frmscrollbar.ui │ ├── main.cpp │ ├── qcustomplotdemo.pro │ ├── qrc │ │ ├── data │ │ │ ├── data0.txt │ │ │ ├── data1.txt │ │ │ └── data2.txt │ │ ├── font.qrc │ │ ├── font │ │ │ ├── DroidSansFallback.ttf │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── iconfont.ttf │ │ │ └── pe-icon-set-weather.ttf │ │ ├── image │ │ │ ├── bg1.jpg │ │ │ ├── bg2.jpg │ │ │ └── data.png │ │ └── main.qrc │ ├── readme.md │ └── snap │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg ├── qwtdemo │ ├── examples │ │ ├── animation │ │ │ ├── animation.pro │ │ │ ├── main.cpp │ │ │ ├── plot.cpp │ │ │ └── plot.h │ │ ├── barchart │ │ │ ├── barchart.cpp │ │ │ ├── barchart.h │ │ │ ├── barchart.pro │ │ │ └── main.cpp │ │ ├── bode │ │ │ ├── bode.pro │ │ │ ├── complexnumber.h │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── pixmaps.h │ │ │ ├── plot.cpp │ │ │ └── plot.h │ │ ├── controls │ │ │ ├── controls.pro │ │ │ ├── dialbox.cpp │ │ │ ├── dialbox.h │ │ │ ├── dialtab.cpp │ │ │ ├── dialtab.h │ │ │ ├── knobbox.cpp │ │ │ ├── knobbox.h │ │ │ ├── knobtab.cpp │ │ │ ├── knobtab.h │ │ │ ├── main.cpp │ │ │ ├── sliderbox.cpp │ │ │ ├── sliderbox.h │ │ │ ├── slidertab.cpp │ │ │ ├── slidertab.h │ │ │ ├── wheelbox.cpp │ │ │ ├── wheelbox.h │ │ │ ├── wheeltab.cpp │ │ │ └── wheeltab.h │ │ ├── cpuplot │ │ │ ├── cpupiemarker.cpp │ │ │ ├── cpupiemarker.h │ │ │ ├── cpuplot.cpp │ │ │ ├── cpuplot.h │ │ │ ├── cpuplot.pro │ │ │ ├── cpustat.cpp │ │ │ └── cpustat.h │ │ ├── curvdemo1 │ │ │ ├── curvdemo1.cpp │ │ │ └── curvdemo1.pro │ │ ├── dials │ │ │ ├── attitude_indicator.cpp │ │ │ ├── attitude_indicator.h │ │ │ ├── cockpit_grid.cpp │ │ │ ├── cockpit_grid.h │ │ │ ├── compass_grid.cpp │ │ │ ├── compass_grid.h │ │ │ ├── dials.cpp │ │ │ ├── dials.pro │ │ │ ├── speedo_meter.cpp │ │ │ └── speedo_meter.h │ │ ├── distrowatch │ │ │ ├── barchart.cpp │ │ │ ├── barchart.h │ │ │ ├── distrowatch.pro │ │ │ └── main.cpp │ │ ├── event_filter │ │ │ ├── README │ │ │ ├── canvaspicker.cpp │ │ │ ├── canvaspicker.h │ │ │ ├── colorbar.cpp │ │ │ ├── colorbar.h │ │ │ ├── event_filter.cpp │ │ │ ├── event_filter.pro │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ ├── scalepicker.cpp │ │ │ └── scalepicker.h │ │ ├── examples.pro │ │ ├── friedberg │ │ │ ├── friedberg.pro │ │ │ ├── friedberg2007.cpp │ │ │ ├── friedberg2007.h │ │ │ ├── main.cpp │ │ │ ├── plot.cpp │ │ │ └── plot.h │ │ ├── itemeditor │ │ │ ├── editor.cpp │ │ │ ├── editor.h │ │ │ ├── itemeditor.pro │ │ │ ├── main.cpp │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ ├── shapefactory.cpp │ │ │ └── shapefactory.h │ │ ├── legends │ │ │ ├── legends.pro │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── panel.cpp │ │ │ ├── panel.h │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ └── settings.h │ │ ├── oscilloscope │ │ │ ├── curvedata.cpp │ │ │ ├── curvedata.h │ │ │ ├── knob.cpp │ │ │ ├── knob.h │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── osci.css │ │ │ ├── oscilloscope.pro │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ ├── samplingthread.cpp │ │ │ ├── samplingthread.h │ │ │ ├── signaldata.cpp │ │ │ ├── signaldata.h │ │ │ ├── wheelbox.cpp │ │ │ └── wheelbox.h │ │ ├── radio │ │ │ ├── ampfrm.cpp │ │ │ ├── ampfrm.h │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── radio.cpp │ │ │ ├── radio.pro │ │ │ ├── tunerfrm.cpp │ │ │ └── tunerfrm.h │ │ ├── rasterview │ │ │ ├── main.cpp │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ └── rasterview.pro │ │ ├── realtime │ │ │ ├── README │ │ │ ├── clear.xpm │ │ │ ├── incrementalplot.cpp │ │ │ ├── incrementalplot.h │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── randomplot.cpp │ │ │ ├── randomplot.h │ │ │ ├── realtime.pro │ │ │ ├── scrollbar.cpp │ │ │ ├── scrollbar.h │ │ │ ├── scrollzoomer.cpp │ │ │ ├── scrollzoomer.h │ │ │ └── start.xpm │ │ ├── refreshtest │ │ │ ├── circularbuffer.cpp │ │ │ ├── circularbuffer.h │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── panel.cpp │ │ │ ├── panel.h │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ ├── refreshtest.pro │ │ │ └── settings.h │ │ ├── scatterplot │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ └── scatterplot.pro │ │ ├── simpleplot │ │ │ ├── simpleplot.cpp │ │ │ └── simpleplot.pro │ │ ├── sinusplot │ │ │ ├── sinusplot.cpp │ │ │ └── sinusplot.pro │ │ ├── spectrogram │ │ │ ├── main.cpp │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ └── spectrogram.pro │ │ ├── stockchart │ │ │ ├── griditem.cpp │ │ │ ├── griditem.h │ │ │ ├── legend.cpp │ │ │ ├── legend.h │ │ │ ├── main.cpp │ │ │ ├── plot.cpp │ │ │ ├── plot.h │ │ │ ├── quotefactory.cpp │ │ │ ├── quotefactory.h │ │ │ └── stockchart.pro │ │ ├── stylesheets │ │ │ ├── blue.css │ │ │ ├── choco.css │ │ │ ├── oily.css │ │ │ └── rosy.css │ │ ├── sysinfo │ │ │ ├── sysinfo.cpp │ │ │ └── sysinfo.pro │ │ └── tvplot │ │ │ ├── main.cpp │ │ │ ├── tvplot.cpp │ │ │ ├── tvplot.h │ │ │ └── tvplot.pro │ ├── frmmain.cpp │ ├── frmmain.h │ ├── frmmain.ui │ ├── main.cpp │ └── qwtdemo.pro ├── shortcut │ ├── frmshortcut.cpp │ ├── frmshortcut.h │ ├── frmshortcut.ui │ ├── main.cpp │ └── shortcut.pro └── third.pro ├── tool ├── 0snap │ ├── base64helper.jpg │ ├── comtool.jpg │ ├── countcode.jpg │ ├── emailtool.jpg │ ├── keydemo.jpg │ ├── keytool.jpg │ ├── livedemo.jpg │ ├── livetool.jpg │ ├── moneytool.jpg │ ├── netserver.jpg │ ├── netserver2.jpg │ ├── nettool.jpg │ └── pngtool.jpg ├── 3rd_qextserialport │ ├── 3rd_qextserialport.pri │ ├── qextserialport.cpp │ ├── qextserialport.h │ ├── qextserialport_global.h │ ├── qextserialport_p.h │ ├── qextserialport_unix.cpp │ └── qextserialport_win.cpp ├── 3rd_smtpclient │ ├── 3rd_smtpclient.pri │ ├── emailaddress.cpp │ ├── emailaddress.h │ ├── mimeattachment.cpp │ ├── mimeattachment.h │ ├── mimecontentformatter.cpp │ ├── mimecontentformatter.h │ ├── mimefile.cpp │ ├── mimefile.h │ ├── mimehtml.cpp │ ├── mimehtml.h │ ├── mimeinlinefile.cpp │ ├── mimeinlinefile.h │ ├── mimemessage.cpp │ ├── mimemessage.h │ ├── mimemultipart.cpp │ ├── mimemultipart.h │ ├── mimepart.cpp │ ├── mimepart.h │ ├── mimetext.cpp │ ├── mimetext.h │ ├── quotedprintable.cpp │ ├── quotedprintable.h │ ├── smtpclient.cpp │ ├── smtpclient.h │ └── smtpmime.h ├── base64helper │ ├── base64helper.cpp │ ├── base64helper.h │ ├── base64helper.pro │ ├── frmbase64helper.cpp │ ├── frmbase64helper.h │ ├── frmbase64helper.ui │ └── main.cpp ├── comtool │ ├── api │ │ ├── api.pri │ │ ├── appconfig.cpp │ │ ├── appconfig.h │ │ ├── appdata.cpp │ │ ├── appdata.h │ │ ├── qthelper.cpp │ │ ├── qthelper.h │ │ ├── qthelperdata.cpp │ │ └── qthelperdata.h │ ├── comtool.pro │ ├── file │ │ ├── device.txt │ │ └── send.txt │ ├── form │ │ ├── form.pri │ │ ├── frmcomtool.cpp │ │ ├── frmcomtool.h │ │ └── frmcomtool.ui │ ├── head.h │ ├── main.cpp │ ├── qrc │ │ ├── main.ico │ │ ├── main.qrc │ │ ├── main.rc │ │ └── qm │ │ │ ├── qt_zh_CN.qm │ │ │ └── widgets.qm │ └── readme.md ├── countcode │ ├── countcode.pro │ ├── frmcountcode.cpp │ ├── frmcountcode.h │ ├── frmcountcode.ui │ └── main.cpp ├── emailtool │ ├── emailtool.pro │ ├── frmemailtool.cpp │ ├── frmemailtool.h │ ├── frmemailtool.ui │ ├── main.cpp │ ├── readme.txt │ ├── sendemailthread.cpp │ └── sendemailthread.h ├── keydemo │ ├── appkey.cpp │ ├── appkey.h │ ├── frmmain.cpp │ ├── frmmain.h │ ├── frmmain.ui │ ├── keydemo.pro │ ├── main.cpp │ └── 商业版本.txt ├── keytool │ ├── frmmain.cpp │ ├── frmmain.h │ ├── frmmain.ui │ ├── keytool.pro │ ├── main.cpp │ └── 商业版本.txt ├── livedemo │ ├── applive.cpp │ ├── applive.h │ ├── frmmain.cpp │ ├── frmmain.h │ ├── frmmain.ui │ ├── livedemo.pro │ └── main.cpp ├── livetool │ ├── app.cpp │ ├── app.h │ ├── frmmain.cpp │ ├── frmmain.h │ ├── frmmain.ui │ ├── livetool.pro │ ├── main.cpp │ ├── main.ico │ ├── main.qrc │ ├── trayicon.cpp │ └── trayicon.h ├── moneytool │ ├── main.cpp │ ├── moneytool.pro │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── netserver │ ├── api │ │ ├── api.pri │ │ ├── appconfig.cpp │ │ ├── appconfig.h │ │ ├── qthelper.cpp │ │ ├── qthelper.h │ │ ├── qthelperdata.cpp │ │ ├── qthelperdata.h │ │ ├── tcpserver1.cpp │ │ ├── tcpserver1.h │ │ ├── tcpserver2.cpp │ │ └── tcpserver2.h │ ├── form │ │ ├── form.pri │ │ ├── frmmain.cpp │ │ ├── frmmain.h │ │ └── frmmain.ui │ ├── head.h │ ├── main.cpp │ ├── netserver.pro │ ├── qrc │ │ ├── main.ico │ │ ├── main.qrc │ │ ├── main.rc │ │ └── qm │ │ │ ├── qt_zh_CN.qm │ │ │ └── widgets.qm │ └── readme.md ├── nettool │ ├── api │ │ ├── api.pri │ │ ├── appconfig.cpp │ │ ├── appconfig.h │ │ ├── appdata.cpp │ │ ├── appdata.h │ │ ├── qthelper.cpp │ │ ├── qthelper.h │ │ ├── qthelperdata.cpp │ │ ├── qthelperdata.h │ │ ├── tcpclient.cpp │ │ ├── tcpclient.h │ │ ├── tcpserver.cpp │ │ ├── tcpserver.h │ │ ├── webclient.cpp │ │ ├── webclient.h │ │ ├── webserver.cpp │ │ └── webserver.h │ ├── file │ │ ├── device.txt │ │ └── send.txt │ ├── form │ │ ├── form.pri │ │ ├── frmmain.cpp │ │ ├── frmmain.h │ │ ├── frmmain.ui │ │ ├── frmtcpclient.cpp │ │ ├── frmtcpclient.h │ │ ├── frmtcpclient.ui │ │ ├── frmtcpserver.cpp │ │ ├── frmtcpserver.h │ │ ├── frmtcpserver.ui │ │ ├── frmudpclient.cpp │ │ ├── frmudpclient.h │ │ ├── frmudpclient.ui │ │ ├── frmudpserver.cpp │ │ ├── frmudpserver.h │ │ ├── frmudpserver.ui │ │ ├── frmwebclient.cpp │ │ ├── frmwebclient.h │ │ ├── frmwebclient.ui │ │ ├── frmwebserver.cpp │ │ ├── frmwebserver.h │ │ └── frmwebserver.ui │ ├── head.h │ ├── main.cpp │ ├── nettool.pro │ ├── qrc │ │ ├── font.qrc │ │ ├── font │ │ │ └── DroidSansFallback.ttf │ │ ├── main.ico │ │ ├── main.qrc │ │ ├── main.rc │ │ └── qm │ │ │ ├── qt_zh_CN.qm │ │ │ └── widgets.qm │ └── readme.md ├── pngtool │ ├── frmpngtool.cpp │ ├── frmpngtool.h │ ├── frmpngtool.ui │ ├── main.cpp │ └── pngtool.pro └── tool.pro ├── ui ├── 0snap │ ├── flatui.jpg │ ├── iconhelper1.jpg │ ├── iconhelper2.jpg │ ├── styledemo.jpg │ ├── uidemo01.jpg │ ├── uidemo08.jpg │ ├── uidemo09.jpg │ └── uidemo10.jpg ├── core_helper │ ├── appdata.cpp │ ├── appdata.h │ ├── appinit.cpp │ ├── appinit.h │ ├── base64helper.cpp │ ├── base64helper.h │ ├── core_helper.pri │ ├── core_util.pri │ ├── customstyle.cpp │ ├── customstyle.h │ ├── delegate.cpp │ ├── delegate.h │ ├── iconhelper.cpp │ ├── iconhelper.h │ ├── qrc │ │ ├── font.qrc │ │ ├── font │ │ │ ├── DroidSansFallback.ttf │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── iconfont.ttf │ │ │ └── pe-icon-set-weather.ttf │ │ ├── image.qrc │ │ ├── image │ │ │ └── bg_novideo.png │ │ ├── qm.qrc │ │ ├── qm │ │ │ ├── qt_zh_CN.qm │ │ │ └── widgets.qm │ │ └── wasm.qrc │ ├── qthelper.cpp │ ├── qthelper.h │ ├── singleton.h │ ├── wasmhelper.cpp │ └── wasmhelper.h ├── core_qss │ ├── qss.qrc │ └── qss │ │ ├── blacksoft.css │ │ └── blacksoft │ │ ├── add_bottom.png │ │ ├── add_left.png │ │ ├── add_right.png │ │ ├── add_top.png │ │ ├── arrow_bottom.png │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── arrow_top.png │ │ ├── branch_close.png │ │ ├── branch_open.png │ │ ├── calendar_nextmonth.png │ │ ├── calendar_prevmonth.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disable.png │ │ ├── checkbox_parcial.png │ │ ├── checkbox_parcial_disable.png │ │ ├── checkbox_unchecked.png │ │ ├── checkbox_unchecked_disable.png │ │ ├── menu_checked.png │ │ ├── radiobutton_checked.png │ │ ├── radiobutton_checked_disable.png │ │ ├── radiobutton_unchecked.png │ │ └── radiobutton_unchecked_disable.png ├── flatui │ ├── flatui.cpp │ ├── flatui.h │ ├── flatui.pro │ ├── frmflatui.cpp │ ├── frmflatui.h │ ├── frmflatui.ui │ └── main.cpp ├── iconhelper │ ├── font │ │ ├── fa-regular-400.ttf │ │ ├── fontawesome-webfont.ttf │ │ ├── iconfont.ttf │ │ └── pe-icon-set-weather.ttf │ ├── frmiconhelper.cpp │ ├── frmiconhelper.h │ ├── frmiconhelper.ui │ ├── iconhelper.cpp │ ├── iconhelper.h │ ├── iconhelper.pro │ ├── main.cpp │ ├── main.qrc │ ├── panelwidget.cpp │ ├── panelwidget.h │ └── 图形字体对照表 │ │ ├── FontAliBaBa.png │ │ ├── FontAwesome.png │ │ └── FontWeather.png ├── styledemo │ ├── frmmain.cpp │ ├── frmmain.h │ ├── frmmain.ui │ ├── head.h │ ├── main.cpp │ ├── qrc │ │ ├── font.qrc │ │ ├── font │ │ │ ├── Font Awesome Cheatsheet.png │ │ │ └── fontawesome-webfont.ttf │ │ ├── image │ │ │ ├── btn_close.png │ │ │ ├── btn_ok.png │ │ │ ├── msg_error.png │ │ │ ├── msg_info.png │ │ │ └── msg_question.png │ │ ├── main.qrc │ │ ├── qm.qrc │ │ ├── qm │ │ │ ├── qt_zh_CN.qm │ │ │ └── widgets.qm │ │ ├── qss.qrc │ │ └── qss │ │ │ ├── blacksoft.css │ │ │ ├── blacksoft │ │ │ ├── add_bottom.png │ │ │ ├── add_left.png │ │ │ ├── add_right.png │ │ │ ├── add_top.png │ │ │ ├── arrow_bottom.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_top.png │ │ │ ├── branch_close.png │ │ │ ├── branch_open.png │ │ │ ├── calendar_nextmonth.png │ │ │ ├── calendar_prevmonth.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disable.png │ │ │ ├── checkbox_parcial.png │ │ │ ├── checkbox_parcial_disable.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disable.png │ │ │ ├── menu_checked.png │ │ │ ├── radiobutton_checked.png │ │ │ ├── radiobutton_checked_disable.png │ │ │ ├── radiobutton_unchecked.png │ │ │ └── radiobutton_unchecked_disable.png │ │ │ ├── flatgray.css │ │ │ ├── flatgray │ │ │ ├── add_bottom.png │ │ │ ├── add_left.png │ │ │ ├── add_right.png │ │ │ ├── add_top.png │ │ │ ├── arrow_bottom.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_top.png │ │ │ ├── branch_close.png │ │ │ ├── branch_open.png │ │ │ ├── calendar_nextmonth.png │ │ │ ├── calendar_prevmonth.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disable.png │ │ │ ├── checkbox_parcial.png │ │ │ ├── checkbox_parcial_disable.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disable.png │ │ │ ├── menu_checked.png │ │ │ ├── radiobutton_checked.png │ │ │ ├── radiobutton_checked_disable.png │ │ │ ├── radiobutton_unchecked.png │ │ │ └── radiobutton_unchecked_disable.png │ │ │ ├── lightblue.css │ │ │ └── lightblue │ │ │ ├── add_bottom.png │ │ │ ├── add_left.png │ │ │ ├── add_right.png │ │ │ ├── add_top.png │ │ │ ├── arrow_bottom.png │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_top.png │ │ │ ├── branch_close.png │ │ │ ├── branch_open.png │ │ │ ├── calendar_nextmonth.png │ │ │ ├── calendar_prevmonth.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disable.png │ │ │ ├── checkbox_parcial.png │ │ │ ├── checkbox_parcial_disable.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disable.png │ │ │ ├── menu_checked.png │ │ │ ├── radiobutton_checked.png │ │ │ ├── radiobutton_checked_disable.png │ │ │ ├── radiobutton_unchecked.png │ │ │ └── radiobutton_unchecked_disable.png │ └── styledemo.pro ├── ui.pro ├── uidemo01 │ ├── form │ │ ├── form.pri │ │ ├── frmmain.cpp │ │ ├── frmmain.h │ │ └── frmmain.ui │ ├── head.h │ ├── main.cpp │ ├── other │ │ ├── image │ │ │ ├── main_about.png │ │ │ ├── main_company.png │ │ │ ├── main_config.png │ │ │ ├── main_data.png │ │ │ ├── main_exit.png │ │ │ ├── main_help.png │ │ │ ├── main_main.png │ │ │ └── main_person.png │ │ └── main.qrc │ ├── snap.png │ └── uidemo01.pro ├── uidemo08 │ ├── form │ │ ├── form.pri │ │ ├── frmmain.cpp │ │ ├── frmmain.h │ │ └── frmmain.ui │ ├── head.h │ ├── main.cpp │ ├── other │ │ ├── image │ │ │ ├── main_about.png │ │ │ ├── main_company.png │ │ │ ├── main_config.png │ │ │ ├── main_data.png │ │ │ ├── main_exit.png │ │ │ ├── main_help.png │ │ │ ├── main_main.png │ │ │ └── main_person.png │ │ └── main.qrc │ └── uidemo08.pro ├── uidemo09 │ ├── form │ │ ├── form.pri │ │ ├── frmmain.cpp │ │ ├── frmmain.h │ │ └── frmmain.ui │ ├── head.h │ ├── main.cpp │ ├── other │ │ ├── image │ │ │ ├── PNG100.png │ │ │ ├── PNG101.png │ │ │ ├── PNG102.png │ │ │ ├── PNG103.png │ │ │ ├── PNG104.png │ │ │ ├── PNG105.png │ │ │ ├── PNG106.png │ │ │ ├── PNG107.png │ │ │ ├── PNG108.png │ │ │ ├── PNG109.png │ │ │ ├── PNG110.png │ │ │ ├── PNG111.png │ │ │ ├── PNG112.png │ │ │ ├── PNG114.png │ │ │ ├── PNG99.png │ │ │ ├── main1.jpg │ │ │ ├── main2.jpg │ │ │ ├── main3.jpg │ │ │ ├── main4.jpg │ │ │ └── main5.jpg │ │ └── main.qrc │ ├── snap.png │ └── uidemo09.pro └── uidemo10 │ ├── form │ ├── form.pri │ ├── frmmain.cpp │ ├── frmmain.h │ └── frmmain.ui │ ├── head.h │ ├── main.cpp │ ├── snap.png │ └── uidemo10.pro ├── video ├── 0snap │ ├── playffmpeg.jpg │ ├── playmdk.jpg │ ├── plaympv.jpg │ ├── playvlc.jpg │ ├── videobox.jpg │ ├── videopanel.jpg │ └── videowindow.jpg ├── playffmpeg │ ├── ffmpeg │ │ ├── ffmpeg.cpp │ │ ├── ffmpeg.h │ │ ├── ffmpeg.pri │ │ ├── ffmpeg3 │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vda.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavdevice │ │ │ │ │ ├── avdevice.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── avfiltergraph.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libpostproc │ │ │ │ │ ├── postprocess.h │ │ │ │ │ └── version.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ └── version.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ ├── libwin32 │ │ │ │ ├── avcodec.lib │ │ │ │ ├── avdevice.lib │ │ │ │ ├── avfilter.lib │ │ │ │ ├── avformat.lib │ │ │ │ ├── avutil.lib │ │ │ │ ├── postproc.lib │ │ │ │ ├── swresample.lib │ │ │ │ └── swscale.lib │ │ │ └── libwin64 │ │ │ │ ├── avcodec.lib │ │ │ │ ├── avdevice.lib │ │ │ │ ├── avfilter.lib │ │ │ │ ├── avformat.lib │ │ │ │ ├── avutil.lib │ │ │ │ ├── postproc.lib │ │ │ │ ├── swresample.lib │ │ │ │ └── swscale.lib │ │ ├── ffmpeg4 │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── ac3_parser.h │ │ │ │ │ ├── adts_parser.h │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavdevice │ │ │ │ │ ├── avdevice.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── encryption_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── tx.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libpostproc │ │ │ │ │ ├── postprocess.h │ │ │ │ │ └── version.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ └── version.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ ├── libwin32 │ │ │ │ ├── avcodec.lib │ │ │ │ ├── avdevice.lib │ │ │ │ ├── avfilter.lib │ │ │ │ ├── avformat.lib │ │ │ │ ├── avutil.lib │ │ │ │ ├── postproc.lib │ │ │ │ ├── swresample.lib │ │ │ │ └── swscale.lib │ │ │ └── libwin64 │ │ │ │ ├── avcodec.lib │ │ │ │ ├── avdevice.lib │ │ │ │ ├── avfilter.lib │ │ │ │ ├── avformat.lib │ │ │ │ ├── avutil.lib │ │ │ │ ├── postproc.lib │ │ │ │ ├── swresample.lib │ │ │ │ └── swscale.lib │ │ └── ffmpeginclude.h │ ├── main.cpp │ ├── playffmpeg.pro │ ├── readme.md │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── playmdk │ ├── main.cpp │ ├── mdk │ │ ├── include │ │ │ ├── MediaInfo.h │ │ │ ├── Player.h │ │ │ ├── RenderAPI.h │ │ │ ├── VideoFrame.h │ │ │ ├── c │ │ │ │ ├── MediaInfo.h │ │ │ │ ├── Player.h │ │ │ │ ├── RenderAPI.h │ │ │ │ ├── VideoFrame.h │ │ │ │ ├── global.h │ │ │ │ └── module.h │ │ │ └── global.h │ │ ├── libwin32 │ │ │ └── mdk.lib │ │ ├── libwin64 │ │ │ └── mdk.lib │ │ ├── mdk.pri │ │ ├── mdkinclude.h │ │ ├── mdkwidget.cpp │ │ └── mdkwidget.h │ ├── playmdk.pro │ ├── readme.md │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── plaympv │ ├── main.cpp │ ├── mpv │ │ ├── mpv.cpp │ │ ├── mpv.h │ │ ├── mpv.pri │ │ ├── mpv1 │ │ │ ├── include │ │ │ │ ├── client.h │ │ │ │ ├── opengl_cb.h │ │ │ │ ├── render.h │ │ │ │ ├── render_gl.h │ │ │ │ └── stream_cb.h │ │ │ ├── libwin32 │ │ │ │ └── libmpv.lib │ │ │ └── libwin64 │ │ │ │ └── libmpv.lib │ │ ├── mpv2 │ │ │ ├── include │ │ │ │ ├── client.h │ │ │ │ ├── render.h │ │ │ │ ├── render_gl.h │ │ │ │ └── stream_cb.h │ │ │ ├── libwin32 │ │ │ │ └── libmpv.lib │ │ │ └── libwin64 │ │ │ │ └── libmpv.lib │ │ ├── mpvinclude.h │ │ └── mpvtool.h │ ├── plaympv.pro │ ├── readme.md │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── playvlc │ ├── main.cpp │ ├── playvlc.pro │ ├── readme.md │ ├── vlc │ │ ├── vlc.cpp │ │ ├── vlc.h │ │ ├── vlc.pri │ │ ├── vlc2 │ │ │ ├── include │ │ │ │ ├── deprecated.h │ │ │ │ ├── libvlc.h │ │ │ │ ├── libvlc_events.h │ │ │ │ ├── libvlc_media.h │ │ │ │ ├── libvlc_media_discoverer.h │ │ │ │ ├── libvlc_media_library.h │ │ │ │ ├── libvlc_media_list.h │ │ │ │ ├── libvlc_media_list_player.h │ │ │ │ ├── libvlc_media_player.h │ │ │ │ ├── libvlc_structures.h │ │ │ │ ├── libvlc_version.h │ │ │ │ ├── libvlc_vlm.h │ │ │ │ └── plugins │ │ │ │ │ ├── vlc_about.h │ │ │ │ │ ├── vlc_access.h │ │ │ │ │ ├── vlc_addons.h │ │ │ │ │ ├── vlc_aout.h │ │ │ │ │ ├── vlc_aout_volume.h │ │ │ │ │ ├── vlc_arrays.h │ │ │ │ │ ├── vlc_atomic.h │ │ │ │ │ ├── vlc_avcodec.h │ │ │ │ │ ├── vlc_bits.h │ │ │ │ │ ├── vlc_block.h │ │ │ │ │ ├── vlc_block_helper.h │ │ │ │ │ ├── vlc_charset.h │ │ │ │ │ ├── vlc_codec.h │ │ │ │ │ ├── vlc_common.h │ │ │ │ │ ├── vlc_config.h │ │ │ │ │ ├── vlc_config_cat.h │ │ │ │ │ ├── vlc_configuration.h │ │ │ │ │ ├── vlc_cpu.h │ │ │ │ │ ├── vlc_demux.h │ │ │ │ │ ├── vlc_dialog.h │ │ │ │ │ ├── vlc_epg.h │ │ │ │ │ ├── vlc_es.h │ │ │ │ │ ├── vlc_es_out.h │ │ │ │ │ ├── vlc_events.h │ │ │ │ │ ├── vlc_filter.h │ │ │ │ │ ├── vlc_fingerprinter.h │ │ │ │ │ ├── vlc_fourcc.h │ │ │ │ │ ├── vlc_fs.h │ │ │ │ │ ├── vlc_gcrypt.h │ │ │ │ │ ├── vlc_http.h │ │ │ │ │ ├── vlc_httpd.h │ │ │ │ │ ├── vlc_image.h │ │ │ │ │ ├── vlc_inhibit.h │ │ │ │ │ ├── vlc_input.h │ │ │ │ │ ├── vlc_input_item.h │ │ │ │ │ ├── vlc_keys.h │ │ │ │ │ ├── vlc_main.h │ │ │ │ │ ├── vlc_md5.h │ │ │ │ │ ├── vlc_media_library.h │ │ │ │ │ ├── vlc_messages.h │ │ │ │ │ ├── vlc_meta.h │ │ │ │ │ ├── vlc_meta_fetcher.h │ │ │ │ │ ├── vlc_mime.h │ │ │ │ │ ├── vlc_modules.h │ │ │ │ │ ├── vlc_mouse.h │ │ │ │ │ ├── vlc_mtime.h │ │ │ │ │ ├── vlc_network.h │ │ │ │ │ ├── vlc_objects.h │ │ │ │ │ ├── vlc_opengl.h │ │ │ │ │ ├── vlc_picture.h │ │ │ │ │ ├── vlc_picture_fifo.h │ │ │ │ │ ├── vlc_picture_pool.h │ │ │ │ │ ├── vlc_playlist.h │ │ │ │ │ ├── vlc_plugin.h │ │ │ │ │ ├── vlc_probe.h │ │ │ │ │ ├── vlc_rand.h │ │ │ │ │ ├── vlc_services_discovery.h │ │ │ │ │ ├── vlc_sout.h │ │ │ │ │ ├── vlc_spu.h │ │ │ │ │ ├── vlc_stream.h │ │ │ │ │ ├── vlc_strings.h │ │ │ │ │ ├── vlc_subpicture.h │ │ │ │ │ ├── vlc_text_style.h │ │ │ │ │ ├── vlc_threads.h │ │ │ │ │ ├── vlc_tls.h │ │ │ │ │ ├── vlc_url.h │ │ │ │ │ ├── vlc_variables.h │ │ │ │ │ ├── vlc_video_splitter.h │ │ │ │ │ ├── vlc_vlm.h │ │ │ │ │ ├── vlc_vout.h │ │ │ │ │ ├── vlc_vout_display.h │ │ │ │ │ ├── vlc_vout_osd.h │ │ │ │ │ ├── vlc_vout_window.h │ │ │ │ │ ├── vlc_xlib.h │ │ │ │ │ └── vlc_xml.h │ │ │ ├── libwin32 │ │ │ │ ├── libvlc.lib │ │ │ │ └── libvlccore.lib │ │ │ └── libwin64 │ │ │ │ ├── libvlc.lib │ │ │ │ └── libvlccore.lib │ │ ├── vlc3 │ │ │ ├── include │ │ │ │ ├── deprecated.h │ │ │ │ ├── libvlc.h │ │ │ │ ├── libvlc_dialog.h │ │ │ │ ├── libvlc_events.h │ │ │ │ ├── libvlc_media.h │ │ │ │ ├── libvlc_media_discoverer.h │ │ │ │ ├── libvlc_media_library.h │ │ │ │ ├── libvlc_media_list.h │ │ │ │ ├── libvlc_media_list_player.h │ │ │ │ ├── libvlc_media_player.h │ │ │ │ ├── libvlc_renderer_discoverer.h │ │ │ │ ├── libvlc_version.h │ │ │ │ ├── libvlc_vlm.h │ │ │ │ └── plugins │ │ │ │ │ ├── vlc_about.h │ │ │ │ │ ├── vlc_access.h │ │ │ │ │ ├── vlc_actions.h │ │ │ │ │ ├── vlc_addons.h │ │ │ │ │ ├── vlc_aout.h │ │ │ │ │ ├── vlc_aout_volume.h │ │ │ │ │ ├── vlc_arrays.h │ │ │ │ │ ├── vlc_atomic.h │ │ │ │ │ ├── vlc_avcodec.h │ │ │ │ │ ├── vlc_bits.h │ │ │ │ │ ├── vlc_block.h │ │ │ │ │ ├── vlc_block_helper.h │ │ │ │ │ ├── vlc_boxes.h │ │ │ │ │ ├── vlc_charset.h │ │ │ │ │ ├── vlc_codec.h │ │ │ │ │ ├── vlc_common.h │ │ │ │ │ ├── vlc_config.h │ │ │ │ │ ├── vlc_config_cat.h │ │ │ │ │ ├── vlc_configuration.h │ │ │ │ │ ├── vlc_cpu.h │ │ │ │ │ ├── vlc_demux.h │ │ │ │ │ ├── vlc_dialog.h │ │ │ │ │ ├── vlc_epg.h │ │ │ │ │ ├── vlc_es.h │ │ │ │ │ ├── vlc_es_out.h │ │ │ │ │ ├── vlc_events.h │ │ │ │ │ ├── vlc_filter.h │ │ │ │ │ ├── vlc_fingerprinter.h │ │ │ │ │ ├── vlc_fourcc.h │ │ │ │ │ ├── vlc_fs.h │ │ │ │ │ ├── vlc_gcrypt.h │ │ │ │ │ ├── vlc_http.h │ │ │ │ │ ├── vlc_httpd.h │ │ │ │ │ ├── vlc_image.h │ │ │ │ │ ├── vlc_inhibit.h │ │ │ │ │ ├── vlc_input.h │ │ │ │ │ ├── vlc_input_item.h │ │ │ │ │ ├── vlc_interface.h │ │ │ │ │ ├── vlc_interrupt.h │ │ │ │ │ ├── vlc_keystore.h │ │ │ │ │ ├── vlc_main.h │ │ │ │ │ ├── vlc_md5.h │ │ │ │ │ ├── vlc_media_library.h │ │ │ │ │ ├── vlc_memstream.h │ │ │ │ │ ├── vlc_messages.h │ │ │ │ │ ├── vlc_meta.h │ │ │ │ │ ├── vlc_meta_fetcher.h │ │ │ │ │ ├── vlc_mime.h │ │ │ │ │ ├── vlc_modules.h │ │ │ │ │ ├── vlc_mouse.h │ │ │ │ │ ├── vlc_mtime.h │ │ │ │ │ ├── vlc_network.h │ │ │ │ │ ├── vlc_objects.h │ │ │ │ │ ├── vlc_opengl.h │ │ │ │ │ ├── vlc_picture.h │ │ │ │ │ ├── vlc_picture_fifo.h │ │ │ │ │ ├── vlc_picture_pool.h │ │ │ │ │ ├── vlc_playlist.h │ │ │ │ │ ├── vlc_plugin.h │ │ │ │ │ ├── vlc_probe.h │ │ │ │ │ ├── vlc_rand.h │ │ │ │ │ ├── vlc_renderer_discovery.h │ │ │ │ │ ├── vlc_services_discovery.h │ │ │ │ │ ├── vlc_sout.h │ │ │ │ │ ├── vlc_spu.h │ │ │ │ │ ├── vlc_stream.h │ │ │ │ │ ├── vlc_stream_extractor.h │ │ │ │ │ ├── vlc_strings.h │ │ │ │ │ ├── vlc_subpicture.h │ │ │ │ │ ├── vlc_text_style.h │ │ │ │ │ ├── vlc_threads.h │ │ │ │ │ ├── vlc_timestamp_helper.h │ │ │ │ │ ├── vlc_tls.h │ │ │ │ │ ├── vlc_url.h │ │ │ │ │ ├── vlc_variables.h │ │ │ │ │ ├── vlc_video_splitter.h │ │ │ │ │ ├── vlc_viewpoint.h │ │ │ │ │ ├── vlc_vlm.h │ │ │ │ │ ├── vlc_vout.h │ │ │ │ │ ├── vlc_vout_display.h │ │ │ │ │ ├── vlc_vout_osd.h │ │ │ │ │ ├── vlc_vout_window.h │ │ │ │ │ ├── vlc_xlib.h │ │ │ │ │ └── vlc_xml.h │ │ │ ├── libwin32 │ │ │ │ ├── libvlc.lib │ │ │ │ └── libvlccore.lib │ │ │ └── libwin64 │ │ │ │ ├── libvlc.lib │ │ │ │ └── libvlccore.lib │ │ └── vlcinclude.h │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── video.pro ├── videobox │ ├── frmvideobox.cpp │ ├── frmvideobox.h │ ├── frmvideobox.ui │ ├── main.cpp │ ├── videobox.cpp │ ├── videobox.h │ └── videobox.pro ├── videopanel │ ├── frmvideopanel.cpp │ ├── frmvideopanel.h │ ├── frmvideopanel.ui │ ├── main.cpp │ ├── videobox.cpp │ ├── videobox.h │ ├── videopanel.cpp │ ├── videopanel.h │ └── videopanel.pro └── videowindow │ ├── font │ └── iconfont.ttf │ ├── frmvideowindow.cpp │ ├── frmvideowindow.h │ ├── frmvideowindow.ui │ ├── main.cpp │ ├── main.qrc │ ├── videowindow.cpp │ ├── videowindow.h │ └── videowindow.pro └── widget ├── 0snap ├── colorwidget.jpg ├── framelesswidget.jpg ├── gifwidget.jpg ├── lunarcalendarwidget.jpg ├── maskwidget.jpg ├── movewidget.jpg └── screenwidget.jpg ├── colorwidget ├── colorwidget.cpp ├── colorwidget.h ├── colorwidget.pro ├── frmcolorwidget.cpp ├── frmcolorwidget.h ├── frmcolorwidget.ui └── main.cpp ├── framelesswidget ├── framelesscore │ ├── framelesscore.pri │ ├── framelessdialog.cpp │ ├── framelessdialog.h │ ├── framelessmainwindow.cpp │ ├── framelessmainwindow.h │ ├── framelesswidget.cpp │ └── framelesswidget.h ├── framelessform │ ├── dialog.cpp │ ├── dialog.h │ ├── dialog.ui │ ├── framelessform.pri │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── framelesswidget.pro ├── framelesswidget2.cpp ├── framelesswidget2.h ├── frmframelesswidget.cpp ├── frmframelesswidget.h ├── frmframelesswidget.ui └── main.cpp ├── gifwidget ├── frmgifwidget.cpp ├── frmgifwidget.h ├── frmgifwidget.ui ├── gif.h ├── gifwidget.cpp ├── gifwidget.h ├── gifwidget.pro ├── image │ ├── gifwidget.ico │ └── gifwidget.png ├── main.cpp └── main.qrc ├── lunarcalendarwidget ├── font │ └── fontawesome-webfont.ttf ├── frmlunarcalendarwidget.cpp ├── frmlunarcalendarwidget.h ├── frmlunarcalendarwidget.ui ├── image │ └── bg_calendar.png ├── lunarcalendarinfo.cpp ├── lunarcalendarinfo.h ├── lunarcalendaritem.cpp ├── lunarcalendaritem.h ├── lunarcalendarwidget.cpp ├── lunarcalendarwidget.h ├── lunarcalendarwidget.pro ├── main.cpp └── main.qrc ├── maskwidget ├── frmmaskwidget.cpp ├── frmmaskwidget.h ├── frmmaskwidget.ui ├── main.cpp ├── maskwidget.cpp ├── maskwidget.h └── maskwidget.pro ├── movewidget ├── frmmovewidget.cpp ├── frmmovewidget.h ├── frmmovewidget.ui ├── main.cpp ├── movewidget.cpp ├── movewidget.h └── movewidget.pro ├── screenwidget ├── frmscreenwidget.cpp ├── frmscreenwidget.h ├── frmscreenwidget.ui ├── main.cpp ├── screenwidget.cpp ├── screenwidget.h └── screenwidget.pro └── widget.pro /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /QWidgetDemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/QWidgetDemo.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/README.md -------------------------------------------------------------------------------- /control/0snap/battery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/battery.jpg -------------------------------------------------------------------------------- /control/0snap/cpumemorylabel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/cpumemorylabel.jpg -------------------------------------------------------------------------------- /control/0snap/devicebutton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/devicebutton.jpg -------------------------------------------------------------------------------- /control/0snap/devicesizetable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/devicesizetable.jpg -------------------------------------------------------------------------------- /control/0snap/imageswitch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/imageswitch.jpg -------------------------------------------------------------------------------- /control/0snap/ipaddress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/ipaddress.jpg -------------------------------------------------------------------------------- /control/0snap/lightbutton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/lightbutton.jpg -------------------------------------------------------------------------------- /control/0snap/navbutton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/navbutton.jpg -------------------------------------------------------------------------------- /control/0snap/savelog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/savelog.jpg -------------------------------------------------------------------------------- /control/0snap/saveruntime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/saveruntime.jpg -------------------------------------------------------------------------------- /control/0snap/smoothcurve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/smoothcurve.jpg -------------------------------------------------------------------------------- /control/0snap/zhtopy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/0snap/zhtopy.jpg -------------------------------------------------------------------------------- /control/battery/battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/battery.cpp -------------------------------------------------------------------------------- /control/battery/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/battery.h -------------------------------------------------------------------------------- /control/battery/battery.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/battery.pro -------------------------------------------------------------------------------- /control/battery/frmbattery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/frmbattery.cpp -------------------------------------------------------------------------------- /control/battery/frmbattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/frmbattery.h -------------------------------------------------------------------------------- /control/battery/frmbattery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/frmbattery.ui -------------------------------------------------------------------------------- /control/battery/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/battery/main.cpp -------------------------------------------------------------------------------- /control/control.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/control.pro -------------------------------------------------------------------------------- /control/cpumemorylabel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/cpumemorylabel/main.cpp -------------------------------------------------------------------------------- /control/devicebutton/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/devicebutton/main.cpp -------------------------------------------------------------------------------- /control/devicebutton/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/devicebutton/main.qrc -------------------------------------------------------------------------------- /control/devicesizetable/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/devicesizetable/main.cpp -------------------------------------------------------------------------------- /control/imageswitch/imageswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/imageswitch/imageswitch.h -------------------------------------------------------------------------------- /control/imageswitch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/imageswitch/main.cpp -------------------------------------------------------------------------------- /control/imageswitch/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/imageswitch/main.qrc -------------------------------------------------------------------------------- /control/ipaddress/frmipaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/ipaddress/frmipaddress.h -------------------------------------------------------------------------------- /control/ipaddress/frmipaddress.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/ipaddress/frmipaddress.ui -------------------------------------------------------------------------------- /control/ipaddress/ipaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/ipaddress/ipaddress.cpp -------------------------------------------------------------------------------- /control/ipaddress/ipaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/ipaddress/ipaddress.h -------------------------------------------------------------------------------- /control/ipaddress/ipaddress.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/ipaddress/ipaddress.pro -------------------------------------------------------------------------------- /control/ipaddress/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/ipaddress/main.cpp -------------------------------------------------------------------------------- /control/lightbutton/lightbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/lightbutton/lightbutton.h -------------------------------------------------------------------------------- /control/lightbutton/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/lightbutton/main.cpp -------------------------------------------------------------------------------- /control/navbutton/frmnavbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/frmnavbutton.h -------------------------------------------------------------------------------- /control/navbutton/frmnavbutton.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/frmnavbutton.ui -------------------------------------------------------------------------------- /control/navbutton/iconhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/iconhelper.cpp -------------------------------------------------------------------------------- /control/navbutton/iconhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/iconhelper.h -------------------------------------------------------------------------------- /control/navbutton/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/main.cpp -------------------------------------------------------------------------------- /control/navbutton/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/main.qrc -------------------------------------------------------------------------------- /control/navbutton/navbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/navbutton.cpp -------------------------------------------------------------------------------- /control/navbutton/navbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/navbutton.h -------------------------------------------------------------------------------- /control/navbutton/navbutton.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/navbutton/navbutton.pro -------------------------------------------------------------------------------- /control/savelog/frmsavelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/frmsavelog.cpp -------------------------------------------------------------------------------- /control/savelog/frmsavelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/frmsavelog.h -------------------------------------------------------------------------------- /control/savelog/frmsavelog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/frmsavelog.ui -------------------------------------------------------------------------------- /control/savelog/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/main.cpp -------------------------------------------------------------------------------- /control/savelog/savelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/savelog.cpp -------------------------------------------------------------------------------- /control/savelog/savelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/savelog.h -------------------------------------------------------------------------------- /control/savelog/savelog.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/savelog/savelog.pro -------------------------------------------------------------------------------- /control/saveruntime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/saveruntime/main.cpp -------------------------------------------------------------------------------- /control/saveruntime/saveruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/saveruntime/saveruntime.h -------------------------------------------------------------------------------- /control/smoothcurve/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/smoothcurve/main.cpp -------------------------------------------------------------------------------- /control/smoothcurve/smoothcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/smoothcurve/smoothcurve.h -------------------------------------------------------------------------------- /control/zhtopy/data/zhtopy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/data/zhtopy.txt -------------------------------------------------------------------------------- /control/zhtopy/frmzhtopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/frmzhtopy.cpp -------------------------------------------------------------------------------- /control/zhtopy/frmzhtopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/frmzhtopy.h -------------------------------------------------------------------------------- /control/zhtopy/frmzhtopy.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/frmzhtopy.ui -------------------------------------------------------------------------------- /control/zhtopy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/main.cpp -------------------------------------------------------------------------------- /control/zhtopy/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/main.qrc -------------------------------------------------------------------------------- /control/zhtopy/zhtopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/zhtopy.cpp -------------------------------------------------------------------------------- /control/zhtopy/zhtopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/zhtopy.h -------------------------------------------------------------------------------- /control/zhtopy/zhtopy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/control/zhtopy/zhtopy.pro -------------------------------------------------------------------------------- /docs/0gitee/bigscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/0gitee/bigscreen/index.html -------------------------------------------------------------------------------- /docs/0gitee/iotsystem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/0gitee/iotsystem/index.html -------------------------------------------------------------------------------- /docs/0github/bigscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/0github/bigscreen/index.html -------------------------------------------------------------------------------- /docs/0github/iotsystem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/0github/iotsystem/index.html -------------------------------------------------------------------------------- /docs/bigscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen.html -------------------------------------------------------------------------------- /docs/bigscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/index.html -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-1-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-1-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-1-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-1-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-2-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-2-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-3-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-1-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-1-3-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-2-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-2-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-2-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-2-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-2-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-2-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-3-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-3-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/1-3-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/1-3-5.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-1-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-1-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-1-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-1-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-1-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-1-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-2-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-2-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-2-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-2-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-2-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-2-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-3-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-3-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-3-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-3-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-3-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-3-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-4-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-4-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-4-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-4-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-4-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-4-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-5-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-5-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-5-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-5-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-5-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-5-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-5-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-6-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-6-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-6-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-6-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-6-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-6-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-6-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-6-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-6-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-7-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-7-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-7-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-7-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-7-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-7-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-7-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-8-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-8-0.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-8-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/2-8-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/2-8-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-5.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-6.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-7.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/4-4-4-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/4-4-4-8.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-5.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-6.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-7.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-1-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-1-8.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-2-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-2-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-2-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-2-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-10-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-10-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-10-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-10-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-10-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-10-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-10-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-10-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-11.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-5.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-6.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-7.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-8.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-3-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-3-9.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-10.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-11.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-12.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-5.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-6.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-7.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-8.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-4-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-4-9.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-6.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-7.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-5-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-5-8.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-1.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-2.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-3.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-4.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-5.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-6.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-7.jpg -------------------------------------------------------------------------------- /docs/bigscreen/snap/5-6-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/bigscreen/snap/5-6-8.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/iotsystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem.html -------------------------------------------------------------------------------- /docs/iotsystem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/index.html -------------------------------------------------------------------------------- /docs/iotsystem/snap/1-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/1-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/1-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/1-1-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/1-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/1-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-1-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-1-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-3-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-3-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-3-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-4-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-5-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-6-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-6-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-6-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-6-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-6-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-6-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-6-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-6-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-6-5.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-6-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-6-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-7-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-7-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-7-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-8-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-8-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-8-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-8-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-8-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/10-9-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/10-9-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-0.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-10.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-5.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-8.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-1-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-1-9.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-2-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-2-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-2-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-2-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-3-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-3-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-3-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-3-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-3-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-4-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-4-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-4-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-4-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-4-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-5-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-5-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-5-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-5-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-5-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-6-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-6-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-6-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/2-6-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/2-6-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-1-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-1-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-1-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-1-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-1-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-1-8-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-1-8-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-1-8-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-3-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-4-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/3-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/3-5-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-0-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-2-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-2-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-3-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-4-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/4-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/4-4-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-1-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-1-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-1-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-2-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-2-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-2-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-2-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-3-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-3-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-3-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/5-3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/5-3-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/6-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/6-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/6-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/6-1-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/6-1-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/6-1-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/6-1-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/6-1-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/6-1-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/6-1-5.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/6-1-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/6-1-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-10.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-11.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-12.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-13.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-14.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-15.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-16.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-17.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-18.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-2.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-3.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-4.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-5.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-6.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-7.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-8.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-0-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-0-9.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-1-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-2-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-3-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-4-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-5-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-6-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-7-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-8-1.jpg -------------------------------------------------------------------------------- /docs/iotsystem/snap/7-9-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/iotsystem/snap/7-9-1.jpg -------------------------------------------------------------------------------- /docs/video_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system.html -------------------------------------------------------------------------------- /docs/video_system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/index.html -------------------------------------------------------------------------------- /docs/video_system/snap/0-7-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/0-7-4.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/1-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/1-1-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/1-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/1-1-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/1-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/1-2-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-0-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-0-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-0-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-1-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-2-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-3-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-4-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-5-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-6-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-7-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-8-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/10-9-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/10-9-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-3.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-4.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-5.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-6.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-7.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-8.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/12-3-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/12-3-9.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-1-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-1-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-2-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-2-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-3-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-3-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-3-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-3-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-3-3.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-3-4.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-4-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-4-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-4-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-4-3.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-4-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-4-4.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-5-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-5-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-5-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-5-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-5-3.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-6-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-6-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-6-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-7-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-7-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-7-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-7-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-7-3.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-7-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-7-4.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/13-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/13-8-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-0-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-1-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-1-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-10-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-10-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-11-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-11-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-12-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-12-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-13-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-13-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-14-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-14-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-15-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-15-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-16-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-16-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-17-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-17-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-18-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-18-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-19-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-19-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-2-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-20-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-20-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-21-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-21-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-22-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-22-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-23-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-23-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-24-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-24-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-25-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-25-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-26-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-26-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-3-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-4-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-5-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-6-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-6-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-7-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-7-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-8-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-8-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/2-9-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/2-9-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/3-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/3-1-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/3-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/3-1-2.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/3-2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/3-2-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/3-3-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/3-3-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/3-4-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/3-4-1.jpg -------------------------------------------------------------------------------- /docs/video_system/snap/3-4-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/docs/video_system/snap/3-4-2.jpg -------------------------------------------------------------------------------- /netfriend/netfriend.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/netfriend/netfriend.pro -------------------------------------------------------------------------------- /other/0snap/bgdemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/bgdemo.jpg -------------------------------------------------------------------------------- /other/0snap/dbpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/dbpage.jpg -------------------------------------------------------------------------------- /other/0snap/drawrect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/drawrect.jpg -------------------------------------------------------------------------------- /other/0snap/echartgauge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/echartgauge.jpg -------------------------------------------------------------------------------- /other/0snap/lineeditnext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/lineeditnext.jpg -------------------------------------------------------------------------------- /other/0snap/mouseline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/mouseline.jpg -------------------------------------------------------------------------------- /other/0snap/multobj2slot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/multobj2slot.jpg -------------------------------------------------------------------------------- /other/0snap/ntpclient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/ntpclient.jpg -------------------------------------------------------------------------------- /other/0snap/trayicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/0snap/trayicon.jpg -------------------------------------------------------------------------------- /other/bgdemo/bgdemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/bgdemo.pro -------------------------------------------------------------------------------- /other/bgdemo/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/image/1.png -------------------------------------------------------------------------------- /other/bgdemo/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/image/2.png -------------------------------------------------------------------------------- /other/bgdemo/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/image/3.png -------------------------------------------------------------------------------- /other/bgdemo/image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/image/4.png -------------------------------------------------------------------------------- /other/bgdemo/image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/image/5.png -------------------------------------------------------------------------------- /other/bgdemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/main.cpp -------------------------------------------------------------------------------- /other/bgdemo/rc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/rc.qrc -------------------------------------------------------------------------------- /other/bgdemo/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/widget.cpp -------------------------------------------------------------------------------- /other/bgdemo/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/widget.h -------------------------------------------------------------------------------- /other/bgdemo/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/bgdemo/widget.ui -------------------------------------------------------------------------------- /other/dbpage/TA.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/TA.db -------------------------------------------------------------------------------- /other/dbpage/dbpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/dbpage.cpp -------------------------------------------------------------------------------- /other/dbpage/dbpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/dbpage.h -------------------------------------------------------------------------------- /other/dbpage/dbpage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/dbpage.pro -------------------------------------------------------------------------------- /other/dbpage/frmdbpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/frmdbpage.cpp -------------------------------------------------------------------------------- /other/dbpage/frmdbpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/frmdbpage.h -------------------------------------------------------------------------------- /other/dbpage/frmdbpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/frmdbpage.ui -------------------------------------------------------------------------------- /other/dbpage/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/head.h -------------------------------------------------------------------------------- /other/dbpage/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/main.cpp -------------------------------------------------------------------------------- /other/dbpage/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/dbpage/readme.txt -------------------------------------------------------------------------------- /other/drawrect/drawrect.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/drawrect/drawrect.pro -------------------------------------------------------------------------------- /other/drawrect/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/drawrect/main.cpp -------------------------------------------------------------------------------- /other/drawrect/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/drawrect/widget.cpp -------------------------------------------------------------------------------- /other/drawrect/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/drawrect/widget.h -------------------------------------------------------------------------------- /other/drawrect/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/drawrect/widget.ui -------------------------------------------------------------------------------- /other/echartgauge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/echartgauge/main.cpp -------------------------------------------------------------------------------- /other/echartgauge/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/echartgauge/readme.txt -------------------------------------------------------------------------------- /other/echartgauge/webcore.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/echartgauge/webcore.pri -------------------------------------------------------------------------------- /other/echartgauge/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/echartgauge/widget.cpp -------------------------------------------------------------------------------- /other/echartgauge/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/echartgauge/widget.h -------------------------------------------------------------------------------- /other/echartgauge/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/echartgauge/widget.ui -------------------------------------------------------------------------------- /other/lineeditnext/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/lineeditnext/main.cpp -------------------------------------------------------------------------------- /other/lineeditnext/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/lineeditnext/widget.cpp -------------------------------------------------------------------------------- /other/lineeditnext/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/lineeditnext/widget.h -------------------------------------------------------------------------------- /other/lineeditnext/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/lineeditnext/widget.ui -------------------------------------------------------------------------------- /other/mouseline/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/mouseline/main.cpp -------------------------------------------------------------------------------- /other/mouseline/mouseline.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/mouseline/mouseline.pro -------------------------------------------------------------------------------- /other/mouseline/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/mouseline/widget.cpp -------------------------------------------------------------------------------- /other/mouseline/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/mouseline/widget.h -------------------------------------------------------------------------------- /other/mouseline/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/mouseline/widget.ui -------------------------------------------------------------------------------- /other/multobj2slot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/multobj2slot/main.cpp -------------------------------------------------------------------------------- /other/multobj2slot/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/multobj2slot/widget.cpp -------------------------------------------------------------------------------- /other/multobj2slot/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/multobj2slot/widget.h -------------------------------------------------------------------------------- /other/multobj2slot/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/multobj2slot/widget.ui -------------------------------------------------------------------------------- /other/ntpclient/frmntpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/ntpclient/frmntpclient.h -------------------------------------------------------------------------------- /other/ntpclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/ntpclient/main.cpp -------------------------------------------------------------------------------- /other/ntpclient/ntpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/ntpclient/ntpclient.cpp -------------------------------------------------------------------------------- /other/ntpclient/ntpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/ntpclient/ntpclient.h -------------------------------------------------------------------------------- /other/ntpclient/ntpclient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/ntpclient/ntpclient.pro -------------------------------------------------------------------------------- /other/other.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/other.pro -------------------------------------------------------------------------------- /other/trayicon/frmtrayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/frmtrayicon.cpp -------------------------------------------------------------------------------- /other/trayicon/frmtrayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/frmtrayicon.h -------------------------------------------------------------------------------- /other/trayicon/frmtrayicon.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/frmtrayicon.ui -------------------------------------------------------------------------------- /other/trayicon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/main.cpp -------------------------------------------------------------------------------- /other/trayicon/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/main.ico -------------------------------------------------------------------------------- /other/trayicon/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/main.qrc -------------------------------------------------------------------------------- /other/trayicon/trayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/trayicon.cpp -------------------------------------------------------------------------------- /other/trayicon/trayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/trayicon.h -------------------------------------------------------------------------------- /other/trayicon/trayicon.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/other/trayicon/trayicon.pro -------------------------------------------------------------------------------- /third/0snap/designer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/0snap/designer.jpg -------------------------------------------------------------------------------- /third/0snap/hotkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/0snap/hotkey.jpg -------------------------------------------------------------------------------- /third/0snap/miniblink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/0snap/miniblink.jpg -------------------------------------------------------------------------------- /third/0snap/qwtdemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/0snap/qwtdemo.jpg -------------------------------------------------------------------------------- /third/0snap/shortcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/0snap/shortcut.jpg -------------------------------------------------------------------------------- /third/3rd_qhotkey/qhotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qhotkey/qhotkey.cpp -------------------------------------------------------------------------------- /third/3rd_qhotkey/qhotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qhotkey/qhotkey.h -------------------------------------------------------------------------------- /third/3rd_qhotkey/qhotkey_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qhotkey/qhotkey_p.h -------------------------------------------------------------------------------- /third/3rd_qwt/3rd_qwt.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/3rd_qwt.pri -------------------------------------------------------------------------------- /third/3rd_qwt/qwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_clipper.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_clipper.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_color_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_color_map.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_compass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_compass.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_compass.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_compat.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_counter.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_counter.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_date.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_date.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_dial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_dial.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_dial.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_global.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_graphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_graphic.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_graphic.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_interval.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_interval.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_knob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_knob.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_knob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_knob.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_legend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_legend.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_legend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_legend.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_magnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_magnifier.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_math.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_math.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_painter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_painter.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_painter.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_panner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_panner.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_panner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_panner.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_picker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_picker.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_picker.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot_curve.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot_dict.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot_grid.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot_item.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_plot_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_plot_xml.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_point_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_point_3d.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_point_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_point_3d.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_point_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_point_data.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_samples.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_scale_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_scale_div.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_scale_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_scale_draw.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_scale_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_scale_map.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_slider.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_slider.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_spline.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_spline.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_symbol.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_symbol.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_text.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_text.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_text_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_text_label.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_thermo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_thermo.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_thermo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_thermo.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_transform.h -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_wheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_wheel.cpp -------------------------------------------------------------------------------- /third/3rd_qwt/qwt_wheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/3rd_qwt/qwt_wheel.h -------------------------------------------------------------------------------- /third/designer/designer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/designer.pro -------------------------------------------------------------------------------- /third/designer/designer.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/designer.qrc -------------------------------------------------------------------------------- /third/designer/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/form/form.pri -------------------------------------------------------------------------------- /third/designer/form/newform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/form/newform.h -------------------------------------------------------------------------------- /third/designer/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/images/back.png -------------------------------------------------------------------------------- /third/designer/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/images/down.png -------------------------------------------------------------------------------- /third/designer/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/images/plus.png -------------------------------------------------------------------------------- /third/designer/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/images/up.png -------------------------------------------------------------------------------- /third/designer/lib/lib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/lib/lib.pro -------------------------------------------------------------------------------- /third/designer/lib/lib_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/lib/lib_pch.h -------------------------------------------------------------------------------- /third/designer/lib/sdk/sdk.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/lib/sdk/sdk.pri -------------------------------------------------------------------------------- /third/designer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/main.cpp -------------------------------------------------------------------------------- /third/designer/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/main.ico -------------------------------------------------------------------------------- /third/designer/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/main.rc -------------------------------------------------------------------------------- /third/designer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/designer/readme.md -------------------------------------------------------------------------------- /third/hotkey/frmhotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/hotkey/frmhotkey.cpp -------------------------------------------------------------------------------- /third/hotkey/frmhotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/hotkey/frmhotkey.h -------------------------------------------------------------------------------- /third/hotkey/frmhotkey.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/hotkey/frmhotkey.ui -------------------------------------------------------------------------------- /third/hotkey/hotkey.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/hotkey/hotkey.pro -------------------------------------------------------------------------------- /third/hotkey/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/hotkey/main.cpp -------------------------------------------------------------------------------- /third/miniblink/file/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/file/demo.html -------------------------------------------------------------------------------- /third/miniblink/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/main.cpp -------------------------------------------------------------------------------- /third/miniblink/miniblink.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/miniblink.pro -------------------------------------------------------------------------------- /third/miniblink/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/readme.md -------------------------------------------------------------------------------- /third/miniblink/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/widget.cpp -------------------------------------------------------------------------------- /third/miniblink/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/widget.h -------------------------------------------------------------------------------- /third/miniblink/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/miniblink/widget.ui -------------------------------------------------------------------------------- /third/qcustomplotdemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/qcustomplotdemo/main.cpp -------------------------------------------------------------------------------- /third/qwtdemo/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/qwtdemo/frmmain.cpp -------------------------------------------------------------------------------- /third/qwtdemo/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/qwtdemo/frmmain.h -------------------------------------------------------------------------------- /third/qwtdemo/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/qwtdemo/frmmain.ui -------------------------------------------------------------------------------- /third/qwtdemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/qwtdemo/main.cpp -------------------------------------------------------------------------------- /third/qwtdemo/qwtdemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/qwtdemo/qwtdemo.pro -------------------------------------------------------------------------------- /third/shortcut/frmshortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/shortcut/frmshortcut.cpp -------------------------------------------------------------------------------- /third/shortcut/frmshortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/shortcut/frmshortcut.h -------------------------------------------------------------------------------- /third/shortcut/frmshortcut.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/shortcut/frmshortcut.ui -------------------------------------------------------------------------------- /third/shortcut/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/shortcut/main.cpp -------------------------------------------------------------------------------- /third/shortcut/shortcut.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/shortcut/shortcut.pro -------------------------------------------------------------------------------- /third/third.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/third/third.pro -------------------------------------------------------------------------------- /tool/0snap/base64helper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/base64helper.jpg -------------------------------------------------------------------------------- /tool/0snap/comtool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/comtool.jpg -------------------------------------------------------------------------------- /tool/0snap/countcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/countcode.jpg -------------------------------------------------------------------------------- /tool/0snap/emailtool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/emailtool.jpg -------------------------------------------------------------------------------- /tool/0snap/keydemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/keydemo.jpg -------------------------------------------------------------------------------- /tool/0snap/keytool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/keytool.jpg -------------------------------------------------------------------------------- /tool/0snap/livedemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/livedemo.jpg -------------------------------------------------------------------------------- /tool/0snap/livetool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/livetool.jpg -------------------------------------------------------------------------------- /tool/0snap/moneytool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/moneytool.jpg -------------------------------------------------------------------------------- /tool/0snap/netserver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/netserver.jpg -------------------------------------------------------------------------------- /tool/0snap/netserver2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/netserver2.jpg -------------------------------------------------------------------------------- /tool/0snap/nettool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/nettool.jpg -------------------------------------------------------------------------------- /tool/0snap/pngtool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/0snap/pngtool.jpg -------------------------------------------------------------------------------- /tool/3rd_smtpclient/mimefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/3rd_smtpclient/mimefile.h -------------------------------------------------------------------------------- /tool/3rd_smtpclient/mimehtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/3rd_smtpclient/mimehtml.h -------------------------------------------------------------------------------- /tool/3rd_smtpclient/mimepart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/3rd_smtpclient/mimepart.h -------------------------------------------------------------------------------- /tool/3rd_smtpclient/mimetext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/3rd_smtpclient/mimetext.h -------------------------------------------------------------------------------- /tool/3rd_smtpclient/smtpmime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/3rd_smtpclient/smtpmime.h -------------------------------------------------------------------------------- /tool/base64helper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/base64helper/main.cpp -------------------------------------------------------------------------------- /tool/comtool/api/api.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/api.pri -------------------------------------------------------------------------------- /tool/comtool/api/appconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/appconfig.cpp -------------------------------------------------------------------------------- /tool/comtool/api/appconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/appconfig.h -------------------------------------------------------------------------------- /tool/comtool/api/appdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/appdata.cpp -------------------------------------------------------------------------------- /tool/comtool/api/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/appdata.h -------------------------------------------------------------------------------- /tool/comtool/api/qthelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/qthelper.cpp -------------------------------------------------------------------------------- /tool/comtool/api/qthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/api/qthelper.h -------------------------------------------------------------------------------- /tool/comtool/comtool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/comtool.pro -------------------------------------------------------------------------------- /tool/comtool/file/device.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/file/device.txt -------------------------------------------------------------------------------- /tool/comtool/file/send.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/file/send.txt -------------------------------------------------------------------------------- /tool/comtool/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/form/form.pri -------------------------------------------------------------------------------- /tool/comtool/form/frmcomtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/form/frmcomtool.h -------------------------------------------------------------------------------- /tool/comtool/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/head.h -------------------------------------------------------------------------------- /tool/comtool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/main.cpp -------------------------------------------------------------------------------- /tool/comtool/qrc/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/qrc/main.ico -------------------------------------------------------------------------------- /tool/comtool/qrc/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/qrc/main.qrc -------------------------------------------------------------------------------- /tool/comtool/qrc/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/qrc/main.rc -------------------------------------------------------------------------------- /tool/comtool/qrc/qm/widgets.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/qrc/qm/widgets.qm -------------------------------------------------------------------------------- /tool/comtool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/comtool/readme.md -------------------------------------------------------------------------------- /tool/countcode/countcode.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/countcode/countcode.pro -------------------------------------------------------------------------------- /tool/countcode/frmcountcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/countcode/frmcountcode.h -------------------------------------------------------------------------------- /tool/countcode/frmcountcode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/countcode/frmcountcode.ui -------------------------------------------------------------------------------- /tool/countcode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/countcode/main.cpp -------------------------------------------------------------------------------- /tool/emailtool/emailtool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/emailtool/emailtool.pro -------------------------------------------------------------------------------- /tool/emailtool/frmemailtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/emailtool/frmemailtool.h -------------------------------------------------------------------------------- /tool/emailtool/frmemailtool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/emailtool/frmemailtool.ui -------------------------------------------------------------------------------- /tool/emailtool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/emailtool/main.cpp -------------------------------------------------------------------------------- /tool/emailtool/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/emailtool/readme.txt -------------------------------------------------------------------------------- /tool/keydemo/appkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/appkey.cpp -------------------------------------------------------------------------------- /tool/keydemo/appkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/appkey.h -------------------------------------------------------------------------------- /tool/keydemo/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/frmmain.cpp -------------------------------------------------------------------------------- /tool/keydemo/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/frmmain.h -------------------------------------------------------------------------------- /tool/keydemo/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/frmmain.ui -------------------------------------------------------------------------------- /tool/keydemo/keydemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/keydemo.pro -------------------------------------------------------------------------------- /tool/keydemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keydemo/main.cpp -------------------------------------------------------------------------------- /tool/keydemo/商业版本.txt: -------------------------------------------------------------------------------- 1 | 23-秘钥生成工具/唯一机器码/运行时间/到期时间/设备数量控制/日期防篡改 https://qtchina.blog.csdn.net/article/details/119724962 -------------------------------------------------------------------------------- /tool/keytool/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keytool/frmmain.cpp -------------------------------------------------------------------------------- /tool/keytool/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keytool/frmmain.h -------------------------------------------------------------------------------- /tool/keytool/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keytool/frmmain.ui -------------------------------------------------------------------------------- /tool/keytool/keytool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keytool/keytool.pro -------------------------------------------------------------------------------- /tool/keytool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/keytool/main.cpp -------------------------------------------------------------------------------- /tool/keytool/商业版本.txt: -------------------------------------------------------------------------------- 1 | 23-秘钥生成工具/唯一机器码/运行时间/到期时间/设备数量控制/日期防篡改 https://qtchina.blog.csdn.net/article/details/119724962 -------------------------------------------------------------------------------- /tool/livedemo/applive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/applive.cpp -------------------------------------------------------------------------------- /tool/livedemo/applive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/applive.h -------------------------------------------------------------------------------- /tool/livedemo/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/frmmain.cpp -------------------------------------------------------------------------------- /tool/livedemo/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/frmmain.h -------------------------------------------------------------------------------- /tool/livedemo/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/frmmain.ui -------------------------------------------------------------------------------- /tool/livedemo/livedemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/livedemo.pro -------------------------------------------------------------------------------- /tool/livedemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livedemo/main.cpp -------------------------------------------------------------------------------- /tool/livetool/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/app.cpp -------------------------------------------------------------------------------- /tool/livetool/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/app.h -------------------------------------------------------------------------------- /tool/livetool/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/frmmain.cpp -------------------------------------------------------------------------------- /tool/livetool/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/frmmain.h -------------------------------------------------------------------------------- /tool/livetool/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/frmmain.ui -------------------------------------------------------------------------------- /tool/livetool/livetool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/livetool.pro -------------------------------------------------------------------------------- /tool/livetool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/main.cpp -------------------------------------------------------------------------------- /tool/livetool/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/main.ico -------------------------------------------------------------------------------- /tool/livetool/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/main.qrc -------------------------------------------------------------------------------- /tool/livetool/trayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/trayicon.cpp -------------------------------------------------------------------------------- /tool/livetool/trayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/livetool/trayicon.h -------------------------------------------------------------------------------- /tool/moneytool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/moneytool/main.cpp -------------------------------------------------------------------------------- /tool/moneytool/moneytool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/moneytool/moneytool.pro -------------------------------------------------------------------------------- /tool/moneytool/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/moneytool/widget.cpp -------------------------------------------------------------------------------- /tool/moneytool/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/moneytool/widget.h -------------------------------------------------------------------------------- /tool/moneytool/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/moneytool/widget.ui -------------------------------------------------------------------------------- /tool/netserver/api/api.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/api/api.pri -------------------------------------------------------------------------------- /tool/netserver/api/appconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/api/appconfig.h -------------------------------------------------------------------------------- /tool/netserver/api/qthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/api/qthelper.h -------------------------------------------------------------------------------- /tool/netserver/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/form/form.pri -------------------------------------------------------------------------------- /tool/netserver/form/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/form/frmmain.h -------------------------------------------------------------------------------- /tool/netserver/form/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/form/frmmain.ui -------------------------------------------------------------------------------- /tool/netserver/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/head.h -------------------------------------------------------------------------------- /tool/netserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/main.cpp -------------------------------------------------------------------------------- /tool/netserver/netserver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/netserver.pro -------------------------------------------------------------------------------- /tool/netserver/qrc/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/qrc/main.ico -------------------------------------------------------------------------------- /tool/netserver/qrc/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/qrc/main.qrc -------------------------------------------------------------------------------- /tool/netserver/qrc/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/qrc/main.rc -------------------------------------------------------------------------------- /tool/netserver/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/netserver/readme.md -------------------------------------------------------------------------------- /tool/nettool/api/api.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/api.pri -------------------------------------------------------------------------------- /tool/nettool/api/appconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/appconfig.cpp -------------------------------------------------------------------------------- /tool/nettool/api/appconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/appconfig.h -------------------------------------------------------------------------------- /tool/nettool/api/appdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/appdata.cpp -------------------------------------------------------------------------------- /tool/nettool/api/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/appdata.h -------------------------------------------------------------------------------- /tool/nettool/api/qthelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/qthelper.cpp -------------------------------------------------------------------------------- /tool/nettool/api/qthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/qthelper.h -------------------------------------------------------------------------------- /tool/nettool/api/tcpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/tcpclient.cpp -------------------------------------------------------------------------------- /tool/nettool/api/tcpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/tcpclient.h -------------------------------------------------------------------------------- /tool/nettool/api/tcpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/tcpserver.cpp -------------------------------------------------------------------------------- /tool/nettool/api/tcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/tcpserver.h -------------------------------------------------------------------------------- /tool/nettool/api/webclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/webclient.cpp -------------------------------------------------------------------------------- /tool/nettool/api/webclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/webclient.h -------------------------------------------------------------------------------- /tool/nettool/api/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/webserver.cpp -------------------------------------------------------------------------------- /tool/nettool/api/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/api/webserver.h -------------------------------------------------------------------------------- /tool/nettool/file/device.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/file/device.txt -------------------------------------------------------------------------------- /tool/nettool/file/send.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/file/send.txt -------------------------------------------------------------------------------- /tool/nettool/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/form/form.pri -------------------------------------------------------------------------------- /tool/nettool/form/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/form/frmmain.cpp -------------------------------------------------------------------------------- /tool/nettool/form/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/form/frmmain.h -------------------------------------------------------------------------------- /tool/nettool/form/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/form/frmmain.ui -------------------------------------------------------------------------------- /tool/nettool/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/head.h -------------------------------------------------------------------------------- /tool/nettool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/main.cpp -------------------------------------------------------------------------------- /tool/nettool/nettool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/nettool.pro -------------------------------------------------------------------------------- /tool/nettool/qrc/font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/qrc/font.qrc -------------------------------------------------------------------------------- /tool/nettool/qrc/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/qrc/main.ico -------------------------------------------------------------------------------- /tool/nettool/qrc/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/qrc/main.qrc -------------------------------------------------------------------------------- /tool/nettool/qrc/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/qrc/main.rc -------------------------------------------------------------------------------- /tool/nettool/qrc/qm/widgets.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/qrc/qm/widgets.qm -------------------------------------------------------------------------------- /tool/nettool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/nettool/readme.md -------------------------------------------------------------------------------- /tool/pngtool/frmpngtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/pngtool/frmpngtool.cpp -------------------------------------------------------------------------------- /tool/pngtool/frmpngtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/pngtool/frmpngtool.h -------------------------------------------------------------------------------- /tool/pngtool/frmpngtool.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/pngtool/frmpngtool.ui -------------------------------------------------------------------------------- /tool/pngtool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/pngtool/main.cpp -------------------------------------------------------------------------------- /tool/pngtool/pngtool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/pngtool/pngtool.pro -------------------------------------------------------------------------------- /tool/tool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/tool/tool.pro -------------------------------------------------------------------------------- /ui/0snap/flatui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/flatui.jpg -------------------------------------------------------------------------------- /ui/0snap/iconhelper1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/iconhelper1.jpg -------------------------------------------------------------------------------- /ui/0snap/iconhelper2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/iconhelper2.jpg -------------------------------------------------------------------------------- /ui/0snap/styledemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/styledemo.jpg -------------------------------------------------------------------------------- /ui/0snap/uidemo01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/uidemo01.jpg -------------------------------------------------------------------------------- /ui/0snap/uidemo08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/uidemo08.jpg -------------------------------------------------------------------------------- /ui/0snap/uidemo09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/uidemo09.jpg -------------------------------------------------------------------------------- /ui/0snap/uidemo10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/0snap/uidemo10.jpg -------------------------------------------------------------------------------- /ui/core_helper/appdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/appdata.cpp -------------------------------------------------------------------------------- /ui/core_helper/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/appdata.h -------------------------------------------------------------------------------- /ui/core_helper/appinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/appinit.cpp -------------------------------------------------------------------------------- /ui/core_helper/appinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/appinit.h -------------------------------------------------------------------------------- /ui/core_helper/base64helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/base64helper.h -------------------------------------------------------------------------------- /ui/core_helper/core_helper.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/core_helper.pri -------------------------------------------------------------------------------- /ui/core_helper/core_util.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/core_util.pri -------------------------------------------------------------------------------- /ui/core_helper/customstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/customstyle.cpp -------------------------------------------------------------------------------- /ui/core_helper/customstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/customstyle.h -------------------------------------------------------------------------------- /ui/core_helper/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/delegate.cpp -------------------------------------------------------------------------------- /ui/core_helper/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/delegate.h -------------------------------------------------------------------------------- /ui/core_helper/iconhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/iconhelper.cpp -------------------------------------------------------------------------------- /ui/core_helper/iconhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/iconhelper.h -------------------------------------------------------------------------------- /ui/core_helper/qrc/font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/qrc/font.qrc -------------------------------------------------------------------------------- /ui/core_helper/qrc/image.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/qrc/image.qrc -------------------------------------------------------------------------------- /ui/core_helper/qrc/qm.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/qrc/qm.qrc -------------------------------------------------------------------------------- /ui/core_helper/qrc/wasm.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/qrc/wasm.qrc -------------------------------------------------------------------------------- /ui/core_helper/qthelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/qthelper.cpp -------------------------------------------------------------------------------- /ui/core_helper/qthelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/qthelper.h -------------------------------------------------------------------------------- /ui/core_helper/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/singleton.h -------------------------------------------------------------------------------- /ui/core_helper/wasmhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/wasmhelper.cpp -------------------------------------------------------------------------------- /ui/core_helper/wasmhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_helper/wasmhelper.h -------------------------------------------------------------------------------- /ui/core_qss/qss.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_qss/qss.qrc -------------------------------------------------------------------------------- /ui/core_qss/qss/blacksoft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/core_qss/qss/blacksoft.css -------------------------------------------------------------------------------- /ui/flatui/flatui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/flatui.cpp -------------------------------------------------------------------------------- /ui/flatui/flatui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/flatui.h -------------------------------------------------------------------------------- /ui/flatui/flatui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/flatui.pro -------------------------------------------------------------------------------- /ui/flatui/frmflatui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/frmflatui.cpp -------------------------------------------------------------------------------- /ui/flatui/frmflatui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/frmflatui.h -------------------------------------------------------------------------------- /ui/flatui/frmflatui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/frmflatui.ui -------------------------------------------------------------------------------- /ui/flatui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/flatui/main.cpp -------------------------------------------------------------------------------- /ui/iconhelper/frmiconhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/frmiconhelper.h -------------------------------------------------------------------------------- /ui/iconhelper/frmiconhelper.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/frmiconhelper.ui -------------------------------------------------------------------------------- /ui/iconhelper/iconhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/iconhelper.cpp -------------------------------------------------------------------------------- /ui/iconhelper/iconhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/iconhelper.h -------------------------------------------------------------------------------- /ui/iconhelper/iconhelper.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/iconhelper.pro -------------------------------------------------------------------------------- /ui/iconhelper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/main.cpp -------------------------------------------------------------------------------- /ui/iconhelper/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/main.qrc -------------------------------------------------------------------------------- /ui/iconhelper/panelwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/panelwidget.cpp -------------------------------------------------------------------------------- /ui/iconhelper/panelwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/iconhelper/panelwidget.h -------------------------------------------------------------------------------- /ui/styledemo/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/frmmain.cpp -------------------------------------------------------------------------------- /ui/styledemo/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/frmmain.h -------------------------------------------------------------------------------- /ui/styledemo/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/frmmain.ui -------------------------------------------------------------------------------- /ui/styledemo/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/head.h -------------------------------------------------------------------------------- /ui/styledemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/main.cpp -------------------------------------------------------------------------------- /ui/styledemo/qrc/font.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/qrc/font.qrc -------------------------------------------------------------------------------- /ui/styledemo/qrc/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/qrc/main.qrc -------------------------------------------------------------------------------- /ui/styledemo/qrc/qm.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/qrc/qm.qrc -------------------------------------------------------------------------------- /ui/styledemo/qrc/qm/widgets.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/qrc/qm/widgets.qm -------------------------------------------------------------------------------- /ui/styledemo/qrc/qss.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/qrc/qss.qrc -------------------------------------------------------------------------------- /ui/styledemo/styledemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/styledemo/styledemo.pro -------------------------------------------------------------------------------- /ui/ui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/ui.pro -------------------------------------------------------------------------------- /ui/uidemo01/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/form/form.pri -------------------------------------------------------------------------------- /ui/uidemo01/form/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/form/frmmain.cpp -------------------------------------------------------------------------------- /ui/uidemo01/form/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/form/frmmain.h -------------------------------------------------------------------------------- /ui/uidemo01/form/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/form/frmmain.ui -------------------------------------------------------------------------------- /ui/uidemo01/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/head.h -------------------------------------------------------------------------------- /ui/uidemo01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/main.cpp -------------------------------------------------------------------------------- /ui/uidemo01/other/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/other/main.qrc -------------------------------------------------------------------------------- /ui/uidemo01/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/snap.png -------------------------------------------------------------------------------- /ui/uidemo01/uidemo01.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo01/uidemo01.pro -------------------------------------------------------------------------------- /ui/uidemo08/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/form/form.pri -------------------------------------------------------------------------------- /ui/uidemo08/form/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/form/frmmain.cpp -------------------------------------------------------------------------------- /ui/uidemo08/form/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/form/frmmain.h -------------------------------------------------------------------------------- /ui/uidemo08/form/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/form/frmmain.ui -------------------------------------------------------------------------------- /ui/uidemo08/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/head.h -------------------------------------------------------------------------------- /ui/uidemo08/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/main.cpp -------------------------------------------------------------------------------- /ui/uidemo08/other/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/other/main.qrc -------------------------------------------------------------------------------- /ui/uidemo08/uidemo08.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo08/uidemo08.pro -------------------------------------------------------------------------------- /ui/uidemo09/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/form/form.pri -------------------------------------------------------------------------------- /ui/uidemo09/form/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/form/frmmain.cpp -------------------------------------------------------------------------------- /ui/uidemo09/form/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/form/frmmain.h -------------------------------------------------------------------------------- /ui/uidemo09/form/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/form/frmmain.ui -------------------------------------------------------------------------------- /ui/uidemo09/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/head.h -------------------------------------------------------------------------------- /ui/uidemo09/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/main.cpp -------------------------------------------------------------------------------- /ui/uidemo09/other/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/other/main.qrc -------------------------------------------------------------------------------- /ui/uidemo09/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/snap.png -------------------------------------------------------------------------------- /ui/uidemo09/uidemo09.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo09/uidemo09.pro -------------------------------------------------------------------------------- /ui/uidemo10/form/form.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/form/form.pri -------------------------------------------------------------------------------- /ui/uidemo10/form/frmmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/form/frmmain.cpp -------------------------------------------------------------------------------- /ui/uidemo10/form/frmmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/form/frmmain.h -------------------------------------------------------------------------------- /ui/uidemo10/form/frmmain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/form/frmmain.ui -------------------------------------------------------------------------------- /ui/uidemo10/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/head.h -------------------------------------------------------------------------------- /ui/uidemo10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/main.cpp -------------------------------------------------------------------------------- /ui/uidemo10/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/snap.png -------------------------------------------------------------------------------- /ui/uidemo10/uidemo10.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/ui/uidemo10/uidemo10.pro -------------------------------------------------------------------------------- /video/0snap/playffmpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/playffmpeg.jpg -------------------------------------------------------------------------------- /video/0snap/playmdk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/playmdk.jpg -------------------------------------------------------------------------------- /video/0snap/plaympv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/plaympv.jpg -------------------------------------------------------------------------------- /video/0snap/playvlc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/playvlc.jpg -------------------------------------------------------------------------------- /video/0snap/videobox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/videobox.jpg -------------------------------------------------------------------------------- /video/0snap/videopanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/videopanel.jpg -------------------------------------------------------------------------------- /video/0snap/videowindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/0snap/videowindow.jpg -------------------------------------------------------------------------------- /video/playffmpeg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playffmpeg/main.cpp -------------------------------------------------------------------------------- /video/playffmpeg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playffmpeg/readme.md -------------------------------------------------------------------------------- /video/playffmpeg/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playffmpeg/widget.cpp -------------------------------------------------------------------------------- /video/playffmpeg/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playffmpeg/widget.h -------------------------------------------------------------------------------- /video/playffmpeg/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playffmpeg/widget.ui -------------------------------------------------------------------------------- /video/playmdk/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/main.cpp -------------------------------------------------------------------------------- /video/playmdk/mdk/mdk.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/mdk/mdk.pri -------------------------------------------------------------------------------- /video/playmdk/mdk/mdkinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/mdk/mdkinclude.h -------------------------------------------------------------------------------- /video/playmdk/mdk/mdkwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/mdk/mdkwidget.h -------------------------------------------------------------------------------- /video/playmdk/playmdk.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/playmdk.pro -------------------------------------------------------------------------------- /video/playmdk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/readme.md -------------------------------------------------------------------------------- /video/playmdk/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/widget.cpp -------------------------------------------------------------------------------- /video/playmdk/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/widget.h -------------------------------------------------------------------------------- /video/playmdk/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playmdk/widget.ui -------------------------------------------------------------------------------- /video/plaympv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/main.cpp -------------------------------------------------------------------------------- /video/plaympv/mpv/mpv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/mpv/mpv.cpp -------------------------------------------------------------------------------- /video/plaympv/mpv/mpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/mpv/mpv.h -------------------------------------------------------------------------------- /video/plaympv/mpv/mpv.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/mpv/mpv.pri -------------------------------------------------------------------------------- /video/plaympv/mpv/mpvinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/mpv/mpvinclude.h -------------------------------------------------------------------------------- /video/plaympv/mpv/mpvtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/mpv/mpvtool.h -------------------------------------------------------------------------------- /video/plaympv/plaympv.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/plaympv.pro -------------------------------------------------------------------------------- /video/plaympv/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/readme.md -------------------------------------------------------------------------------- /video/plaympv/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/widget.cpp -------------------------------------------------------------------------------- /video/plaympv/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/widget.h -------------------------------------------------------------------------------- /video/plaympv/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/plaympv/widget.ui -------------------------------------------------------------------------------- /video/playvlc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/main.cpp -------------------------------------------------------------------------------- /video/playvlc/playvlc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/playvlc.pro -------------------------------------------------------------------------------- /video/playvlc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/readme.md -------------------------------------------------------------------------------- /video/playvlc/vlc/vlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/vlc/vlc.cpp -------------------------------------------------------------------------------- /video/playvlc/vlc/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/vlc/vlc.h -------------------------------------------------------------------------------- /video/playvlc/vlc/vlc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/vlc/vlc.pri -------------------------------------------------------------------------------- /video/playvlc/vlc/vlcinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/vlc/vlcinclude.h -------------------------------------------------------------------------------- /video/playvlc/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/widget.cpp -------------------------------------------------------------------------------- /video/playvlc/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/widget.h -------------------------------------------------------------------------------- /video/playvlc/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/playvlc/widget.ui -------------------------------------------------------------------------------- /video/video.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/video.pro -------------------------------------------------------------------------------- /video/videobox/frmvideobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/frmvideobox.cpp -------------------------------------------------------------------------------- /video/videobox/frmvideobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/frmvideobox.h -------------------------------------------------------------------------------- /video/videobox/frmvideobox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/frmvideobox.ui -------------------------------------------------------------------------------- /video/videobox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/main.cpp -------------------------------------------------------------------------------- /video/videobox/videobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/videobox.cpp -------------------------------------------------------------------------------- /video/videobox/videobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/videobox.h -------------------------------------------------------------------------------- /video/videobox/videobox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videobox/videobox.pro -------------------------------------------------------------------------------- /video/videopanel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videopanel/main.cpp -------------------------------------------------------------------------------- /video/videopanel/videobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videopanel/videobox.cpp -------------------------------------------------------------------------------- /video/videopanel/videobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videopanel/videobox.h -------------------------------------------------------------------------------- /video/videopanel/videopanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videopanel/videopanel.h -------------------------------------------------------------------------------- /video/videowindow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videowindow/main.cpp -------------------------------------------------------------------------------- /video/videowindow/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/video/videowindow/main.qrc -------------------------------------------------------------------------------- /widget/0snap/colorwidget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/0snap/colorwidget.jpg -------------------------------------------------------------------------------- /widget/0snap/gifwidget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/0snap/gifwidget.jpg -------------------------------------------------------------------------------- /widget/0snap/maskwidget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/0snap/maskwidget.jpg -------------------------------------------------------------------------------- /widget/0snap/movewidget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/0snap/movewidget.jpg -------------------------------------------------------------------------------- /widget/0snap/screenwidget.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/0snap/screenwidget.jpg -------------------------------------------------------------------------------- /widget/colorwidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/colorwidget/main.cpp -------------------------------------------------------------------------------- /widget/gifwidget/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/gifwidget/gif.h -------------------------------------------------------------------------------- /widget/gifwidget/gifwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/gifwidget/gifwidget.cpp -------------------------------------------------------------------------------- /widget/gifwidget/gifwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/gifwidget/gifwidget.h -------------------------------------------------------------------------------- /widget/gifwidget/gifwidget.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/gifwidget/gifwidget.pro -------------------------------------------------------------------------------- /widget/gifwidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/gifwidget/main.cpp -------------------------------------------------------------------------------- /widget/gifwidget/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/gifwidget/main.qrc -------------------------------------------------------------------------------- /widget/maskwidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/maskwidget/main.cpp -------------------------------------------------------------------------------- /widget/maskwidget/maskwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/maskwidget/maskwidget.h -------------------------------------------------------------------------------- /widget/movewidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/movewidget/main.cpp -------------------------------------------------------------------------------- /widget/movewidget/movewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/movewidget/movewidget.h -------------------------------------------------------------------------------- /widget/screenwidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/screenwidget/main.cpp -------------------------------------------------------------------------------- /widget/widget.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyangqingyun/QWidgetDemo/HEAD/widget/widget.pro --------------------------------------------------------------------------------