在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Qt 图形界面开发 → QT很多界面控件的源代码

QT很多界面控件的源代码

Qt 图形界面开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:12.04M
  • 下载次数:69
  • 浏览次数:290
  • 发布时间:2022-11-11
  • 实例类别:Qt 图形界面开发
  • 发 布 人:xc11111111
  • 文件格式:.zip
  • 所需积分:5
 相关标签: 界面例子

实例介绍

【实例简介】QT很多界面控件的源代码

【实例截图】

from clipboard


编号 文件夹 描述
1 lightbutton 高亮按钮控件
2 movewidget 通用控件移动类
3 flatui 模仿flatui类
4 countcode 代码统计组件
5 gifwidget 屏幕录制控件
6 comtool 串口调试助手
7 nettool 网络调试助手
8 devicesizetable 硬盘容量控件
9 styledemo 高仿PS黑色 扁平白色 淡蓝色风格主题
10 navbutton 导航按钮控件
11 videopanel 视频监控画面分割demo
12 framelesswidget 通用无边框拖动拉伸类
13 ipaddress IP地址输入控件
14 bgdemo 无边框背景透明窗体
15 dbpage 通用数据库翻页查询
16 pngtool PNG图片警告去除工具
17 savelog 日志重定向输出类
18 saveruntime 运行时间记录类
19 colorwidget 颜色拾取器
20 maskwidget 遮罩层窗体
21 battery 电池电量控件
22 lineeditnext 文本框回车焦点下移
23 zhtopy 汉字转拼音
24 qwtdemo qwt的源码版本,无需插件,直接源码集成到你的项目即可
25 buttondefence 通用按钮地图效果
26 mouseline 鼠标定位十字线
27 emailtool 邮件发送工具
28 ntpclient NTP服务器时间同步
29 lunarcalendarwidget 农历控件


【核心代码】

