Update to 5.2.1 - Remove myself as maintainer - VAR= -> VAR = - Remove USE_GROFF - Remove gettext MODULE - Remove LIB_DEPENDS line (included with qt4 MODULE) - Fix WANTLIB - SUBST_CMD - Major lib bump (removed some functions)
ok? Index: Makefile =================================================================== RCS file: /cvs/ports/x11/qwt/Makefile,v retrieving revision 1.7 diff -u -p -r1.7 Makefile --- Makefile 19 Oct 2010 08:13:59 -0000 1.7 +++ Makefile 26 Oct 2010 11:47:09 -0000 @@ -3,17 +3,14 @@ SHARED_ONLY= Yes COMMENT= Qt Widgets for Technical Applications -DISTNAME= qwt-5.0.2 -REVISION= 2 -SHARED_LIBS= qwt 5.0 +DISTNAME= qwt-5.2.1 +SHARED_LIBS= qwt 6.0 CATEGORIES= x11 EXTRACT_SUFX= .tar.bz2 HOMEPAGE= http://qwt.sourceforge.net/ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qwt/} -MAINTAINER= Michael Erdely <[email protected]> - # Qwt License, Version 1.0 # http://qwt.sourceforge.net/qwtlicense.html PERMIT_PACKAGE_CDROM= Yes @@ -21,47 +18,38 @@ PERMIT_PACKAGE_FTP= Yes PERMIT_DISTFILES_CDROM= Yes PERMIT_DISTFILES_FTP= Yes -MODULES= devel/gettext \ - x11/qt4 +MODULES = x11/qt4 NO_REGRESS= Yes USE_GMAKE= Yes -USE_GROFF = Yes MAKE_FLAGS= LIBqwt_VERSION=${LIBqwt_VERSION} -WANTLIB += ICE SM X11 Xext Xi Xinerama Xrender fontconfig -WANTLIB += freetype glib-2.0 gthread-2.0 m png z expat gobject-2.0 -WANTLIB += QtDesigner QtGui QtScript QtXml - -LIB_DEPENDS= ::x11/qt4 +WANTLIB += m stdc++ QtDesigner QtGui QtScript QtXml # 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 +SUBST_VARS= WRKINST EXAMPLES + 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},' \ + @${SUBST_CMD} ${WRKSRC}/qwtconfig.pri ${WRKSRC}/designer/designer.pro \ ${WRKSRC}/examples/examples.pri + @${SUBST_CMD} -c ${FILESDIR}/README.OpenBSD ${WRKBUILD}/README.OpenBSD + @${SUBST_CMD} -c ${FILESDIR}/Makefile.examples \ + ${WRKSRC}/examples/Makefile do-configure: - cd ${WRKSRC} && qmake4 + @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/ + ${PREFIX}/share/examples/qwt/Makefile ${INSTALL_DATA} ${WRKSRC}/examples/examples.pri \ ${PREFIX}/share/examples/qwt/ Index: distinfo =================================================================== RCS file: /cvs/ports/x11/qwt/distinfo,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 distinfo --- distinfo 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ distinfo 25 Oct 2010 17:39:00 -0000 @@ -1,5 +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 +MD5 (qwt-5.2.1.tar.bz2) = SllbjbDsOFaxF4NsHWDLJw== +RMD160 (qwt-5.2.1.tar.bz2) = KOB+oSMjpSFxGKOOGn1zCozlD+4= +SHA1 (qwt-5.2.1.tar.bz2) = id56kLft2tKYlHBie6oZ1Z40jfE= +SHA256 (qwt-5.2.1.tar.bz2) = 4ri7dVQEyz3JnmHz4tcmIVIZNIj1++iFJOtpjhGsVp8= +SIZE (qwt-5.2.1.tar.bz2) = 1926453 Index: files/Makefile.examples =================================================================== RCS file: /cvs/ports/x11/qwt/files/Makefile.examples,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 Makefile.examples --- files/Makefile.examples 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ files/Makefile.examples 26 Oct 2010 09:31:54 -0000 @@ -1,16 +1,16 @@ # $OpenBSD: Makefile.examples,v 1.1.1.1 2007/09/14 01:19:24 merdely Exp $ -EXAMPLES= !!EXAMPLES!! +EX_LIST= ${EXAMPLES} all: - @for I in ${EXAMPLES}; \ + @for I in ${EX_LIST}; \ do (cd $$I; echo "==> Building for $$I"; \ qmake4 $$I.pro && gmake; \ echo "";); \ done clean: - @for I in ${EXAMPLES}; \ + @for I in ${EX_LIST}; \ do (cd $$I; echo "==> Cleaning for $$I"; \ gmake distclean; \ rm -Rf obj; \ Index: files/README.OpenBSD =================================================================== RCS file: /cvs/ports/x11/qwt/files/README.OpenBSD,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 README.OpenBSD --- files/README.OpenBSD 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ files/README.OpenBSD 26 Oct 2010 09:34:00 -0000 @@ -1,9 +1,9 @@ Building QWT Examples on OpenBSD To build the qwt examples: - cd !!PREFIX!!/share/examples/qwt + cd ${TRUEPREFIX}/share/examples/qwt make A qwt example binary will be built in each subdirectory of -!!PREFIX!!/share/examples/qwt. +${TRUEPREFIX}/share/examples/qwt. Index: patches/patch-designer_designer_pro =================================================================== RCS file: /cvs/ports/x11/qwt/patches/patch-designer_designer_pro,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-designer_designer_pro --- patches/patch-designer_designer_pro 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ patches/patch-designer_designer_pro 26 Oct 2010 09:03:13 -0000 @@ -1,12 +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) { +--- designer/designer.pro.orig Sun Apr 11 05:55:06 2010 ++++ designer/designer.pro Tue Oct 26 04:56:10 2010 +@@ -126,7 +126,7 @@ contains(CONFIG, QwtDesigner) { RESOURCES += \ qwt_designer_plugin.qrc - target.path = $$[QT_INSTALL_PLUGINS]/designer -+ target.path = !!QTDIR!!/plugins/designer ++ target.path = ${WRKINST}${PREFIX}/lib/qt4/plugins/designer INSTALLS += target } - + } Index: patches/patch-examples_examples_pri =================================================================== RCS file: /cvs/ports/x11/qwt/patches/patch-examples_examples_pri,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-examples_examples_pri --- patches/patch-examples_examples_pri 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ patches/patch-examples_examples_pri 26 Oct 2010 07:03:37 -0000 @@ -1,20 +1,23 @@ $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 - ################################################################### +--- examples/examples.pri.orig Sun Apr 11 05:55:06 2010 ++++ examples/examples.pri Tue Oct 26 03:03:10 2010 +@@ -9,8 +9,6 @@ --include( ../../qwtconfig.pri ) + QWT_ROOT = ../.. + +-include( $${QWT_ROOT}/qwtconfig.pri ) - + SUFFIX_STR = + VVERSION = $$[QT_VERSION] + isEmpty(VVERSION) { +@@ -35,8 +33,8 @@ else { TEMPLATE = app MOC_DIR = moc - OBJECTS_DIR = obj --INCLUDEPATH += ../../src --DEPENDPATH += ../../src -+INCLUDEPATH += !!PREFIX!!/include -+DEPENDPATH += !!PREFIX!!/lib - - unix:LIBS += -L../../lib -lqwt +-INCLUDEPATH += $${QWT_ROOT}/src +-DEPENDPATH += $${QWT_ROOT}/src ++INCLUDEPATH += ${PREFIX}/include ++DEPENDPATH += ${PREFIX}/lib + OBJECTS_DIR = obj$${SUFFIX_STR} + DESTDIR = $${QWT_ROOT}/examples/bin$${SUFFIX_STR} Index: patches/patch-qwtconfig_pri =================================================================== RCS file: /cvs/ports/x11/qwt/patches/patch-qwtconfig_pri,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-qwtconfig_pri --- patches/patch-qwtconfig_pri 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ patches/patch-qwtconfig_pri 26 Oct 2010 09:03:35 -0000 @@ -1,16 +1,16 @@ $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 @@ - ###################################################################### +--- qwtconfig.pri.orig Sun Apr 11 05:55:06 2010 ++++ qwtconfig.pri Tue Oct 26 04:57:31 2010 +@@ -8,7 +8,7 @@ VER_PAT = 1 + VERSION = $${VER_MAJ}.$${VER_MIN}.$${VER_PAT} unix { -- INSTALLBASE = /usr/local/qwt-5.0.2 -+ INSTALLBASE = !!PREFIX!! +- INSTALLBASE = /usr/local/qwt-5.2.1 ++ INSTALLBASE = ${WRKINST}${PREFIX} } win32 { -@@ -12,7 +12,7 @@ win32 { +@@ -17,7 +17,7 @@ win32 { target.path = $$INSTALLBASE/lib headers.path = $$INSTALLBASE/include Index: patches/patch-src_src_pro =================================================================== RCS file: /cvs/ports/x11/qwt/patches/patch-src_src_pro,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 patch-src_src_pro --- patches/patch-src_src_pro 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ patches/patch-src_src_pro 26 Oct 2010 07:03:16 -0000 @@ -1,12 +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) { +--- src/src.pro.orig Sun Apr 11 05:55:06 2010 ++++ src/src.pro Tue Oct 26 02:59:04 2010 +@@ -222,7 +222,7 @@ contains(CONFIG, QwtWidgets) { headers.files = $$HEADERS - doc.files = ../doc/html + doc.files = $${QWT_ROOT}/doc/html $${QWT_ROOT}/doc/qwt-5.2.0.qch unix { -- doc.files += ../doc/man -+# doc.files += ../doc/man +- doc.files += $${QWT_ROOT}/doc/man ++ # doc.files += $${QWT_ROOT}/doc/man } INSTALLS = target headers doc Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/x11/qwt/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 PLIST --- pkg/PLIST 14 Sep 2007 01:19:24 -0000 1.1.1.1 +++ pkg/PLIST 26 Oct 2010 09:25:25 -0000 @@ -6,6 +6,7 @@ include/qwt_abstract_slider.h include/qwt_analog_clock.h include/qwt_array.h include/qwt_arrow_button.h +include/qwt_clipper.h include/qwt_color_map.h include/qwt_compass.h include/qwt_compass_rose.h @@ -25,6 +26,8 @@ include/qwt_knob.h include/qwt_layout_metrics.h include/qwt_legend.h include/qwt_legend_item.h +include/qwt_legend_itemmanager.h +include/qwt_magnifier.h include/qwt_math.h include/qwt_paint_buffer.h include/qwt_painter.h @@ -44,11 +47,12 @@ include/qwt_plot_panner.h include/qwt_plot_picker.h include/qwt_plot_printfilter.h include/qwt_plot_rasteritem.h +include/qwt_plot_rescaler.h +include/qwt_plot_scaleitem.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 @@ -74,6 +78,7 @@ lib/qt4/plugins/designer/libqwt_designer @man man/man3/QwtArrayData.3 @man man/man3/QwtArrowButton.3 @man man/man3/QwtCPointerData.3 +...@man man/man3/QwtClipper.3 @man man/man3/QwtColorMap.3 @man man/man3/QwtCompass.3 @man man/man3/QwtCompassMagnetNeedle.3 @@ -96,9 +101,11 @@ lib/qt4/plugins/designer/libqwt_designer @man man/man3/QwtKnob.3 @man man/man3/QwtLegend.3 @man man/man3/QwtLegendItem.3 +...@man man/man3/QwtLegendItemManager.3 @man man/man3/QwtLinearColorMap.3 @man man/man3/QwtLinearScaleEngine.3 @man man/man3/QwtLog10ScaleEngine.3 +...@man man/man3/QwtMagnifier.3 @man man/man3/QwtMathMLTextEngine.3 @man man/man3/QwtMetricsMap.3 @man man/man3/QwtPainter.3 @@ -124,12 +131,13 @@ lib/qt4/plugins/designer/libqwt_designer @man man/man3/QwtPlotPicker.3 @man man/man3/QwtPlotPrintFilter.3 @man man/man3/QwtPlotRasterItem.3 +...@man man/man3/QwtPlotRescaler.3 +...@man man/man3/QwtPlotScaleItem.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 @@ -157,7 +165,6 @@ lib/qt4/plugins/designer/libqwt_designer @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 @@ -174,33 +181,21 @@ share/doc/qwt/html/class_qwt_abstract_sc 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 @@ -208,12 +203,11 @@ share/doc/qwt/html/class_qwt_arrow_butto 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_clipper-members.html +share/doc/qwt/html/class_qwt_clipper.html 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 @@ -221,17 +215,11 @@ share/doc/qwt/html/class_qwt_color_map__ 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 @@ -242,17 +230,11 @@ share/doc/qwt/html/class_qwt_compass_ros 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 @@ -268,9 +250,6 @@ share/doc/qwt/html/class_qwt_data__inher 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 @@ -281,17 +260,11 @@ share/doc/qwt/html/class_qwt_dial_needle 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 @@ -317,9 +290,6 @@ share/doc/qwt/html/class_qwt_interval_da 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 @@ -327,41 +297,36 @@ share/doc/qwt/html/class_qwt_legend-memb 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_legend_item_manager-members.html +share/doc/qwt/html/class_qwt_legend_item_manager.html +share/doc/qwt/html/class_qwt_legend_item_manager__inherit__graph.map +share/doc/qwt/html/class_qwt_legend_item_manager__inherit__graph.md5 +share/doc/qwt/html/class_qwt_legend_item_manager__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_magnifier-members.html +share/doc/qwt/html/class_qwt_magnifier.html +share/doc/qwt/html/class_qwt_magnifier__inherit__graph.map +share/doc/qwt/html/class_qwt_magnifier__inherit__graph.md5 +share/doc/qwt/html/class_qwt_magnifier__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 @@ -369,9 +334,6 @@ share/doc/qwt/html/class_qwt_metrics_map 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 @@ -379,41 +341,26 @@ share/doc/qwt/html/class_qwt_panner__inh 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 @@ -424,25 +371,16 @@ share/doc/qwt/html/class_qwt_picker_mach 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 @@ -450,9 +388,6 @@ share/doc/qwt/html/class_qwt_plot_canvas 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 @@ -463,9 +398,6 @@ share/doc/qwt/html/class_qwt_plot_dict__ 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 @@ -478,27 +410,21 @@ share/doc/qwt/html/class_qwt_plot_layout 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_magnifier__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_magnifier__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_magnifier__inherit__graph.png 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 @@ -506,41 +432,33 @@ share/doc/qwt/html/class_qwt_plot_print_ 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_rescaler-members.html +share/doc/qwt/html/class_qwt_plot_rescaler.html +share/doc/qwt/html/class_qwt_plot_scale_item-members.html +share/doc/qwt/html/class_qwt_plot_scale_item.html +share/doc/qwt/html/class_qwt_plot_scale_item__inherit__graph.map +share/doc/qwt/html/class_qwt_plot_scale_item__inherit__graph.md5 +share/doc/qwt/html/class_qwt_plot_scale_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 @@ -549,21 +467,13 @@ share/doc/qwt/html/class_qwt_raster_data 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 @@ -573,9 +483,6 @@ share/doc/qwt/html/class_qwt_scale_div-m 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 @@ -586,26 +493,17 @@ share/doc/qwt/html/class_qwt_scale_engin 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 @@ -613,9 +511,6 @@ share/doc/qwt/html/class_qwt_spline-memb 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 @@ -635,17 +530,11 @@ share/doc/qwt/html/class_qwt_text_label_ 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 @@ -663,6 +552,7 @@ 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/form_3.png share/doc/qwt/html/formula.repository share/doc/qwt/html/functions.html share/doc/qwt/html/functions_0x62.html @@ -679,7 +569,6 @@ 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 @@ -706,7 +595,6 @@ share/doc/qwt/html/functions_func_0x6d.h 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 @@ -717,9 +605,6 @@ share/doc/qwt/html/functions_func_0x78.h 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 @@ -728,6 +613,7 @@ 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/index.qhp share/doc/qwt/html/inherit__graph__0.map share/doc/qwt/html/inherit__graph__0.md5 share/doc/qwt/html/inherit__graph__0.png @@ -824,6 +710,9 @@ share/doc/qwt/html/inherit__graph__36.pn 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__38.map +share/doc/qwt/html/inherit__graph__38.md5 +share/doc/qwt/html/inherit__graph__38.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 @@ -846,137 +735,76 @@ 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/qwt__abstract__scale_8h_source.html +share/doc/qwt/html/qwt__abstract__scale__draw_8h_source.html +share/doc/qwt/html/qwt__abstract__slider_8h_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_8h_source.html +share/doc/qwt/html/qwt__clipper_8h_source.html +share/doc/qwt/html/qwt__color__map_8h_source.html +share/doc/qwt/html/qwt__compass_8h_source.html +share/doc/qwt/html/qwt__compass__rose_8h_source.html +share/doc/qwt/html/qwt__counter_8h_source.html +share/doc/qwt/html/qwt__curve__fitter_8h_source.html +share/doc/qwt/html/qwt__data_8h_source.html +share/doc/qwt/html/qwt__dial_8h_source.html +share/doc/qwt/html/qwt__dial__needle_8h_source.html +share/doc/qwt/html/qwt__double__interval_8h_source.html +share/doc/qwt/html/qwt__double__range_8h_source.html +share/doc/qwt/html/qwt__double__rect_8h_source.html +share/doc/qwt/html/qwt__dyngrid__layout_8h_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_8h_source.html +share/doc/qwt/html/qwt__knob_8h_source.html +share/doc/qwt/html/qwt__layout__metrics_8h_source.html +share/doc/qwt/html/qwt__legend_8h_source.html +share/doc/qwt/html/qwt__legend__item_8h_source.html +share/doc/qwt/html/qwt__legend__itemmanager_8h_source.html +share/doc/qwt/html/qwt__magnifier_8h_source.html +share/doc/qwt/html/qwt__math_8h_source.html +share/doc/qwt/html/qwt__mathml__text__engine_8h_source.html +share/doc/qwt/html/qwt__paint__buffer_8h_source.html +share/doc/qwt/html/qwt__painter_8h_source.html +share/doc/qwt/html/qwt__panner_8h_source.html +share/doc/qwt/html/qwt__picker_8h_source.html +share/doc/qwt/html/qwt__picker__machine_8h_source.html +share/doc/qwt/html/qwt__plot_8h_source.html +share/doc/qwt/html/qwt__plot__canvas_8h_source.html +share/doc/qwt/html/qwt__plot__curve_8h_source.html +share/doc/qwt/html/qwt__plot__dict_8h_source.html +share/doc/qwt/html/qwt__plot__grid_8h_source.html +share/doc/qwt/html/qwt__plot__item_8h_source.html +share/doc/qwt/html/qwt__plot__layout_8h_source.html +share/doc/qwt/html/qwt__plot__magnifier_8h_source.html +share/doc/qwt/html/qwt__plot__marker_8h_source.html +share/doc/qwt/html/qwt__plot__panner_8h_source.html +share/doc/qwt/html/qwt__plot__picker_8h_source.html +share/doc/qwt/html/qwt__plot__printfilter_8h_source.html +share/doc/qwt/html/qwt__plot__rasteritem_8h_source.html +share/doc/qwt/html/qwt__plot__rescaler_8h_source.html +share/doc/qwt/html/qwt__plot__scaleitem_8h_source.html +share/doc/qwt/html/qwt__plot__spectrogram_8h_source.html +share/doc/qwt/html/qwt__plot__svgitem_8h_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_8h_source.html +share/doc/qwt/html/qwt__round__scale__draw_8h_source.html +share/doc/qwt/html/qwt__scale__div_8h_source.html +share/doc/qwt/html/qwt__scale__draw_8h_source.html +share/doc/qwt/html/qwt__scale__engine_8h_source.html +share/doc/qwt/html/qwt__scale__map_8h_source.html +share/doc/qwt/html/qwt__scale__widget_8h_source.html +share/doc/qwt/html/qwt__slider_8h_source.html +share/doc/qwt/html/qwt__spline_8h_source.html +share/doc/qwt/html/qwt__symbol_8h_source.html +share/doc/qwt/html/qwt__text_8h_source.html +share/doc/qwt/html/qwt__text__engine_8h_source.html +share/doc/qwt/html/qwt__text__label_8h_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_8h_source.html share/doc/qwt/html/qwtinstall.html share/doc/qwt/html/qwtlicense.html share/doc/qwt/html/radio.png @@ -993,7 +821,6 @@ 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/
