实例介绍
qwt的源代码,包括在各平台如何安装,以及十多个例子。
【实例截图】
【核心代码】
qwt.tar
└── qwt
├── admin
│ └── svn2package.sh
├── CHANGES
├── COPYING
├── designer
│ ├── designer.pro
│ ├── pixmaps
│ │ ├── qwtanalogclock.png
│ │ ├── qwtcompass.png
│ │ ├── qwtcounter.png
│ │ ├── qwtdial.png
│ │ ├── qwtknob.png
│ │ ├── qwtplot.png
│ │ ├── qwtscale.png
│ │ ├── qwtslider.png
│ │ ├── qwtthermo.png
│ │ ├── qwtwheel.png
│ │ └── qwtwidget.png
│ ├── qwt_designer_plotdialog.cpp
│ ├── qwt_designer_plotdialog.h
│ ├── qwt_designer_plugin.cpp
│ ├── qwt_designer_plugin.h
│ └── qwt_designer_plugin.qrc
├── doc
│ ├── articles
│ │ └── TODO
│ ├── Doxyfile
│ ├── images
│ │ ├── analogclock.png
│ │ ├── cpuplot.png
│ │ ├── curves.png
│ │ ├── dials1.png
│ │ ├── dials2.png
│ │ ├── graph.png
│ │ ├── histogram.png
│ │ ├── knob.png
│ │ ├── plot.png
│ │ ├── radio.png
│ │ ├── scatterplot.png
│ │ ├── sinus.png
│ │ ├── sliders.png
│ │ ├── spectrogram1.png
│ │ ├── spectrogram2.png
│ │ ├── spectrogram3.png
│ │ └── sysinfo.png
│ ├── qwt.dox
│ └── tex
│ ├── plotlayout.tex
│ └── qwtplot.tex
├── examples
│ ├── 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
│ ├── cpuplot
│ │ ├── cpupiemarker.cpp
│ │ ├── cpupiemarker.h
│ │ ├── cpuplot.cpp
│ │ ├── cpuplot.h
│ │ ├── cpuplot.pro
│ │ ├── cpustat.cpp
│ │ └── cpustat.h
│ ├── curvdemo1
│ │ ├── curvdemo1.cpp
│ │ └── curvdemo1.pro
│ ├── curvdemo2
│ │ ├── curvdemo2.cpp
│ │ ├── curvdemo2.h
│ │ └── curvdemo2.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
│ ├── event_filter
│ │ ├── canvaspicker.cpp
│ │ ├── canvaspicker.h
│ │ ├── colorbar.cpp
│ │ ├── colorbar.h
│ │ ├── event_filter.cpp
│ │ ├── event_filter.pro
│ │ ├── plot.cpp
│ │ ├── plot.h
│ │ ├── README
│ │ ├── scalepicker.cpp
│ │ └── scalepicker.h
│ ├── examples.pri
│ ├── examples.pro
│ ├── friedberg
│ │ ├── friedberg2007.cpp
│ │ ├── friedberg2007.h
│ │ ├── friedberg.pro
│ │ ├── main.cpp
│ │ ├── plot.cpp
│ │ └── plot.h
│ ├── legends
│ │ ├── legends.pro
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── panel.cpp
│ │ ├── panel.h
│ │ ├── plot.cpp
│ │ ├── plot.h
│ │ └── settings.h
│ ├── navigation
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── navigation.pro
│ │ ├── plot.cpp
│ │ └── plot.h
│ ├── oscilloscope
│ │ ├── curvedata.cpp
│ │ ├── curvedata.h
│ │ ├── knob.cpp
│ │ ├── knob.h
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── 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
│ │ ├── clear.xpm
│ │ ├── incrementalplot.cpp
│ │ ├── incrementalplot.h
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── randomplot.cpp
│ │ ├── randomplot.h
│ │ ├── README
│ │ ├── 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
│ ├── simpleplot
│ │ ├── simpleplot.cpp
│ │ └── simpleplot.pro
│ ├── sinusplot
│ │ ├── sinusplot.cpp
│ │ └── sinusplot.pro
│ ├── sliders
│ │ ├── sliders.cpp
│ │ ├── sliders.h
│ │ └── sliders.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
│ │ └── choco.css
│ ├── svgmap
│ │ ├── main.cpp
│ │ ├── plot.cpp
│ │ ├── plot.h
│ │ └── svgmap.pro
│ ├── sysinfo
│ │ ├── sysinfo.cpp
│ │ └── sysinfo.pro
│ └── tvplot
│ ├── main.cpp
│ ├── tvplot.cpp
│ ├── tvplot.h
│ └── tvplot.pro
├── INSTALL
├── qwtbuild.pri
├── qwtconfig.pri
├── qwt.prf
├── qwt.pro
├── README
├── src
│ ├── qwt_abstract_legend.cpp
│ ├── qwt_abstract_legend.h
│ ├── qwt_abstract_scale.cpp
│ ├── qwt_abstract_scale_draw.cpp
│ ├── qwt_abstract_scale_draw.h
│ ├── qwt_abstract_scale.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_dial.cpp
│ ├── qwt_dial.h
│ ├── qwt_dial_needle.cpp
│ ├── qwt_dial_needle.h
│ ├── qwt_double_range.cpp
│ ├── qwt_double_range.h
│ ├── qwt_dyngrid_layout.cpp
│ ├── qwt_dyngrid_layout.h
│ ├── qwt_event_pattern.cpp
│ ├── qwt_event_pattern.h
│ ├── qwt_global.h
│ ├── qwt.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_data.cpp
│ ├── qwt_legend_data.h
│ ├── qwt_legend.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_command.cpp
│ ├── qwt_painter_command.h
│ ├── qwt_painter.cpp
│ ├── qwt_painter.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_axis.cpp
│ ├── qwt_plot_barchart.cpp
│ ├── qwt_plot_barchart.h
│ ├── qwt_plot_baritem.cpp
│ ├── qwt_plot_baritem.h
│ ├── qwt_plot_canvas.cpp
│ ├── qwt_plot_canvas.h
│ ├── qwt_plot.cpp
│ ├── 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.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_spectrocurve.cpp
│ ├── qwt_plot_spectrocurve.h
│ ├── qwt_plot_spectrogram.cpp
│ ├── qwt_plot_spectrogram.h
│ ├── qwt_plot_svgitem.cpp
│ ├── qwt_plot_svgitem.h
│ ├── qwt_plot_tradingcurve.cpp
│ ├── qwt_plot_tradingcurve.h
│ ├── qwt_plot_xml.cpp
│ ├── 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_engine.cpp
│ ├── qwt_text_engine.h
│ ├── qwt_text.h
│ ├── qwt_text_label.cpp
│ ├── qwt_text_label.h
│ ├── qwt_thermo.cpp
│ ├── qwt_thermo.h
│ ├── qwt_vector_graphic.cpp
│ ├── qwt_vector_graphic.h
│ ├── qwt_wheel.cpp
│ ├── qwt_wheel.h
│ └── src.pro
├── tests
│ ├── graphicscale
│ │ ├── canvas.cpp
│ │ ├── canvas.h
│ │ ├── graphicscale.pro
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ └── mainwindow.h
│ ├── plotmatrix
│ │ ├── main.cpp
│ │ ├── plotmatrix.cpp
│ │ ├── plotmatrix.h
│ │ └── plotmatrix.pro
│ ├── scaleengine
│ │ ├── scaleengine.cpp
│ │ └── scaleengine.pro
│ ├── symbols
│ │ ├── symbols.cpp
│ │ └── symbols.pro
│ ├── tests.pri
│ └── tests.pro
├── textengines
│ ├── mathml
│ │ ├── mathml.pro
│ │ ├── qtmmlwidget-license
│ │ ├── qwtmathml.prf
│ │ ├── qwt_mathml_text_engine.cpp
│ │ ├── qwt_mathml_text_engine.h
│ │ ├── qwt_mml_document.cpp
│ │ └── qwt_mml_document.h
│ ├── textengines.pri
│ └── textengines.pro
└── TODO
41 directories, 406 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论