本文主要是介绍QwtPlotItem解读---from Qwt-6.1.1,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
QwtPlotItem解读---from Qwt6.1.1
QwtPlotItem是画布上所有图元的基类,因为QwtPlotItem是一个抽象基类,所以所有的图元实例化时
都必须实现draw()方法。
公有类型:
• enum RttiValues {
Rtti_PlotItem = 0, Rtti_PlotGrid, Rtti_PlotScale, Rtti_PlotLegend,
Rtti_PlotMarker, Rtti_PlotCurve, Rtti_PlotSpectroCurve, Rtti_PlotIntervalCurve,
Rtti_PlotHistogram, Rtti_PlotSpectrogram, Rtti_PlotSVG, Rtti_PlotTradingCurve,
Rtti_PlotBarChart, Rtti_PlotMultiBarChart, Rtti_PlotShape, Rtti_PlotTextLabel,
Rtti_PlotZone, Rtti_PlotUserItem = 1000 };
//运行时类型信息
• enum ItemAttribute { Legend = 0x01, AutoScale = 0x02, Margins = 0x04 };
//基地图元项属性
• enum ItemInterest { ScaleInterest = 0x01, Lege
这篇关于QwtPlotItem解读---from Qwt-6.1.1的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!