From b417d0254a2e852ee47277d7db08d59d866ebb8e Mon Sep 17 00:00:00 2001 From: merdely Date: Fri, 14 Sep 2007 01:19:24 +0000 Subject: [PATCH] The Qwt library contains GUI Components and utility classes which are primarily useful for programs with a technical background. Beside a 2D plot widget it provides scales, sliders, dials, compasses, thermometers, wheels and knobs to control or display values, arrays, or ranges of type double. help and okay steven@ --- x11/qwt/Makefile | 73 ++ x11/qwt/distinfo | 5 + x11/qwt/files/Makefile.examples | 20 + x11/qwt/files/README.OpenBSD | 9 + x11/qwt/patches/patch-designer_designer_pro | 12 + x11/qwt/patches/patch-examples_examples_pri | 20 + x11/qwt/patches/patch-qwtconfig_pri | 21 + x11/qwt/patches/patch-src_src_pro | 12 + x11/qwt/pkg/DESCR | 5 + x11/qwt/pkg/PLIST | 1097 +++++++++++++++++++ 10 files changed, 1274 insertions(+) create mode 100644 x11/qwt/Makefile create mode 100644 x11/qwt/distinfo create mode 100644 x11/qwt/files/Makefile.examples create mode 100644 x11/qwt/files/README.OpenBSD create mode 100644 x11/qwt/patches/patch-designer_designer_pro create mode 100644 x11/qwt/patches/patch-examples_examples_pri create mode 100644 x11/qwt/patches/patch-qwtconfig_pri create mode 100644 x11/qwt/patches/patch-src_src_pro create mode 100644 x11/qwt/pkg/DESCR create mode 100644 x11/qwt/pkg/PLIST diff --git a/x11/qwt/Makefile b/x11/qwt/Makefile new file mode 100644 index 00000000000..c735ab4f5fd --- /dev/null +++ b/x11/qwt/Makefile @@ -0,0 +1,73 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ + +SHARED_ONLY= Yes + +COMMENT= Qt Widgets for Technical Applications +DISTNAME= qwt-5.0.2 +SHARED_LIBS= qwt 5.0 +CATEGORIES= x11 +EXTRACT_SUFX= .tar.bz2 + +HOMEPAGE= http://qwt.sourceforge.net/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qwt/} + +MAINTAINER= Michael Erdely + +# Qwt License, Version 1.0 +# http://qwt.sourceforge.net/qwtlicense.html +PERMIT_PACKAGE_CDROM= Yes +PERMIT_PACKAGE_FTP= Yes +PERMIT_DISTFILES_CDROM= Yes +PERMIT_DISTFILES_FTP= Yes + +MODULES= x11/qt4 +NO_REGRESS= Yes +USE_GMAKE= Yes + +MAKE_FLAGS= LIBqwt_VERSION=${LIBqwt_VERSION} +FAKE_FLAGS= LIBqwt_VERSION=${LIBqwt_VERSION} \ + ${DESTDIRNAME}=${WRKINST} + +WANTLIB+= ICE SM X11 Xcursor Xext Xfixes Xi Xinerama Xrandr +WANTLIB+= Xrender fontconfig freetype glib-2.0 gthread-2.0 iconv +WANTLIB+= intl m png z + +LIB_DEPENDS= QtDesigner.>=7,QtGui.>=8,QtScript,QtXml.>=7::x11/qt4 + +# svgmap example not included to prevent the need of svg dependencies +EXAMPLES= bode realtime_plot cpuplot dials radio event_filter \ + data_plot sliders histogram spectrogram sysinfo \ + curvdemo1 curvdemo2 simple_plot + +pre-configure: + @perl -pi -e 's,!!PREFIX!!,${WRKINST}${PREFIX},' \ + ${WRKSRC}/qwtconfig.pri + @perl -pi -e 's,!!QTDIR!!,${WRKINST}${PREFIX}/lib/qt4,' \ + ${WRKSRC}/designer/designer.pro + @perl -pi -e 's,!!PREFIX!!,${PREFIX},' \ + ${WRKSRC}/examples/examples.pri + +do-configure: + cd ${WRKSRC} && qmake4 + +post-install: + ${INSTALL_MAN} ${WRKSRC}/doc/man/man3/* ${PREFIX}/man/man3/ + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/qwt + @sed -e 's,!!PREFIX!!,${TRUEPREFIX},' ${FILESDIR}/README.OpenBSD > \ + ${WRKBUILD}/README.OpenBSD + ${INSTALL_DATA} ${WRKBUILD}/README.OpenBSD \ + ${PREFIX}/share/examples/qwt/ + @sed -e 's,!!EXAMPLES!!,${EXAMPLES},' ${FILESDIR}/Makefile.examples > \ + ${WRKSRC}/examples/Makefile + ${INSTALL_DATA} ${WRKSRC}/examples/Makefile \ + ${PREFIX}/share/examples/qwt/ + ${INSTALL_DATA} ${WRKSRC}/examples/examples.pri \ + ${PREFIX}/share/examples/qwt/ + +.for i in ${EXAMPLES} + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/qwt/${i} + ${INSTALL_DATA} ${WRKSRC}/examples/${i}/* \ + ${PREFIX}/share/examples/qwt/${i}/ +.endfor + +.include diff --git a/x11/qwt/distinfo b/x11/qwt/distinfo new file mode 100644 index 00000000000..02cf708f32b --- /dev/null +++ b/x11/qwt/distinfo @@ -0,0 +1,5 @@ +MD5 (qwt-5.0.2.tar.bz2) = U627MTxHjdSq5PHIZKIDfg== +RMD160 (qwt-5.0.2.tar.bz2) = GoC7Meqg0UiFlFB6ywIsomjcws4= +SHA1 (qwt-5.0.2.tar.bz2) = 8aQVhHaR4nHp9rOyQ6sufLJwoDQ= +SHA256 (qwt-5.0.2.tar.bz2) = HgmvdIxC9wdxM023utBMPjnPD4D+TamTNFw2ZXWyQI0= +SIZE (qwt-5.0.2.tar.bz2) = 1666468 diff --git a/x11/qwt/files/Makefile.examples b/x11/qwt/files/Makefile.examples new file mode 100644 index 00000000000..93bb27c7493 --- /dev/null +++ b/x11/qwt/files/Makefile.examples @@ -0,0 +1,20 @@ +# $OpenBSD: Makefile.examples,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ + +EXAMPLES= !!EXAMPLES!! + +all: + @for I in ${EXAMPLES}; \ + do (cd $$I; echo "==> Building for $$I"; \ + qmake4 $$I.pro && gmake; \ + echo "";); \ + done + +clean: + @for I in ${EXAMPLES}; \ + do (cd $$I; echo "==> Cleaning for $$I"; \ + gmake distclean; \ + rm -Rf obj; \ + rm -Rf moc; \ + echo "";); \ + done + diff --git a/x11/qwt/files/README.OpenBSD b/x11/qwt/files/README.OpenBSD new file mode 100644 index 00000000000..b38c1c837a4 --- /dev/null +++ b/x11/qwt/files/README.OpenBSD @@ -0,0 +1,9 @@ +Building QWT Examples on OpenBSD + +To build the qwt examples: + cd !!PREFIX!!/share/examples/qwt + make + +A qwt example binary will be built in each subdirectory of +!!PREFIX!!/share/examples/qwt. + diff --git a/x11/qwt/patches/patch-designer_designer_pro b/x11/qwt/patches/patch-designer_designer_pro new file mode 100644 index 00000000000..b681c49f5c8 --- /dev/null +++ b/x11/qwt/patches/patch-designer_designer_pro @@ -0,0 +1,12 @@ +$OpenBSD: patch-designer_designer_pro,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ +--- designer/designer.pro.orig Wed Sep 5 00:44:17 2007 ++++ designer/designer.pro Wed Sep 5 00:44:32 2007 +@@ -92,7 +92,7 @@ contains(CONFIG, QwtDesigner) { + RESOURCES += \ + qwt_designer_plugin.qrc + +- target.path = $$[QT_INSTALL_PLUGINS]/designer ++ target.path = !!QTDIR!!/plugins/designer + INSTALLS += target + } + diff --git a/x11/qwt/patches/patch-examples_examples_pri b/x11/qwt/patches/patch-examples_examples_pri new file mode 100644 index 00000000000..b19e450e477 --- /dev/null +++ b/x11/qwt/patches/patch-examples_examples_pri @@ -0,0 +1,20 @@ +$OpenBSD: patch-examples_examples_pri,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ +--- examples/examples.pri.orig Tue Sep 11 21:11:54 2007 ++++ examples/examples.pri Tue Sep 11 21:13:42 2007 +@@ -7,14 +7,12 @@ + # modify it under the terms of the Qwt License, Version 1.0 + ################################################################### + +-include( ../../qwtconfig.pri ) +- + TEMPLATE = app + + MOC_DIR = moc + OBJECTS_DIR = obj +-INCLUDEPATH += ../../src +-DEPENDPATH += ../../src ++INCLUDEPATH += !!PREFIX!!/include ++DEPENDPATH += !!PREFIX!!/lib + + unix:LIBS += -L../../lib -lqwt + diff --git a/x11/qwt/patches/patch-qwtconfig_pri b/x11/qwt/patches/patch-qwtconfig_pri new file mode 100644 index 00000000000..3957ff883c6 --- /dev/null +++ b/x11/qwt/patches/patch-qwtconfig_pri @@ -0,0 +1,21 @@ +$OpenBSD: patch-qwtconfig_pri,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ +--- qwtconfig.pri.orig Mon Jun 11 01:41:29 2007 ++++ qwtconfig.pri Tue Sep 11 10:59:39 2007 +@@ -3,7 +3,7 @@ + ###################################################################### + + unix { +- INSTALLBASE = /usr/local/qwt-5.0.2 ++ INSTALLBASE = !!PREFIX!! + } + + win32 { +@@ -12,7 +12,7 @@ win32 { + + target.path = $$INSTALLBASE/lib + headers.path = $$INSTALLBASE/include +-doc.path = $$INSTALLBASE/doc ++doc.path = $$INSTALLBASE/share/doc/qwt + + ###################################################################### + # qmake internal options diff --git a/x11/qwt/patches/patch-src_src_pro b/x11/qwt/patches/patch-src_src_pro new file mode 100644 index 00000000000..1191078981d --- /dev/null +++ b/x11/qwt/patches/patch-src_src_pro @@ -0,0 +1,12 @@ +$OpenBSD: patch-src_src_pro,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ +--- src/src.pro.orig Wed Sep 5 02:00:12 2007 ++++ src/src.pro Wed Sep 5 02:00:17 2007 +@@ -190,7 +190,7 @@ contains(CONFIG, QwtWidgets) { + headers.files = $$HEADERS + doc.files = ../doc/html + unix { +- doc.files += ../doc/man ++# doc.files += ../doc/man + } + + INSTALLS = target headers doc diff --git a/x11/qwt/pkg/DESCR b/x11/qwt/pkg/DESCR new file mode 100644 index 00000000000..5c33ec89160 --- /dev/null +++ b/x11/qwt/pkg/DESCR @@ -0,0 +1,5 @@ +The Qwt library contains GUI Components and utility classes which +are primarily useful for programs with a technical background. Beside +a 2D plot widget it provides scales, sliders, dials, compasses, +thermometers, wheels and knobs to control or display values, arrays, +or ranges of type double. diff --git a/x11/qwt/pkg/PLIST b/x11/qwt/pkg/PLIST new file mode 100644 index 00000000000..232d8bf183a --- /dev/null +++ b/x11/qwt/pkg/PLIST @@ -0,0 +1,1097 @@ +@comment $OpenBSD: PLIST,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ +include/qwt.h +include/qwt_abstract_scale.h +include/qwt_abstract_scale_draw.h +include/qwt_abstract_slider.h +include/qwt_analog_clock.h +include/qwt_array.h +include/qwt_arrow_button.h +include/qwt_color_map.h +include/qwt_compass.h +include/qwt_compass_rose.h +include/qwt_counter.h +include/qwt_curve_fitter.h +include/qwt_data.h +include/qwt_dial.h +include/qwt_dial_needle.h +include/qwt_double_interval.h +include/qwt_double_range.h +include/qwt_double_rect.h +include/qwt_dyngrid_layout.h +include/qwt_event_pattern.h +include/qwt_global.h +include/qwt_interval_data.h +include/qwt_knob.h +include/qwt_layout_metrics.h +include/qwt_legend.h +include/qwt_legend_item.h +include/qwt_math.h +include/qwt_paint_buffer.h +include/qwt_painter.h +include/qwt_panner.h +include/qwt_picker.h +include/qwt_picker_machine.h +include/qwt_plot.h +include/qwt_plot_canvas.h +include/qwt_plot_curve.h +include/qwt_plot_dict.h +include/qwt_plot_grid.h +include/qwt_plot_item.h +include/qwt_plot_layout.h +include/qwt_plot_magnifier.h +include/qwt_plot_marker.h +include/qwt_plot_panner.h +include/qwt_plot_picker.h +include/qwt_plot_printfilter.h +include/qwt_plot_rasteritem.h +include/qwt_plot_spectrogram.h +include/qwt_plot_zoomer.h +include/qwt_polygon.h +include/qwt_raster_data.h +include/qwt_rect.h +include/qwt_round_scale_draw.h +include/qwt_scale_div.h +include/qwt_scale_draw.h +include/qwt_scale_engine.h +include/qwt_scale_map.h +include/qwt_scale_widget.h +include/qwt_slider.h +include/qwt_spline.h +include/qwt_symbol.h +include/qwt_text.h +include/qwt_text_engine.h +include/qwt_text_label.h +include/qwt_thermo.h +include/qwt_valuelist.h +include/qwt_wheel.h +@lib lib/libqwt.so.${LIBqwt_VERSION} +lib/qt4/plugins/designer/libqwt_designer_plugin.so +@man man/man3/QwtAbstractScale.3 +@man man/man3/QwtAbstractScaleDraw.3 +@man man/man3/QwtAbstractSlider.3 +@man man/man3/QwtAlphaColorMap.3 +@man man/man3/QwtAnalogClock.3 +@man man/man3/QwtArrayData.3 +@man man/man3/QwtArrowButton.3 +@man man/man3/QwtCPointerData.3 +@man man/man3/QwtColorMap.3 +@man man/man3/QwtCompass.3 +@man man/man3/QwtCompassMagnetNeedle.3 +@man man/man3/QwtCompassRose.3 +@man man/man3/QwtCompassWindArrow.3 +@man man/man3/QwtCounter.3 +@man man/man3/QwtCurveFitter.3 +@man man/man3/QwtData.3 +@man man/man3/QwtDial.3 +@man man/man3/QwtDialNeedle.3 +@man man/man3/QwtDialScaleDraw.3 +@man man/man3/QwtDialSimpleNeedle.3 +@man man/man3/QwtDoubleInterval.3 +@man man/man3/QwtDoubleRange.3 +@man man/man3/QwtDynGridLayout.3 +@man man/man3/QwtEventPattern.3 +@man man/man3/QwtEventPattern_KeyPattern.3 +@man man/man3/QwtEventPattern_MousePattern.3 +@man man/man3/QwtIntervalData.3 +@man man/man3/QwtKnob.3 +@man man/man3/QwtLegend.3 +@man man/man3/QwtLegendItem.3 +@man man/man3/QwtLinearColorMap.3 +@man man/man3/QwtLinearScaleEngine.3 +@man man/man3/QwtLog10ScaleEngine.3 +@man man/man3/QwtMathMLTextEngine.3 +@man man/man3/QwtMetricsMap.3 +@man man/man3/QwtPainter.3 +@man man/man3/QwtPanner.3 +@man man/man3/QwtPicker.3 +@man man/man3/QwtPickerClickPointMachine.3 +@man man/man3/QwtPickerClickRectMachine.3 +@man man/man3/QwtPickerDragPointMachine.3 +@man man/man3/QwtPickerDragRectMachine.3 +@man man/man3/QwtPickerMachine.3 +@man man/man3/QwtPickerPolygonMachine.3 +@man man/man3/QwtPlainTextEngine.3 +@man man/man3/QwtPlot.3 +@man man/man3/QwtPlotCanvas.3 +@man man/man3/QwtPlotCurve.3 +@man man/man3/QwtPlotDict.3 +@man man/man3/QwtPlotGrid.3 +@man man/man3/QwtPlotItem.3 +@man man/man3/QwtPlotLayout.3 +@man man/man3/QwtPlotMagnifier.3 +@man man/man3/QwtPlotMarker.3 +@man man/man3/QwtPlotPanner.3 +@man man/man3/QwtPlotPicker.3 +@man man/man3/QwtPlotPrintFilter.3 +@man man/man3/QwtPlotRasterItem.3 +@man man/man3/QwtPlotSpectrogram.3 +@man man/man3/QwtPlotSvgItem.3 +@man man/man3/QwtPlotZoomer.3 +@man man/man3/QwtPolygonFData.3 +@man man/man3/QwtRasterData.3 +@man man/man3/QwtRect.3 +@man man/man3/QwtRichTextEngine.3 +@man man/man3/QwtRoundScaleDraw.3 +@man man/man3/QwtScaleArithmetic.3 +@man man/man3/QwtScaleDiv.3 +@man man/man3/QwtScaleDraw.3 +@man man/man3/QwtScaleEngine.3 +@man man/man3/QwtScaleMap.3 +@man man/man3/QwtScaleTransformation.3 +@man man/man3/QwtScaleWidget.3 +@man man/man3/QwtSimpleCompassRose.3 +@man man/man3/QwtSlider.3 +@man man/man3/QwtSpline.3 +@man man/man3/QwtSplineCurveFitter.3 +@man man/man3/QwtSymbol.3 +@man man/man3/QwtText.3 +@man man/man3/QwtTextEngine.3 +@man man/man3/QwtTextLabel.3 +@man man/man3/QwtThermo.3 +@man man/man3/QwtWheel.3 +@man man/man3/controlscreenshots.3 +@man man/man3/curvescreenshots.3 +@man man/man3/deprecated.3 +@man man/man3/histogramscreenshots.3 +@man man/man3/qwtinstall.3 +@man man/man3/qwtlicense.3 +@man man/man3/scatterscreenshots.3 +@man man/man3/spectrogramscreenshots.3 +@man man/man3/todo.3 +share/doc/qwt/ +share/doc/qwt/html/ +share/doc/qwt/html/analogclock.png +share/doc/qwt/html/annotated.html +share/doc/qwt/html/class_qwt_abstract_scale-members.html +share/doc/qwt/html/class_qwt_abstract_scale.html +share/doc/qwt/html/class_qwt_abstract_scale__inherit__graph.map +share/doc/qwt/html/class_qwt_abstract_scale__inherit__graph.md5 +share/doc/qwt/html/class_qwt_abstract_scale__inherit__graph.png +share/doc/qwt/html/class_qwt_abstract_scale_draw-members.html +share/doc/qwt/html/class_qwt_abstract_scale_draw.html +share/doc/qwt/html/class_qwt_abstract_scale_draw__inherit__graph.map +share/doc/qwt/html/class_qwt_abstract_scale_draw__inherit__graph.md5 +share/doc/qwt/html/class_qwt_abstract_scale_draw__inherit__graph.png +share/doc/qwt/html/class_qwt_abstract_slider-members.html +share/doc/qwt/html/class_qwt_abstract_slider.html +share/doc/qwt/html/class_qwt_abstract_slider__coll__graph.map +share/doc/qwt/html/class_qwt_abstract_slider__coll__graph.md5 +share/doc/qwt/html/class_qwt_abstract_slider__coll__graph.png +share/doc/qwt/html/class_qwt_abstract_slider__inherit__graph.map +share/doc/qwt/html/class_qwt_abstract_slider__inherit__graph.md5 +share/doc/qwt/html/class_qwt_abstract_slider__inherit__graph.png +share/doc/qwt/html/class_qwt_alpha_color_map-members.html +share/doc/qwt/html/class_qwt_alpha_color_map.html +share/doc/qwt/html/class_qwt_alpha_color_map__coll__graph.map +share/doc/qwt/html/class_qwt_alpha_color_map__coll__graph.md5 +share/doc/qwt/html/class_qwt_alpha_color_map__coll__graph.png +share/doc/qwt/html/class_qwt_alpha_color_map__inherit__graph.map +share/doc/qwt/html/class_qwt_alpha_color_map__inherit__graph.md5 +share/doc/qwt/html/class_qwt_alpha_color_map__inherit__graph.png +share/doc/qwt/html/class_qwt_analog_clock-members.html +share/doc/qwt/html/class_qwt_analog_clock.html +share/doc/qwt/html/class_qwt_analog_clock__coll__graph.map +share/doc/qwt/html/class_qwt_analog_clock__coll__graph.md5 +share/doc/qwt/html/class_qwt_analog_clock__coll__graph.png +share/doc/qwt/html/class_qwt_analog_clock__inherit__graph.map +share/doc/qwt/html/class_qwt_analog_clock__inherit__graph.md5 +share/doc/qwt/html/class_qwt_analog_clock__inherit__graph.png +share/doc/qwt/html/class_qwt_array_data-members.html +share/doc/qwt/html/class_qwt_array_data.html +share/doc/qwt/html/class_qwt_array_data__coll__graph.map +share/doc/qwt/html/class_qwt_array_data__coll__graph.md5 +share/doc/qwt/html/class_qwt_array_data__coll__graph.png +share/doc/qwt/html/class_qwt_array_data__inherit__graph.map +share/doc/qwt/html/class_qwt_array_data__inherit__graph.md5 +share/doc/qwt/html/class_qwt_array_data__inherit__graph.png +share/doc/qwt/html/class_qwt_arrow_button-members.html +share/doc/qwt/html/class_qwt_arrow_button.html +share/doc/qwt/html/class_qwt_c_pointer_data-members.html +share/doc/qwt/html/class_qwt_c_pointer_data.html +share/doc/qwt/html/class_qwt_c_pointer_data__coll__graph.map +share/doc/qwt/html/class_qwt_c_pointer_data__coll__graph.md5 +share/doc/qwt/html/class_qwt_c_pointer_data__coll__graph.png +share/doc/qwt/html/class_qwt_c_pointer_data__inherit__graph.map +share/doc/qwt/html/class_qwt_c_pointer_data__inherit__graph.md5 +share/doc/qwt/html/class_qwt_c_pointer_data__inherit__graph.png +share/doc/qwt/html/class_qwt_color_map-members.html +share/doc/qwt/html/class_qwt_color_map.html +share/doc/qwt/html/class_qwt_color_map__inherit__graph.map +share/doc/qwt/html/class_qwt_color_map__inherit__graph.md5 +share/doc/qwt/html/class_qwt_color_map__inherit__graph.png +share/doc/qwt/html/class_qwt_compass-members.html +share/doc/qwt/html/class_qwt_compass.html +share/doc/qwt/html/class_qwt_compass__coll__graph.map +share/doc/qwt/html/class_qwt_compass__coll__graph.md5 +share/doc/qwt/html/class_qwt_compass__coll__graph.png +share/doc/qwt/html/class_qwt_compass__inherit__graph.map +share/doc/qwt/html/class_qwt_compass__inherit__graph.md5 +share/doc/qwt/html/class_qwt_compass__inherit__graph.png +share/doc/qwt/html/class_qwt_compass_magnet_needle-members.html +share/doc/qwt/html/class_qwt_compass_magnet_needle.html +share/doc/qwt/html/class_qwt_compass_magnet_needle__coll__graph.map +share/doc/qwt/html/class_qwt_compass_magnet_needle__coll__graph.md5 +share/doc/qwt/html/class_qwt_compass_magnet_needle__coll__graph.png +share/doc/qwt/html/class_qwt_compass_magnet_needle__inherit__graph.map +share/doc/qwt/html/class_qwt_compass_magnet_needle__inherit__graph.md5 +share/doc/qwt/html/class_qwt_compass_magnet_needle__inherit__graph.png +share/doc/qwt/html/class_qwt_compass_rose-members.html +share/doc/qwt/html/class_qwt_compass_rose.html +share/doc/qwt/html/class_qwt_compass_rose__inherit__graph.map +share/doc/qwt/html/class_qwt_compass_rose__inherit__graph.md5 +share/doc/qwt/html/class_qwt_compass_rose__inherit__graph.png +share/doc/qwt/html/class_qwt_compass_wind_arrow-members.html +share/doc/qwt/html/class_qwt_compass_wind_arrow.html +share/doc/qwt/html/class_qwt_compass_wind_arrow__coll__graph.map +share/doc/qwt/html/class_qwt_compass_wind_arrow__coll__graph.md5 +share/doc/qwt/html/class_qwt_compass_wind_arrow__coll__graph.png +share/doc/qwt/html/class_qwt_compass_wind_arrow__inherit__graph.map +share/doc/qwt/html/class_qwt_compass_wind_arrow__inherit__graph.md5 +share/doc/qwt/html/class_qwt_compass_wind_arrow__inherit__graph.png +share/doc/qwt/html/class_qwt_counter-members.html +share/doc/qwt/html/class_qwt_counter.html +share/doc/qwt/html/class_qwt_counter__coll__graph.map +share/doc/qwt/html/class_qwt_counter__coll__graph.md5 +share/doc/qwt/html/class_qwt_counter__coll__graph.png +share/doc/qwt/html/class_qwt_counter__inherit__graph.map +share/doc/qwt/html/class_qwt_counter__inherit__graph.md5 +share/doc/qwt/html/class_qwt_counter__inherit__graph.png +share/doc/qwt/html/class_qwt_curve_fitter-members.html +share/doc/qwt/html/class_qwt_curve_fitter.html +share/doc/qwt/html/class_qwt_curve_fitter__inherit__graph.map +share/doc/qwt/html/class_qwt_curve_fitter__inherit__graph.md5 +share/doc/qwt/html/class_qwt_curve_fitter__inherit__graph.png +share/doc/qwt/html/class_qwt_data-members.html +share/doc/qwt/html/class_qwt_data.html +share/doc/qwt/html/class_qwt_data__inherit__graph.map +share/doc/qwt/html/class_qwt_data__inherit__graph.md5 +share/doc/qwt/html/class_qwt_data__inherit__graph.png +share/doc/qwt/html/class_qwt_dial-members.html +share/doc/qwt/html/class_qwt_dial.html +share/doc/qwt/html/class_qwt_dial__coll__graph.map +share/doc/qwt/html/class_qwt_dial__coll__graph.md5 +share/doc/qwt/html/class_qwt_dial__coll__graph.png +share/doc/qwt/html/class_qwt_dial__inherit__graph.map +share/doc/qwt/html/class_qwt_dial__inherit__graph.md5 +share/doc/qwt/html/class_qwt_dial__inherit__graph.png +share/doc/qwt/html/class_qwt_dial_needle-members.html +share/doc/qwt/html/class_qwt_dial_needle.html +share/doc/qwt/html/class_qwt_dial_needle__inherit__graph.map +share/doc/qwt/html/class_qwt_dial_needle__inherit__graph.md5 +share/doc/qwt/html/class_qwt_dial_needle__inherit__graph.png +share/doc/qwt/html/class_qwt_dial_scale_draw-members.html +share/doc/qwt/html/class_qwt_dial_scale_draw.html +share/doc/qwt/html/class_qwt_dial_scale_draw__coll__graph.map +share/doc/qwt/html/class_qwt_dial_scale_draw__coll__graph.md5 +share/doc/qwt/html/class_qwt_dial_scale_draw__coll__graph.png +share/doc/qwt/html/class_qwt_dial_scale_draw__inherit__graph.map +share/doc/qwt/html/class_qwt_dial_scale_draw__inherit__graph.md5 +share/doc/qwt/html/class_qwt_dial_scale_draw__inherit__graph.png +share/doc/qwt/html/class_qwt_dial_simple_needle-members.html +share/doc/qwt/html/class_qwt_dial_simple_needle.html +share/doc/qwt/html/class_qwt_dial_simple_needle__coll__graph.map +share/doc/qwt/html/class_qwt_dial_simple_needle__coll__graph.md5 +share/doc/qwt/html/class_qwt_dial_simple_needle__coll__graph.png +share/doc/qwt/html/class_qwt_dial_simple_needle__inherit__graph.map +share/doc/qwt/html/class_qwt_dial_simple_needle__inherit__graph.md5 +share/doc/qwt/html/class_qwt_dial_simple_needle__inherit__graph.png +share/doc/qwt/html/class_qwt_double_interval-members.html +share/doc/qwt/html/class_qwt_double_interval.html +share/doc/qwt/html/class_qwt_double_range-members.html +share/doc/qwt/html/class_qwt_double_range.html +share/doc/qwt/html/class_qwt_double_range__inherit__graph.map +share/doc/qwt/html/class_qwt_double_range__inherit__graph.md5 +share/doc/qwt/html/class_qwt_double_range__inherit__graph.png +share/doc/qwt/html/class_qwt_dyn_grid_layout-members.html +share/doc/qwt/html/class_qwt_dyn_grid_layout.html +share/doc/qwt/html/class_qwt_event_pattern-members.html +share/doc/qwt/html/class_qwt_event_pattern.html +share/doc/qwt/html/class_qwt_event_pattern_1_1_key_pattern-members.html +share/doc/qwt/html/class_qwt_event_pattern_1_1_key_pattern.html +share/doc/qwt/html/class_qwt_event_pattern_1_1_mouse_pattern-members.html +share/doc/qwt/html/class_qwt_event_pattern_1_1_mouse_pattern.html +share/doc/qwt/html/class_qwt_event_pattern__inherit__graph.map +share/doc/qwt/html/class_qwt_event_pattern__inherit__graph.md5 +share/doc/qwt/html/class_qwt_event_pattern__inherit__graph.png +share/doc/qwt/html/class_qwt_interval_data-members.html +share/doc/qwt/html/class_qwt_interval_data.html +share/doc/qwt/html/class_qwt_knob-members.html +share/doc/qwt/html/class_qwt_knob.html +share/doc/qwt/html/class_qwt_knob__coll__graph.map +share/doc/qwt/html/class_qwt_knob__coll__graph.md5 +share/doc/qwt/html/class_qwt_knob__coll__graph.png +share/doc/qwt/html/class_qwt_knob__inherit__graph.map +share/doc/qwt/html/class_qwt_knob__inherit__graph.md5 +share/doc/qwt/html/class_qwt_knob__inherit__graph.png +share/doc/qwt/html/class_qwt_legend-members.html +share/doc/qwt/html/class_qwt_legend.html +share/doc/qwt/html/class_qwt_legend_item-members.html +share/doc/qwt/html/class_qwt_legend_item.html +share/doc/qwt/html/class_qwt_legend_item__coll__graph.map +share/doc/qwt/html/class_qwt_legend_item__coll__graph.md5 +share/doc/qwt/html/class_qwt_legend_item__coll__graph.png +share/doc/qwt/html/class_qwt_legend_item__inherit__graph.map +share/doc/qwt/html/class_qwt_legend_item__inherit__graph.md5 +share/doc/qwt/html/class_qwt_legend_item__inherit__graph.png +share/doc/qwt/html/class_qwt_linear_color_map-members.html +share/doc/qwt/html/class_qwt_linear_color_map.html +share/doc/qwt/html/class_qwt_linear_color_map__coll__graph.map +share/doc/qwt/html/class_qwt_linear_color_map__coll__graph.md5 +share/doc/qwt/html/class_qwt_linear_color_map__coll__graph.png +share/doc/qwt/html/class_qwt_linear_color_map__inherit__graph.map +share/doc/qwt/html/class_qwt_linear_color_map__inherit__graph.md5 +share/doc/qwt/html/class_qwt_linear_color_map__inherit__graph.png +share/doc/qwt/html/class_qwt_linear_scale_engine-members.html +share/doc/qwt/html/class_qwt_linear_scale_engine.html +share/doc/qwt/html/class_qwt_linear_scale_engine__coll__graph.map +share/doc/qwt/html/class_qwt_linear_scale_engine__coll__graph.md5 +share/doc/qwt/html/class_qwt_linear_scale_engine__coll__graph.png +share/doc/qwt/html/class_qwt_linear_scale_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_linear_scale_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_linear_scale_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_log10_scale_engine-members.html +share/doc/qwt/html/class_qwt_log10_scale_engine.html +share/doc/qwt/html/class_qwt_log10_scale_engine__coll__graph.map +share/doc/qwt/html/class_qwt_log10_scale_engine__coll__graph.md5 +share/doc/qwt/html/class_qwt_log10_scale_engine__coll__graph.png +share/doc/qwt/html/class_qwt_log10_scale_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_log10_scale_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_log10_scale_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_math_m_l_text_engine-members.html +share/doc/qwt/html/class_qwt_math_m_l_text_engine.html +share/doc/qwt/html/class_qwt_math_m_l_text_engine__coll__graph.map +share/doc/qwt/html/class_qwt_math_m_l_text_engine__coll__graph.md5 +share/doc/qwt/html/class_qwt_math_m_l_text_engine__coll__graph.png +share/doc/qwt/html/class_qwt_math_m_l_text_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_math_m_l_text_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_math_m_l_text_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_metrics_map-members.html +share/doc/qwt/html/class_qwt_metrics_map.html +share/doc/qwt/html/class_qwt_painter-members.html +share/doc/qwt/html/class_qwt_painter.html +share/doc/qwt/html/class_qwt_painter__coll__graph.map +share/doc/qwt/html/class_qwt_painter__coll__graph.md5 +share/doc/qwt/html/class_qwt_painter__coll__graph.png +share/doc/qwt/html/class_qwt_panner-members.html +share/doc/qwt/html/class_qwt_panner.html +share/doc/qwt/html/class_qwt_panner__inherit__graph.map +share/doc/qwt/html/class_qwt_panner__inherit__graph.md5 +share/doc/qwt/html/class_qwt_panner__inherit__graph.png +share/doc/qwt/html/class_qwt_picker-members.html +share/doc/qwt/html/class_qwt_picker.html +share/doc/qwt/html/class_qwt_picker__coll__graph.map +share/doc/qwt/html/class_qwt_picker__coll__graph.md5 +share/doc/qwt/html/class_qwt_picker__coll__graph.png +share/doc/qwt/html/class_qwt_picker__inherit__graph.map +share/doc/qwt/html/class_qwt_picker__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker__inherit__graph.png +share/doc/qwt/html/class_qwt_picker_click_point_machine-members.html +share/doc/qwt/html/class_qwt_picker_click_point_machine.html +share/doc/qwt/html/class_qwt_picker_click_point_machine__coll__graph.map +share/doc/qwt/html/class_qwt_picker_click_point_machine__coll__graph.md5 +share/doc/qwt/html/class_qwt_picker_click_point_machine__coll__graph.png +share/doc/qwt/html/class_qwt_picker_click_point_machine__inherit__graph.map +share/doc/qwt/html/class_qwt_picker_click_point_machine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker_click_point_machine__inherit__graph.png +share/doc/qwt/html/class_qwt_picker_click_rect_machine-members.html +share/doc/qwt/html/class_qwt_picker_click_rect_machine.html +share/doc/qwt/html/class_qwt_picker_click_rect_machine__coll__graph.map +share/doc/qwt/html/class_qwt_picker_click_rect_machine__coll__graph.md5 +share/doc/qwt/html/class_qwt_picker_click_rect_machine__coll__graph.png +share/doc/qwt/html/class_qwt_picker_click_rect_machine__inherit__graph.map +share/doc/qwt/html/class_qwt_picker_click_rect_machine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker_click_rect_machine__inherit__graph.png +share/doc/qwt/html/class_qwt_picker_drag_point_machine-members.html +share/doc/qwt/html/class_qwt_picker_drag_point_machine.html +share/doc/qwt/html/class_qwt_picker_drag_point_machine__coll__graph.map +share/doc/qwt/html/class_qwt_picker_drag_point_machine__coll__graph.md5 +share/doc/qwt/html/class_qwt_picker_drag_point_machine__coll__graph.png +share/doc/qwt/html/class_qwt_picker_drag_point_machine__inherit__graph.map +share/doc/qwt/html/class_qwt_picker_drag_point_machine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker_drag_point_machine__inherit__graph.png +share/doc/qwt/html/class_qwt_picker_drag_rect_machine-members.html +share/doc/qwt/html/class_qwt_picker_drag_rect_machine.html +share/doc/qwt/html/class_qwt_picker_drag_rect_machine__coll__graph.map +share/doc/qwt/html/class_qwt_picker_drag_rect_machine__coll__graph.md5 +share/doc/qwt/html/class_qwt_picker_drag_rect_machine__coll__graph.png +share/doc/qwt/html/class_qwt_picker_drag_rect_machine__inherit__graph.map +share/doc/qwt/html/class_qwt_picker_drag_rect_machine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker_drag_rect_machine__inherit__graph.png +share/doc/qwt/html/class_qwt_picker_machine-members.html +share/doc/qwt/html/class_qwt_picker_machine.html +share/doc/qwt/html/class_qwt_picker_machine__inherit__graph.map +share/doc/qwt/html/class_qwt_picker_machine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker_machine__inherit__graph.png +share/doc/qwt/html/class_qwt_picker_polygon_machine-members.html +share/doc/qwt/html/class_qwt_picker_polygon_machine.html +share/doc/qwt/html/class_qwt_picker_polygon_machine__coll__graph.map +share/doc/qwt/html/class_qwt_picker_polygon_machine__coll__graph.md5 +share/doc/qwt/html/class_qwt_picker_polygon_machine__coll__graph.png +share/doc/qwt/html/class_qwt_picker_polygon_machine__inherit__graph.map +share/doc/qwt/html/class_qwt_picker_polygon_machine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_picker_polygon_machine__inherit__graph.png +share/doc/qwt/html/class_qwt_plain_text_engine-members.html +share/doc/qwt/html/class_qwt_plain_text_engine.html +share/doc/qwt/html/class_qwt_plain_text_engine__coll__graph.map +share/doc/qwt/html/class_qwt_plain_text_engine__coll__graph.md5 +share/doc/qwt/html/class_qwt_plain_text_engine__coll__graph.png +share/doc/qwt/html/class_qwt_plain_text_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_plain_text_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plain_text_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_plot-members.html +share/doc/qwt/html/class_qwt_plot.html +share/doc/qwt/html/class_qwt_plot__coll__graph.map +share/doc/qwt/html/class_qwt_plot__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot__coll__graph.png +share/doc/qwt/html/class_qwt_plot__inherit__graph.map +share/doc/qwt/html/class_qwt_plot__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_canvas-members.html +share/doc/qwt/html/class_qwt_plot_canvas.html +share/doc/qwt/html/class_qwt_plot_curve-members.html +share/doc/qwt/html/class_qwt_plot_curve.html +share/doc/qwt/html/class_qwt_plot_curve__coll__graph.map +share/doc/qwt/html/class_qwt_plot_curve__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_curve__coll__graph.png +share/doc/qwt/html/class_qwt_plot_curve__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_curve__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_curve__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_dict-members.html +share/doc/qwt/html/class_qwt_plot_dict.html +share/doc/qwt/html/class_qwt_plot_dict__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_dict__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_dict__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_grid-members.html +share/doc/qwt/html/class_qwt_plot_grid.html +share/doc/qwt/html/class_qwt_plot_grid__coll__graph.map +share/doc/qwt/html/class_qwt_plot_grid__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_grid__coll__graph.png +share/doc/qwt/html/class_qwt_plot_grid__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_grid__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_grid__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_item-members.html +share/doc/qwt/html/class_qwt_plot_item.html +share/doc/qwt/html/class_qwt_plot_item__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_item__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_item__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_layout-members.html +share/doc/qwt/html/class_qwt_plot_layout.html +share/doc/qwt/html/class_qwt_plot_magnifier-members.html +share/doc/qwt/html/class_qwt_plot_magnifier.html +share/doc/qwt/html/class_qwt_plot_marker-members.html +share/doc/qwt/html/class_qwt_plot_marker.html +share/doc/qwt/html/class_qwt_plot_marker__coll__graph.map +share/doc/qwt/html/class_qwt_plot_marker__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_marker__coll__graph.png +share/doc/qwt/html/class_qwt_plot_marker__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_marker__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_marker__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_panner-members.html +share/doc/qwt/html/class_qwt_plot_panner.html +share/doc/qwt/html/class_qwt_plot_panner__coll__graph.map +share/doc/qwt/html/class_qwt_plot_panner__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_panner__coll__graph.png +share/doc/qwt/html/class_qwt_plot_panner__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_panner__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_panner__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_picker-members.html +share/doc/qwt/html/class_qwt_plot_picker.html +share/doc/qwt/html/class_qwt_plot_picker__coll__graph.map +share/doc/qwt/html/class_qwt_plot_picker__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_picker__coll__graph.png +share/doc/qwt/html/class_qwt_plot_picker__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_picker__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_picker__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_print_filter-members.html +share/doc/qwt/html/class_qwt_plot_print_filter.html +share/doc/qwt/html/class_qwt_plot_raster_item-members.html +share/doc/qwt/html/class_qwt_plot_raster_item.html +share/doc/qwt/html/class_qwt_plot_raster_item__coll__graph.map +share/doc/qwt/html/class_qwt_plot_raster_item__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_raster_item__coll__graph.png +share/doc/qwt/html/class_qwt_plot_raster_item__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_raster_item__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_raster_item__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_spectrogram-members.html +share/doc/qwt/html/class_qwt_plot_spectrogram.html +share/doc/qwt/html/class_qwt_plot_spectrogram__coll__graph.map +share/doc/qwt/html/class_qwt_plot_spectrogram__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_spectrogram__coll__graph.png +share/doc/qwt/html/class_qwt_plot_spectrogram__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_spectrogram__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_spectrogram__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_svg_item-members.html +share/doc/qwt/html/class_qwt_plot_svg_item.html +share/doc/qwt/html/class_qwt_plot_svg_item__coll__graph.map +share/doc/qwt/html/class_qwt_plot_svg_item__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_svg_item__coll__graph.png +share/doc/qwt/html/class_qwt_plot_svg_item__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_svg_item__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_svg_item__inherit__graph.png +share/doc/qwt/html/class_qwt_plot_zoomer-members.html +share/doc/qwt/html/class_qwt_plot_zoomer.html +share/doc/qwt/html/class_qwt_plot_zoomer__coll__graph.map +share/doc/qwt/html/class_qwt_plot_zoomer__coll__graph.md5 +share/doc/qwt/html/class_qwt_plot_zoomer__coll__graph.png +share/doc/qwt/html/class_qwt_plot_zoomer__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_zoomer__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_zoomer__inherit__graph.png +share/doc/qwt/html/class_qwt_polygon_f_data-members.html +share/doc/qwt/html/class_qwt_polygon_f_data.html +share/doc/qwt/html/class_qwt_polygon_f_data__coll__graph.map +share/doc/qwt/html/class_qwt_polygon_f_data__coll__graph.md5 +share/doc/qwt/html/class_qwt_polygon_f_data__coll__graph.png +share/doc/qwt/html/class_qwt_polygon_f_data__inherit__graph.map +share/doc/qwt/html/class_qwt_polygon_f_data__inherit__graph.md5 +share/doc/qwt/html/class_qwt_polygon_f_data__inherit__graph.png +share/doc/qwt/html/class_qwt_raster_data-members.html +share/doc/qwt/html/class_qwt_raster_data.html +share/doc/qwt/html/class_qwt_raster_data__inherit__graph.map +share/doc/qwt/html/class_qwt_raster_data__inherit__graph.md5 +share/doc/qwt/html/class_qwt_raster_data__inherit__graph.png +share/doc/qwt/html/class_qwt_rect-members.html +share/doc/qwt/html/class_qwt_rect.html +share/doc/qwt/html/class_qwt_rich_text_engine-members.html +share/doc/qwt/html/class_qwt_rich_text_engine.html +share/doc/qwt/html/class_qwt_rich_text_engine__coll__graph.map +share/doc/qwt/html/class_qwt_rich_text_engine__coll__graph.md5 +share/doc/qwt/html/class_qwt_rich_text_engine__coll__graph.png +share/doc/qwt/html/class_qwt_rich_text_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_rich_text_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_rich_text_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_round_scale_draw-members.html +share/doc/qwt/html/class_qwt_round_scale_draw.html +share/doc/qwt/html/class_qwt_round_scale_draw__coll__graph.map +share/doc/qwt/html/class_qwt_round_scale_draw__coll__graph.md5 +share/doc/qwt/html/class_qwt_round_scale_draw__coll__graph.png +share/doc/qwt/html/class_qwt_round_scale_draw__inherit__graph.map +share/doc/qwt/html/class_qwt_round_scale_draw__inherit__graph.md5 +share/doc/qwt/html/class_qwt_round_scale_draw__inherit__graph.png +share/doc/qwt/html/class_qwt_scale_arithmetic-members.html +share/doc/qwt/html/class_qwt_scale_arithmetic.html +share/doc/qwt/html/class_qwt_scale_div-members.html +share/doc/qwt/html/class_qwt_scale_div.html +share/doc/qwt/html/class_qwt_scale_draw-members.html +share/doc/qwt/html/class_qwt_scale_draw.html +share/doc/qwt/html/class_qwt_scale_draw__coll__graph.map +share/doc/qwt/html/class_qwt_scale_draw__coll__graph.md5 +share/doc/qwt/html/class_qwt_scale_draw__coll__graph.png +share/doc/qwt/html/class_qwt_scale_draw__inherit__graph.map +share/doc/qwt/html/class_qwt_scale_draw__inherit__graph.md5 +share/doc/qwt/html/class_qwt_scale_draw__inherit__graph.png +share/doc/qwt/html/class_qwt_scale_engine-members.html +share/doc/qwt/html/class_qwt_scale_engine.html +share/doc/qwt/html/class_qwt_scale_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_scale_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_scale_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_scale_map-members.html +share/doc/qwt/html/class_qwt_scale_map.html +share/doc/qwt/html/class_qwt_scale_map__coll__graph.map +share/doc/qwt/html/class_qwt_scale_map__coll__graph.md5 +share/doc/qwt/html/class_qwt_scale_map__coll__graph.png +share/doc/qwt/html/class_qwt_scale_transformation-members.html +share/doc/qwt/html/class_qwt_scale_transformation.html +share/doc/qwt/html/class_qwt_scale_widget-members.html +share/doc/qwt/html/class_qwt_scale_widget.html +share/doc/qwt/html/class_qwt_simple_compass_rose-members.html +share/doc/qwt/html/class_qwt_simple_compass_rose.html +share/doc/qwt/html/class_qwt_simple_compass_rose__coll__graph.map +share/doc/qwt/html/class_qwt_simple_compass_rose__coll__graph.md5 +share/doc/qwt/html/class_qwt_simple_compass_rose__coll__graph.png +share/doc/qwt/html/class_qwt_simple_compass_rose__inherit__graph.map +share/doc/qwt/html/class_qwt_simple_compass_rose__inherit__graph.md5 +share/doc/qwt/html/class_qwt_simple_compass_rose__inherit__graph.png +share/doc/qwt/html/class_qwt_slider-members.html +share/doc/qwt/html/class_qwt_slider.html +share/doc/qwt/html/class_qwt_slider__coll__graph.map +share/doc/qwt/html/class_qwt_slider__coll__graph.md5 +share/doc/qwt/html/class_qwt_slider__coll__graph.png +share/doc/qwt/html/class_qwt_slider__inherit__graph.map +share/doc/qwt/html/class_qwt_slider__inherit__graph.md5 +share/doc/qwt/html/class_qwt_slider__inherit__graph.png +share/doc/qwt/html/class_qwt_spline-members.html +share/doc/qwt/html/class_qwt_spline.html +share/doc/qwt/html/class_qwt_spline_curve_fitter-members.html +share/doc/qwt/html/class_qwt_spline_curve_fitter.html +share/doc/qwt/html/class_qwt_spline_curve_fitter__coll__graph.map +share/doc/qwt/html/class_qwt_spline_curve_fitter__coll__graph.md5 +share/doc/qwt/html/class_qwt_spline_curve_fitter__coll__graph.png +share/doc/qwt/html/class_qwt_spline_curve_fitter__inherit__graph.map +share/doc/qwt/html/class_qwt_spline_curve_fitter__inherit__graph.md5 +share/doc/qwt/html/class_qwt_spline_curve_fitter__inherit__graph.png +share/doc/qwt/html/class_qwt_symbol-members.html +share/doc/qwt/html/class_qwt_symbol.html +share/doc/qwt/html/class_qwt_text-members.html +share/doc/qwt/html/class_qwt_text.html +share/doc/qwt/html/class_qwt_text_engine-members.html +share/doc/qwt/html/class_qwt_text_engine.html +share/doc/qwt/html/class_qwt_text_engine__inherit__graph.map +share/doc/qwt/html/class_qwt_text_engine__inherit__graph.md5 +share/doc/qwt/html/class_qwt_text_engine__inherit__graph.png +share/doc/qwt/html/class_qwt_text_label-members.html +share/doc/qwt/html/class_qwt_text_label.html +share/doc/qwt/html/class_qwt_text_label__inherit__graph.map +share/doc/qwt/html/class_qwt_text_label__inherit__graph.md5 +share/doc/qwt/html/class_qwt_text_label__inherit__graph.png +share/doc/qwt/html/class_qwt_thermo-members.html +share/doc/qwt/html/class_qwt_thermo.html +share/doc/qwt/html/class_qwt_thermo__coll__graph.map +share/doc/qwt/html/class_qwt_thermo__coll__graph.md5 +share/doc/qwt/html/class_qwt_thermo__coll__graph.png +share/doc/qwt/html/class_qwt_thermo__inherit__graph.map +share/doc/qwt/html/class_qwt_thermo__inherit__graph.md5 +share/doc/qwt/html/class_qwt_thermo__inherit__graph.png +share/doc/qwt/html/class_qwt_wheel-members.html +share/doc/qwt/html/class_qwt_wheel.html +share/doc/qwt/html/class_qwt_wheel__coll__graph.map +share/doc/qwt/html/class_qwt_wheel__coll__graph.md5 +share/doc/qwt/html/class_qwt_wheel__coll__graph.png +share/doc/qwt/html/class_qwt_wheel__inherit__graph.map +share/doc/qwt/html/class_qwt_wheel__inherit__graph.md5 +share/doc/qwt/html/class_qwt_wheel__inherit__graph.png +share/doc/qwt/html/classes.html +share/doc/qwt/html/controlscreenshots.html +share/doc/qwt/html/cpuplot.png +share/doc/qwt/html/curves.png +share/doc/qwt/html/curvescreenshots.html +share/doc/qwt/html/deprecated.html +share/doc/qwt/html/dials1.png +share/doc/qwt/html/dials2.png +share/doc/qwt/html/doxygen.css +share/doc/qwt/html/doxygen.png +share/doc/qwt/html/files.html +share/doc/qwt/html/form_0.png +share/doc/qwt/html/form_1.png +share/doc/qwt/html/form_2.png +share/doc/qwt/html/formula.repository +share/doc/qwt/html/functions.html +share/doc/qwt/html/functions_0x62.html +share/doc/qwt/html/functions_0x63.html +share/doc/qwt/html/functions_0x64.html +share/doc/qwt/html/functions_0x65.html +share/doc/qwt/html/functions_0x66.html +share/doc/qwt/html/functions_0x67.html +share/doc/qwt/html/functions_0x68.html +share/doc/qwt/html/functions_0x69.html +share/doc/qwt/html/functions_0x6b.html +share/doc/qwt/html/functions_0x6c.html +share/doc/qwt/html/functions_0x6d.html +share/doc/qwt/html/functions_0x6e.html +share/doc/qwt/html/functions_0x6f.html +share/doc/qwt/html/functions_0x70.html +share/doc/qwt/html/functions_0x71.html +share/doc/qwt/html/functions_0x72.html +share/doc/qwt/html/functions_0x73.html +share/doc/qwt/html/functions_0x74.html +share/doc/qwt/html/functions_0x75.html +share/doc/qwt/html/functions_0x76.html +share/doc/qwt/html/functions_0x77.html +share/doc/qwt/html/functions_0x78.html +share/doc/qwt/html/functions_0x79.html +share/doc/qwt/html/functions_0x7a.html +share/doc/qwt/html/functions_0x7e.html +share/doc/qwt/html/functions_enum.html +share/doc/qwt/html/functions_func.html +share/doc/qwt/html/functions_func_0x62.html +share/doc/qwt/html/functions_func_0x63.html +share/doc/qwt/html/functions_func_0x64.html +share/doc/qwt/html/functions_func_0x65.html +share/doc/qwt/html/functions_func_0x66.html +share/doc/qwt/html/functions_func_0x67.html +share/doc/qwt/html/functions_func_0x68.html +share/doc/qwt/html/functions_func_0x69.html +share/doc/qwt/html/functions_func_0x6b.html +share/doc/qwt/html/functions_func_0x6c.html +share/doc/qwt/html/functions_func_0x6d.html +share/doc/qwt/html/functions_func_0x6e.html +share/doc/qwt/html/functions_func_0x6f.html +share/doc/qwt/html/functions_func_0x70.html +share/doc/qwt/html/functions_func_0x71.html +share/doc/qwt/html/functions_func_0x72.html +share/doc/qwt/html/functions_func_0x73.html +share/doc/qwt/html/functions_func_0x74.html +share/doc/qwt/html/functions_func_0x75.html +share/doc/qwt/html/functions_func_0x76.html +share/doc/qwt/html/functions_func_0x77.html +share/doc/qwt/html/functions_func_0x78.html +share/doc/qwt/html/functions_func_0x79.html +share/doc/qwt/html/functions_func_0x7a.html +share/doc/qwt/html/functions_func_0x7e.html +share/doc/qwt/html/functions_rela.html +share/doc/qwt/html/functions_type.html +share/doc/qwt/html/functions_vars.html +share/doc/qwt/html/graph.png +share/doc/qwt/html/graph_legend.dot +share/doc/qwt/html/graph_legend.html +share/doc/qwt/html/graph_legend.png +share/doc/qwt/html/hierarchy.html +share/doc/qwt/html/histogram.png +share/doc/qwt/html/histogramscreenshots.html +share/doc/qwt/html/index.html +share/doc/qwt/html/inherit__graph__0.map +share/doc/qwt/html/inherit__graph__0.md5 +share/doc/qwt/html/inherit__graph__0.png +share/doc/qwt/html/inherit__graph__1.map +share/doc/qwt/html/inherit__graph__1.md5 +share/doc/qwt/html/inherit__graph__1.png +share/doc/qwt/html/inherit__graph__10.map +share/doc/qwt/html/inherit__graph__10.md5 +share/doc/qwt/html/inherit__graph__10.png +share/doc/qwt/html/inherit__graph__11.map +share/doc/qwt/html/inherit__graph__11.md5 +share/doc/qwt/html/inherit__graph__11.png +share/doc/qwt/html/inherit__graph__12.map +share/doc/qwt/html/inherit__graph__12.md5 +share/doc/qwt/html/inherit__graph__12.png +share/doc/qwt/html/inherit__graph__13.map +share/doc/qwt/html/inherit__graph__13.md5 +share/doc/qwt/html/inherit__graph__13.png +share/doc/qwt/html/inherit__graph__14.map +share/doc/qwt/html/inherit__graph__14.md5 +share/doc/qwt/html/inherit__graph__14.png +share/doc/qwt/html/inherit__graph__15.map +share/doc/qwt/html/inherit__graph__15.md5 +share/doc/qwt/html/inherit__graph__15.png +share/doc/qwt/html/inherit__graph__16.map +share/doc/qwt/html/inherit__graph__16.md5 +share/doc/qwt/html/inherit__graph__16.png +share/doc/qwt/html/inherit__graph__17.map +share/doc/qwt/html/inherit__graph__17.md5 +share/doc/qwt/html/inherit__graph__17.png +share/doc/qwt/html/inherit__graph__18.map +share/doc/qwt/html/inherit__graph__18.md5 +share/doc/qwt/html/inherit__graph__18.png +share/doc/qwt/html/inherit__graph__19.map +share/doc/qwt/html/inherit__graph__19.md5 +share/doc/qwt/html/inherit__graph__19.png +share/doc/qwt/html/inherit__graph__2.map +share/doc/qwt/html/inherit__graph__2.md5 +share/doc/qwt/html/inherit__graph__2.png +share/doc/qwt/html/inherit__graph__20.map +share/doc/qwt/html/inherit__graph__20.md5 +share/doc/qwt/html/inherit__graph__20.png +share/doc/qwt/html/inherit__graph__21.map +share/doc/qwt/html/inherit__graph__21.md5 +share/doc/qwt/html/inherit__graph__21.png +share/doc/qwt/html/inherit__graph__22.map +share/doc/qwt/html/inherit__graph__22.md5 +share/doc/qwt/html/inherit__graph__22.png +share/doc/qwt/html/inherit__graph__23.map +share/doc/qwt/html/inherit__graph__23.md5 +share/doc/qwt/html/inherit__graph__23.png +share/doc/qwt/html/inherit__graph__24.map +share/doc/qwt/html/inherit__graph__24.md5 +share/doc/qwt/html/inherit__graph__24.png +share/doc/qwt/html/inherit__graph__25.map +share/doc/qwt/html/inherit__graph__25.md5 +share/doc/qwt/html/inherit__graph__25.png +share/doc/qwt/html/inherit__graph__26.map +share/doc/qwt/html/inherit__graph__26.md5 +share/doc/qwt/html/inherit__graph__26.png +share/doc/qwt/html/inherit__graph__27.map +share/doc/qwt/html/inherit__graph__27.md5 +share/doc/qwt/html/inherit__graph__27.png +share/doc/qwt/html/inherit__graph__28.map +share/doc/qwt/html/inherit__graph__28.md5 +share/doc/qwt/html/inherit__graph__28.png +share/doc/qwt/html/inherit__graph__29.map +share/doc/qwt/html/inherit__graph__29.md5 +share/doc/qwt/html/inherit__graph__29.png +share/doc/qwt/html/inherit__graph__3.map +share/doc/qwt/html/inherit__graph__3.md5 +share/doc/qwt/html/inherit__graph__3.png +share/doc/qwt/html/inherit__graph__30.map +share/doc/qwt/html/inherit__graph__30.md5 +share/doc/qwt/html/inherit__graph__30.png +share/doc/qwt/html/inherit__graph__31.map +share/doc/qwt/html/inherit__graph__31.md5 +share/doc/qwt/html/inherit__graph__31.png +share/doc/qwt/html/inherit__graph__32.map +share/doc/qwt/html/inherit__graph__32.md5 +share/doc/qwt/html/inherit__graph__32.png +share/doc/qwt/html/inherit__graph__33.map +share/doc/qwt/html/inherit__graph__33.md5 +share/doc/qwt/html/inherit__graph__33.png +share/doc/qwt/html/inherit__graph__34.map +share/doc/qwt/html/inherit__graph__34.md5 +share/doc/qwt/html/inherit__graph__34.png +share/doc/qwt/html/inherit__graph__35.map +share/doc/qwt/html/inherit__graph__35.md5 +share/doc/qwt/html/inherit__graph__35.png +share/doc/qwt/html/inherit__graph__36.map +share/doc/qwt/html/inherit__graph__36.md5 +share/doc/qwt/html/inherit__graph__36.png +share/doc/qwt/html/inherit__graph__37.map +share/doc/qwt/html/inherit__graph__37.md5 +share/doc/qwt/html/inherit__graph__37.png +share/doc/qwt/html/inherit__graph__4.map +share/doc/qwt/html/inherit__graph__4.md5 +share/doc/qwt/html/inherit__graph__4.png +share/doc/qwt/html/inherit__graph__5.map +share/doc/qwt/html/inherit__graph__5.md5 +share/doc/qwt/html/inherit__graph__5.png +share/doc/qwt/html/inherit__graph__6.map +share/doc/qwt/html/inherit__graph__6.md5 +share/doc/qwt/html/inherit__graph__6.png +share/doc/qwt/html/inherit__graph__7.map +share/doc/qwt/html/inherit__graph__7.md5 +share/doc/qwt/html/inherit__graph__7.png +share/doc/qwt/html/inherit__graph__8.map +share/doc/qwt/html/inherit__graph__8.md5 +share/doc/qwt/html/inherit__graph__8.png +share/doc/qwt/html/inherit__graph__9.map +share/doc/qwt/html/inherit__graph__9.md5 +share/doc/qwt/html/inherit__graph__9.png +share/doc/qwt/html/inherits.html +share/doc/qwt/html/knob.png +share/doc/qwt/html/pages.html +share/doc/qwt/html/plot.png +share/doc/qwt/html/qwt__abstract__scale_8cpp-source.html +share/doc/qwt/html/qwt__abstract__scale_8h-source.html +share/doc/qwt/html/qwt__abstract__scale__draw_8cpp-source.html +share/doc/qwt/html/qwt__abstract__scale__draw_8h-source.html +share/doc/qwt/html/qwt__abstract__slider_8cpp-source.html +share/doc/qwt/html/qwt__abstract__slider_8h-source.html +share/doc/qwt/html/qwt__analog__clock_8cpp-source.html +share/doc/qwt/html/qwt__analog__clock_8h-source.html +share/doc/qwt/html/qwt__array_8h-source.html +share/doc/qwt/html/qwt__arrow__button_8cpp-source.html +share/doc/qwt/html/qwt__arrow__button_8h-source.html +share/doc/qwt/html/qwt__color__map_8cpp-source.html +share/doc/qwt/html/qwt__color__map_8h-source.html +share/doc/qwt/html/qwt__compass_8cpp-source.html +share/doc/qwt/html/qwt__compass_8h-source.html +share/doc/qwt/html/qwt__compass__rose_8cpp-source.html +share/doc/qwt/html/qwt__compass__rose_8h-source.html +share/doc/qwt/html/qwt__counter_8cpp-source.html +share/doc/qwt/html/qwt__counter_8h-source.html +share/doc/qwt/html/qwt__curve__fitter_8cpp-source.html +share/doc/qwt/html/qwt__curve__fitter_8h-source.html +share/doc/qwt/html/qwt__data_8cpp-source.html +share/doc/qwt/html/qwt__data_8h-source.html +share/doc/qwt/html/qwt__dial_8cpp-source.html +share/doc/qwt/html/qwt__dial_8h-source.html +share/doc/qwt/html/qwt__dial__needle_8cpp-source.html +share/doc/qwt/html/qwt__dial__needle_8h-source.html +share/doc/qwt/html/qwt__double__interval_8cpp-source.html +share/doc/qwt/html/qwt__double__interval_8h-source.html +share/doc/qwt/html/qwt__double__range_8cpp-source.html +share/doc/qwt/html/qwt__double__range_8h-source.html +share/doc/qwt/html/qwt__double__rect_8cpp-source.html +share/doc/qwt/html/qwt__double__rect_8h-source.html +share/doc/qwt/html/qwt__dyngrid__layout_8cpp-source.html +share/doc/qwt/html/qwt__dyngrid__layout_8h-source.html +share/doc/qwt/html/qwt__event__pattern_8cpp-source.html +share/doc/qwt/html/qwt__event__pattern_8h-source.html +share/doc/qwt/html/qwt__global_8h-source.html +share/doc/qwt/html/qwt__interval__data_8cpp-source.html +share/doc/qwt/html/qwt__interval__data_8h-source.html +share/doc/qwt/html/qwt__knob_8cpp-source.html +share/doc/qwt/html/qwt__knob_8h-source.html +share/doc/qwt/html/qwt__layout__metrics_8cpp-source.html +share/doc/qwt/html/qwt__layout__metrics_8h-source.html +share/doc/qwt/html/qwt__legend_8cpp-source.html +share/doc/qwt/html/qwt__legend_8h-source.html +share/doc/qwt/html/qwt__legend__item_8cpp-source.html +share/doc/qwt/html/qwt__legend__item_8h-source.html +share/doc/qwt/html/qwt__math_8cpp-source.html +share/doc/qwt/html/qwt__math_8h-source.html +share/doc/qwt/html/qwt__mathml__text__engine_8cpp-source.html +share/doc/qwt/html/qwt__mathml__text__engine_8h-source.html +share/doc/qwt/html/qwt__paint__buffer_8cpp-source.html +share/doc/qwt/html/qwt__paint__buffer_8h-source.html +share/doc/qwt/html/qwt__painter_8cpp-source.html +share/doc/qwt/html/qwt__painter_8h-source.html +share/doc/qwt/html/qwt__panner_8cpp-source.html +share/doc/qwt/html/qwt__panner_8h-source.html +share/doc/qwt/html/qwt__picker_8cpp-source.html +share/doc/qwt/html/qwt__picker_8h-source.html +share/doc/qwt/html/qwt__picker__machine_8cpp-source.html +share/doc/qwt/html/qwt__picker__machine_8h-source.html +share/doc/qwt/html/qwt__plot_8cpp-source.html +share/doc/qwt/html/qwt__plot_8h-source.html +share/doc/qwt/html/qwt__plot__axis_8cpp-source.html +share/doc/qwt/html/qwt__plot__canvas_8cpp-source.html +share/doc/qwt/html/qwt__plot__canvas_8h-source.html +share/doc/qwt/html/qwt__plot__curve_8cpp-source.html +share/doc/qwt/html/qwt__plot__curve_8h-source.html +share/doc/qwt/html/qwt__plot__dict_8cpp-source.html +share/doc/qwt/html/qwt__plot__dict_8h-source.html +share/doc/qwt/html/qwt__plot__grid_8cpp-source.html +share/doc/qwt/html/qwt__plot__grid_8h-source.html +share/doc/qwt/html/qwt__plot__item_8cpp-source.html +share/doc/qwt/html/qwt__plot__item_8h-source.html +share/doc/qwt/html/qwt__plot__layout_8cpp-source.html +share/doc/qwt/html/qwt__plot__layout_8h-source.html +share/doc/qwt/html/qwt__plot__magnifier_8cpp-source.html +share/doc/qwt/html/qwt__plot__magnifier_8h-source.html +share/doc/qwt/html/qwt__plot__marker_8cpp-source.html +share/doc/qwt/html/qwt__plot__marker_8h-source.html +share/doc/qwt/html/qwt__plot__panner_8cpp-source.html +share/doc/qwt/html/qwt__plot__panner_8h-source.html +share/doc/qwt/html/qwt__plot__picker_8cpp-source.html +share/doc/qwt/html/qwt__plot__picker_8h-source.html +share/doc/qwt/html/qwt__plot__print_8cpp-source.html +share/doc/qwt/html/qwt__plot__printfilter_8cpp-source.html +share/doc/qwt/html/qwt__plot__printfilter_8h-source.html +share/doc/qwt/html/qwt__plot__rasteritem_8cpp-source.html +share/doc/qwt/html/qwt__plot__rasteritem_8h-source.html +share/doc/qwt/html/qwt__plot__spectrogram_8cpp-source.html +share/doc/qwt/html/qwt__plot__spectrogram_8h-source.html +share/doc/qwt/html/qwt__plot__svgitem_8cpp-source.html +share/doc/qwt/html/qwt__plot__svgitem_8h-source.html +share/doc/qwt/html/qwt__plot__xml_8cpp-source.html +share/doc/qwt/html/qwt__plot__zoomer_8cpp-source.html +share/doc/qwt/html/qwt__plot__zoomer_8h-source.html +share/doc/qwt/html/qwt__polygon_8h-source.html +share/doc/qwt/html/qwt__raster__data_8cpp-source.html +share/doc/qwt/html/qwt__raster__data_8h-source.html +share/doc/qwt/html/qwt__rect_8cpp-source.html +share/doc/qwt/html/qwt__rect_8h-source.html +share/doc/qwt/html/qwt__round__scale__draw_8cpp-source.html +share/doc/qwt/html/qwt__round__scale__draw_8h-source.html +share/doc/qwt/html/qwt__scale__div_8cpp-source.html +share/doc/qwt/html/qwt__scale__div_8h-source.html +share/doc/qwt/html/qwt__scale__draw_8cpp-source.html +share/doc/qwt/html/qwt__scale__draw_8h-source.html +share/doc/qwt/html/qwt__scale__engine_8cpp-source.html +share/doc/qwt/html/qwt__scale__engine_8h-source.html +share/doc/qwt/html/qwt__scale__map_8cpp-source.html +share/doc/qwt/html/qwt__scale__map_8h-source.html +share/doc/qwt/html/qwt__scale__widget_8cpp-source.html +share/doc/qwt/html/qwt__scale__widget_8h-source.html +share/doc/qwt/html/qwt__slider_8cpp-source.html +share/doc/qwt/html/qwt__slider_8h-source.html +share/doc/qwt/html/qwt__spline_8cpp-source.html +share/doc/qwt/html/qwt__spline_8h-source.html +share/doc/qwt/html/qwt__symbol_8cpp-source.html +share/doc/qwt/html/qwt__symbol_8h-source.html +share/doc/qwt/html/qwt__text_8cpp-source.html +share/doc/qwt/html/qwt__text_8h-source.html +share/doc/qwt/html/qwt__text__engine_8cpp-source.html +share/doc/qwt/html/qwt__text__engine_8h-source.html +share/doc/qwt/html/qwt__text__label_8cpp-source.html +share/doc/qwt/html/qwt__text__label_8h-source.html +share/doc/qwt/html/qwt__thermo_8cpp-source.html +share/doc/qwt/html/qwt__thermo_8h-source.html +share/doc/qwt/html/qwt__valuelist_8h-source.html +share/doc/qwt/html/qwt__wheel_8cpp-source.html +share/doc/qwt/html/qwt__wheel_8h-source.html +share/doc/qwt/html/qwtinstall.html +share/doc/qwt/html/qwtlicense.html +share/doc/qwt/html/radio.png +share/doc/qwt/html/scatterplot.png +share/doc/qwt/html/scatterscreenshots.html +share/doc/qwt/html/sinus.png +share/doc/qwt/html/sliders.png +share/doc/qwt/html/spectrogram1.png +share/doc/qwt/html/spectrogram2.png +share/doc/qwt/html/spectrogram3.png +share/doc/qwt/html/spectrogramscreenshots.html +share/doc/qwt/html/sysinfo.png +share/doc/qwt/html/tab_b.gif +share/doc/qwt/html/tab_l.gif +share/doc/qwt/html/tab_r.gif +share/doc/qwt/html/tabs.css +share/doc/qwt/html/todo.html +@mode ug+w +@group wsrc +share/examples/qwt/ +share/examples/qwt/Makefile +share/examples/qwt/README.OpenBSD +share/examples/qwt/bode/ +share/examples/qwt/bode/bode.cpp +share/examples/qwt/bode/bode.h +share/examples/qwt/bode/bode.pro +share/examples/qwt/bode/bode_plot.cpp +share/examples/qwt/bode/bode_plot.h +share/examples/qwt/bode/cplx.h +share/examples/qwt/bode/pixmaps.h +share/examples/qwt/cpuplot/ +share/examples/qwt/cpuplot/cpupiemarker.cpp +share/examples/qwt/cpuplot/cpupiemarker.h +share/examples/qwt/cpuplot/cpuplot.cpp +share/examples/qwt/cpuplot/cpuplot.h +share/examples/qwt/cpuplot/cpuplot.pro +share/examples/qwt/cpuplot/cpustat.cpp +share/examples/qwt/cpuplot/cpustat.h +share/examples/qwt/curvdemo1/ +share/examples/qwt/curvdemo1/curvdemo1.cpp +share/examples/qwt/curvdemo1/curvdemo1.pro +share/examples/qwt/curvdemo2/ +share/examples/qwt/curvdemo2/curvdemo2.cpp +share/examples/qwt/curvdemo2/curvdemo2.h +share/examples/qwt/curvdemo2/curvdemo2.pro +share/examples/qwt/data_plot/ +share/examples/qwt/data_plot/data_plot.cpp +share/examples/qwt/data_plot/data_plot.h +share/examples/qwt/data_plot/data_plot.pro +share/examples/qwt/data_plot/main.cpp +share/examples/qwt/dials/ +share/examples/qwt/dials/attitude_indicator.cpp +share/examples/qwt/dials/attitude_indicator.h +share/examples/qwt/dials/cockpit_grid.cpp +share/examples/qwt/dials/cockpit_grid.h +share/examples/qwt/dials/compass_grid.cpp +share/examples/qwt/dials/compass_grid.h +share/examples/qwt/dials/dials.cpp +share/examples/qwt/dials/dials.pro +share/examples/qwt/dials/speedo_meter.cpp +share/examples/qwt/dials/speedo_meter.h +share/examples/qwt/event_filter/ +share/examples/qwt/event_filter/README +share/examples/qwt/event_filter/canvaspicker.cpp +share/examples/qwt/event_filter/canvaspicker.h +share/examples/qwt/event_filter/colorbar.cpp +share/examples/qwt/event_filter/colorbar.h +share/examples/qwt/event_filter/event_filter.cpp +share/examples/qwt/event_filter/event_filter.pro +share/examples/qwt/event_filter/plot.cpp +share/examples/qwt/event_filter/plot.h +share/examples/qwt/event_filter/scalepicker.cpp +share/examples/qwt/event_filter/scalepicker.h +share/examples/qwt/examples.pri +share/examples/qwt/histogram/ +share/examples/qwt/histogram/histogram.pro +share/examples/qwt/histogram/histogram_item.cpp +share/examples/qwt/histogram/histogram_item.h +share/examples/qwt/histogram/main.cpp +share/examples/qwt/radio/ +share/examples/qwt/radio/ampfrm.cpp +share/examples/qwt/radio/ampfrm.h +share/examples/qwt/radio/radio.cpp +share/examples/qwt/radio/radio.h +share/examples/qwt/radio/radio.pro +share/examples/qwt/radio/tunerfrm.cpp +share/examples/qwt/radio/tunerfrm.h +share/examples/qwt/realtime_plot/ +share/examples/qwt/realtime_plot/README +share/examples/qwt/realtime_plot/clear.xpm +share/examples/qwt/realtime_plot/incrementalplot.cpp +share/examples/qwt/realtime_plot/incrementalplot.h +share/examples/qwt/realtime_plot/mainwindow.cpp +share/examples/qwt/realtime_plot/mainwindow.h +share/examples/qwt/realtime_plot/randomplot.cpp +share/examples/qwt/realtime_plot/randomplot.h +share/examples/qwt/realtime_plot/realtime.cpp +share/examples/qwt/realtime_plot/realtime_plot.pro +share/examples/qwt/realtime_plot/scrollbar.cpp +share/examples/qwt/realtime_plot/scrollbar.h +share/examples/qwt/realtime_plot/scrollzoomer.cpp +share/examples/qwt/realtime_plot/scrollzoomer.h +share/examples/qwt/realtime_plot/start.xpm +share/examples/qwt/simple_plot/ +share/examples/qwt/simple_plot/simple.cpp +share/examples/qwt/simple_plot/simple_plot.pro +share/examples/qwt/sliders/ +share/examples/qwt/sliders/sliders.cpp +share/examples/qwt/sliders/sliders.h +share/examples/qwt/sliders/sliders.pro +share/examples/qwt/spectrogram/ +share/examples/qwt/spectrogram/main.cpp +share/examples/qwt/spectrogram/plot.cpp +share/examples/qwt/spectrogram/plot.h +share/examples/qwt/spectrogram/spectrogram.pro +share/examples/qwt/sysinfo/ +share/examples/qwt/sysinfo/sysinfo.cpp +share/examples/qwt/sysinfo/sysinfo.pro