.
├── QWidgetDemo-master
│   ├── README.md
│   ├── battery
│   │   ├── battery.cpp
│   │   ├── battery.h
│   │   ├── battery.pro
│   │   ├── frmbattery.cpp
│   │   ├── frmbattery.h
│   │   ├── frmbattery.ui
│   │   └── main.cpp
│   ├── bgdemo
│   │   ├── bgdemo.pro
│   │   ├── image
│   │   │   ├── 1.png
│   │   │   ├── 2.png
│   │   │   ├── 3.png
│   │   │   ├── 4.png
│   │   │   └── 5.png
│   │   ├── main.cpp
│   │   ├── rc.qrc
│   │   ├── widget.cpp
│   │   ├── widget.h
│   │   └── widget.ui
│   ├── buttondefence
│   │   ├── buttondefence.cpp
│   │   ├── buttondefence.h
│   │   ├── buttondefence.pro
│   │   ├── frmbuttondefence.cpp
│   │   ├── frmbuttondefence.h
│   │   ├── frmbuttondefence.ui
│   │   ├── image
│   │   │   ├── bg_call.jpg
│   │   │   ├── btn_defence_alarm_bubble.png
│   │   │   ├── btn_defence_alarm_bubble2.png
│   │   │   ├── btn_defence_alarm_circle.png
│   │   │   ├── btn_defence_alarm_msg.png
│   │   │   ├── btn_defence_alarm_msg2.png
│   │   │   ├── btn_defence_alarm_police.png
│   │   │   ├── btn_defence_arming_bubble.png
│   │   │   ├── btn_defence_arming_bubble2.png
│   │   │   ├── btn_defence_arming_circle.png
│   │   │   ├── btn_defence_arming_msg.png
│   │   │   ├── btn_defence_arming_msg2.png
│   │   │   ├── btn_defence_arming_police.png
│   │   │   ├── btn_defence_bypass_bubble.png
│   │   │   ├── btn_defence_bypass_bubble2.png
│   │   │   ├── btn_defence_bypass_circle.png
│   │   │   ├── btn_defence_bypass_msg.png
│   │   │   ├── btn_defence_bypass_msg2.png
│   │   │   ├── btn_defence_bypass_police.png
│   │   │   ├── btn_defence_disarming_bubble.png
│   │   │   ├── btn_defence_disarming_bubble2.png
│   │   │   ├── btn_defence_disarming_circle.png
│   │   │   ├── btn_defence_disarming_msg.png
│   │   │   ├── btn_defence_disarming_msg2.png
│   │   │   ├── btn_defence_disarming_police.png
│   │   │   ├── btn_defence_error_bubble.png
│   │   │   ├── btn_defence_error_bubble2.png
│   │   │   ├── btn_defence_error_circle.png
│   │   │   ├── btn_defence_error_msg.png
│   │   │   ├── btn_defence_error_msg2.png
│   │   │   └── btn_defence_error_police.png
│   │   ├── main.cpp
│   │   └── main.qrc
│   ├── colorwidget
│   │   ├── colorwidget.cpp
│   │   ├── colorwidget.h
│   │   ├── colorwidget.pro
│   │   └── main.cpp
│   ├── comtool
│   │   ├── api
│   │   │   ├── api.pri
│   │   │   ├── app.cpp
│   │   │   ├── app.h
│   │   │   ├── quiwidget.cpp
│   │   │   └── quiwidget.h
│   │   ├── comtool.pro
│   │   ├── file
│   │   │   ├── device.txt
│   │   │   └── send.txt
│   │   ├── form
│   │   │   ├── form.pri
│   │   │   ├── frmcomtool.cpp
│   │   │   ├── frmcomtool.h
│   │   │   └── frmcomtool.ui
│   │   ├── head.h
│   │   ├── main.cpp
│   │   ├── other
│   │   │   ├── main.ico
│   │   │   ├── main.qrc
│   │   │   └── main.rc
│   │   ├── qextserialport
│   │   │   ├── qextserialport.cpp
│   │   │   ├── qextserialport.h
│   │   │   ├── qextserialport.pri
│   │   │   ├── qextserialport_global.h
│   │   │   ├── qextserialport_p.h
│   │   │   ├── qextserialport_unix.cpp
│   │   │   ├── qextserialport_win.cpp
│   │   │   └── readme.txt
│   │   └── readme.txt
│   ├── countcode
│   │   ├── countcode.pro
│   │   ├── frmcountcode.cpp
│   │   ├── frmcountcode.h
│   │   ├── frmcountcode.ui
│   │   └── main.cpp
│   ├── dbpage
│   │   ├── TA.db
│   │   ├── dbpage.cpp
│   │   ├── dbpage.h
│   │   ├── dbpage.pro
│   │   ├── frmdbpage.cpp
│   │   ├── frmdbpage.h
│   │   ├── frmdbpage.ui
│   │   ├── head.h
│   │   ├── main.cpp
│   │   └── readme.txt
│   ├── devicesizetable
│   │   ├── devicesizetable.cpp
│   │   ├── devicesizetable.h
│   │   ├── devicesizetable.pro
│   │   ├── frmdevicesizetable.cpp
│   │   ├── frmdevicesizetable.h
│   │   ├── frmdevicesizetable.ui
│   │   └── main.cpp
│   ├── emailtool
│   │   ├── emailtool.pro
│   │   ├── frmemailtool.cpp
│   │   ├── frmemailtool.h
│   │   ├── frmemailtool.ui
│   │   ├── main.cpp
│   │   └── sendemail
│   │       ├── 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
│   │       ├── sendemail.pri
│   │       ├── sendemailthread.cpp
│   │       ├── sendemailthread.h
│   │       ├── smtpclient.cpp
│   │       ├── smtpclient.h
│   │       └── smtpmime.h
│   ├── flatui
│   │   ├── flatui.cpp
│   │   ├── flatui.h
│   │   ├── flatui.pro
│   │   ├── frmflatui.cpp
│   │   ├── frmflatui.h
│   │   ├── frmflatui.ui
│   │   └── main.cpp
│   ├── framelesswidget
│   │   ├── framelesswidget.cpp
│   │   ├── framelesswidget.h
│   │   ├── framelesswidget.pro
│   │   ├── frmframelesswidget.cpp
│   │   ├── frmframelesswidget.h
│   │   ├── frmframelesswidget.ui
│   │   └── main.cpp
│   ├── gifwidget
│   │   ├── gif.h
│   │   ├── gifwidget.cpp
│   │   ├── gifwidget.h
│   │   ├── gifwidget.pro
│   │   ├── image
│   │   │   ├── gifwidget.ico
│   │   │   └── gifwidget.png
│   │   ├── 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.gif
│   │   ├── lightbutton.h
│   │   ├── lightbutton.pro
│   │   └── main.cpp
│   ├── lineeditnext
│   │   ├── lineeditnext.pro
│   │   ├── main.cpp
│   │   ├── widget.cpp
│   │   ├── widget.h
│   │   └── widget.ui
│   ├── lunarcalendarwidget
│   │   ├── frmlunarcalendarwidget.cpp
│   │   ├── frmlunarcalendarwidget.h
│   │   ├── frmlunarcalendarwidget.ui
│   │   ├── image
│   │   │   ├── bg_calendar.png
│   │   │   └── fontawesome-webfont.ttf
│   │   ├── 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
│   ├── mouseline
│   │   ├── main.cpp
│   │   ├── mouseline.pro
│   │   ├── widget.cpp
│   │   ├── widget.h
│   │   └── widget.ui
│   ├── movewidget
│   │   ├── frmmovewidget.cpp
│   │   ├── frmmovewidget.h
│   │   ├── frmmovewidget.ui
│   │   ├── main.cpp
│   │   ├── movewidget.cpp
│   │   ├── movewidget.h
│   │   └── movewidget.pro
│   ├── navbutton
│   │   ├── frmnavbutton.cpp
│   │   ├── frmnavbutton.h
│   │   ├── frmnavbutton.ui
│   │   ├── iconhelper.cpp
│   │   ├── iconhelper.h
│   │   ├── image
│   │   │   └── fontawesome-webfont.ttf
│   │   ├── main.cpp
│   │   ├── main.qrc
│   │   ├── navbutton.cpp
│   │   ├── navbutton.h
│   │   └── navbutton.pro
│   ├── nettool
│   │   ├── api
│   │   │   ├── api.pri
│   │   │   ├── app.cpp
│   │   │   ├── app.h
│   │   │   ├── quiwidget.cpp
│   │   │   ├── quiwidget.h
│   │   │   ├── tcpserver.cpp
│   │   │   └── tcpserver.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
│   │   ├── head.h
│   │   ├── main.cpp
│   │   ├── nettool.pro
│   │   ├── other
│   │   │   ├── main.ico
│   │   │   ├── main.qrc
│   │   │   ├── main.rc
│   │   │   ├── qt_zh_CN.qm
│   │   │   └── widgets.qm
│   │   ├── readme.txt
│   │   └── snap
│   │       ├── QQ截图20180514145725.jpg
│   │       ├── QQ截图20180514145729.jpg
│   │       ├── QQ截图20180514145732.jpg
│   │       └── QQ截图20180514145909.jpg
│   ├── ntpclient
│   │   ├── frmntpclient.cpp
│   │   ├── frmntpclient.h
│   │   ├── frmntpclient.ui
│   │   ├── main.cpp
│   │   ├── ntpclient.cpp
│   │   ├── ntpclient.h
│   │   └── ntpclient.pro
│   ├── pngtool
│   │   ├── frmpngtool.cpp
│   │   ├── frmpngtool.h
│   │   ├── frmpngtool.ui
│   │   ├── main.cpp
│   │   └── pngtool.pro
│   ├── 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
│   │   ├── qwt
│   │   │   ├── qwt.h
│   │   │   ├── qwt.pri
│   │   │   ├── 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_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_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
│   │   └── qwtdemo.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
│   ├── snap
│   │   ├── battery.gif
│   │   ├── bgdemo.gif
│   │   ├── buttondefence.gif
│   │   ├── colorwidget.gif
│   │   ├── comtool.jpg
│   │   ├── countcode.gif
│   │   ├── dbpage.png
│   │   ├── devicesizetable.gif
│   │   ├── emailtool.jpg
│   │   ├── flatui.gif
│   │   ├── framelesswidget.gif
│   │   ├── gifwidget.gif
│   │   ├── ipaddress.gif
│   │   ├── lightbutton.gif
│   │   ├── lineeditnext.gif
│   │   ├── lunarcalendarwidget.gif
│   │   ├── maskwidget.gif
│   │   ├── mouseline.gif
│   │   ├── movewidget.gif
│   │   ├── navbutton.gif
│   │   ├── nettool.gif
│   │   ├── ntpclient.gif
│   │   ├── pngtool.gif
│   │   ├── qwtdemo.jpg
│   │   ├── styledemo_flatwhite.png
│   │   ├── styledemo_lightblue.png
│   │   ├── styledemo_psblack.png
│   │   ├── videopanel.gif
│   │   └── zhtopy.gif
│   ├── styledemo
│   │   ├── frmmain.cpp
│   │   ├── frmmain.h
│   │   ├── frmmain.ui
│   │   ├── head.h
│   │   ├── main.cpp
│   │   ├── other
│   │   │   ├── image
│   │   │   │   ├── Font Awesome Cheatsheet.png
│   │   │   │   ├── btn_close.png
│   │   │   │   ├── btn_ok.png
│   │   │   │   ├── fontawesome-webfont.ttf
│   │   │   │   ├── msg_error.png
│   │   │   │   ├── msg_info.png
│   │   │   │   ├── msg_question.png
│   │   │   │   ├── qt_zh_CN.qm
│   │   │   │   └── widgets.qm
│   │   │   ├── main.qrc
│   │   │   ├── qss
│   │   │   │   ├── flatwhite
│   │   │   │   │   ├── add_bottom.png
│   │   │   │   │   ├── add_left.png
│   │   │   │   │   ├── add_right.png
│   │   │   │   │   ├── add_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
│   │   │   │   │   ├── radiobutton_checked.png
│   │   │   │   │   ├── radiobutton_checked_disable.png
│   │   │   │   │   ├── radiobutton_unchecked.png
│   │   │   │   │   └── radiobutton_unchecked_disable.png
│   │   │   │   ├── flatwhite.css
│   │   │   │   ├── lightblue
│   │   │   │   │   ├── add_bottom.png
│   │   │   │   │   ├── add_left.png
│   │   │   │   │   ├── add_right.png
│   │   │   │   │   ├── add_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
│   │   │   │   │   ├── radiobutton_checked.png
│   │   │   │   │   ├── radiobutton_checked_disable.png
│   │   │   │   │   ├── radiobutton_unchecked.png
│   │   │   │   │   └── radiobutton_unchecked_disable.png
│   │   │   │   ├── lightblue.css
│   │   │   │   ├── psblack
│   │   │   │   │   ├── add_bottom.png
│   │   │   │   │   ├── add_left.png
│   │   │   │   │   ├── add_right.png
│   │   │   │   │   ├── add_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
│   │   │   │   │   ├── radiobutton_checked.png
│   │   │   │   │   ├── radiobutton_checked_disable.png
│   │   │   │   │   ├── radiobutton_unchecked.png
│   │   │   │   │   └── radiobutton_unchecked_disable.png
│   │   │   │   └── psblack.css
│   │   │   └── qss.qrc
│   │   ├── snap_flatwhite.png
│   │   ├── snap_lightblue.png
│   │   ├── snap_psblack.png
│   │   └── styledemo.pro
│   ├── videopanel
│   │   ├── bg_novideo.png
│   │   ├── frmmain.cpp
│   │   ├── frmmain.h
│   │   ├── frmmain.ui
│   │   ├── main.cpp
│   │   ├── main.qrc
│   │   └── videopanel.pro
│   └── zhtopy
│       ├── frmzhtopy.cpp
│       ├── frmzhtopy.h
│       ├── frmzhtopy.ui
│       ├── image
│       │   └── zhtopy.txt
│       ├── main.cpp
│       ├── main.qrc
│       ├── zhtopy.cpp
│       ├── zhtopy.h
│       └── zhtopy.pro
└── 好例子网_QWidgetDemo-master.zip

81 directories, 792 files




标签: 界面例子

实例下载地址

QT很多界面控件的源代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警