Hi,

same thing, needed for qgis3 otherwise there's a missing header. Added
the Qt5 FLAVOR, + a hack to ensure CXXFLQGS (and thus -std=c++11) was
passed to all build lines, inlcuding the ones where dependencies are
generated.

I know vadim had a WIP on github (here
https://github.com/jasperla/openbsd-wip/tree/master/x11/qwt) that failed
with qgis at the time, but it seems the current 2.18 branch is happy
with qwt6 so far  Only other consumers are x11/kde4/plasma-addons and
x11/kde4/smokeqt.

I ditched the convoluted bits that installed examples while here.

oks/feedback welcome.
? patches/patch-qwt_pro
Index: Makefile
===================================================================
RCS file: /cvs/ports/x11/qwt/Makefile,v
retrieving revision 1.23
diff -u -r1.23 Makefile
--- Makefile    26 Jul 2017 22:45:34 -0000      1.23
+++ Makefile    29 Oct 2017 11:32:46 -0000
@@ -1,11 +1,10 @@
 # $OpenBSD: Makefile,v 1.23 2017/07/26 22:45:34 sthen Exp $
 
 COMMENT =              Qt Widgets for Technical Applications
-DISTNAME =             qwt-5.2.1
-SHARED_LIBS =          qwt 6.0
+DISTNAME =             qwt-6.1.3
+SHARED_LIBS =          qwt 7.0
 CATEGORIES =           x11
 EXTRACT_SUFX =         .tar.bz2
-REVISION =             6
 
 HOMEPAGE =             http://qwt.sourceforge.net/
 MASTER_SITES =         ${MASTER_SITE_SOURCEFORGE:=qwt/}
@@ -14,37 +13,43 @@
 # http://qwt.sourceforge.net/qwtlicense.html
 PERMIT_PACKAGE_CDROM = Yes
 
-MODULES =              devel/qmake x11/qt4
+MODULES =              devel/qmake
 MODQMAKE_INSTALL_ROOT =
 NO_TEST =              Yes
 USE_GMAKE =            Yes
 
-WANTLIB +=     ICE QtDesigner QtGui QtScript QtXml SM X11 Xext Xi
-WANTLIB +=     Xinerama Xrender fontconfig freetype m pthread 
${COMPILER_LIBCXX}
+FLAVORS =      qt5
+FLAVOR ?=
 
-# 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
+.if ${FLAVOR:Mqt5}
+COMPILER =     base-clang ports-clang ports-gcc
+#CXXFLAGS=-std=c++11
+MODULES +=     x11/qt5
+QTVER =        qt5
+LIB_DEPENDS += x11/qt5/qtsvg \
+               x11/qt5/qttools
+WANTLIB +=     GL Qt5Concurrent Qt5Core Qt5Designer Qt5Gui Qt5OpenGL
+WANTLIB +=     Qt5PrintSupport Qt5Svg Qt5Widgets Qt5Xml
+.else
+MODULES +=     x11/qt4
+QTVER =        qt4
+WANTLIB +=     GL ICE QtDesigner QtGui QtOpenGL QtScript QtSvg QtXml SM X11 
Xext Xi
+WANTLIB +=     Xinerama Xrender fontconfig freetype pthread
+.endif
 
-SUBST_VARS =   WRKINST EXAMPLES
+WANTLIB +=     ${COMPILER_LIBCXX} m
+
+SUBST_VARS =   WRKINST QTVER
 
 pre-configure:
-       @${SUBST_CMD} ${WRKSRC}/qwtconfig.pri ${WRKSRC}/designer/designer.pro \
-               ${WRKSRC}/examples/examples.pri
+       ${SUBST_CMD} ${WRKSRC}/qwtconfig.pri
+
+post-configure:
+.if ${FLAVOR:Mqt5}
+       sed -i -e 's/@$$(CXX) -M/@$$(CXX) $$(CXXFLAGS) -M/' 
${WRKSRC}/build-amd64/{src,designer}/Makefile
+.endif
 
 post-install:
-       ${INSTALL_MAN} ${WRKSRC}/doc/man/man3/* ${PREFIX}/man/man3/
-       ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/qwt
-       ${SUBST_DATA} ${FILESDIR}/Makefile.examples \
-               ${PREFIX}/share/examples/qwt/Makefile
-       ${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
+       mv ${PREFIX}/share/doc/qwt/man/man3 ${PREFIX}/man/
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/x11/qwt/distinfo,v
retrieving revision 1.3
diff -u -r1.3 distinfo
--- distinfo    18 Jan 2015 03:16:00 -0000      1.3
+++ distinfo    29 Oct 2017 11:32:46 -0000
@@ -1,2 +1,2 @@
-SHA256 (qwt-5.2.1.tar.bz2) = 4ri7dVQEyz3JnmHz4tcmIVIZNIj1++iFJOtpjhGsVp8=
-SIZE (qwt-5.2.1.tar.bz2) = 1926453
+SHA256 (qwt-6.1.3.tar.bz2) = 8+zTTnKporCEIvtsjpCcp29M5fp3rK16KIO3AfQwlzM=
+SIZE (qwt-6.1.3.tar.bz2) = 4245614
Index: files/Makefile.examples
===================================================================
RCS file: files/Makefile.examples
diff -N files/Makefile.examples
--- files/Makefile.examples     7 Nov 2010 00:26:13 -0000       1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
-# $OpenBSD: Makefile.examples,v 1.2 2010/11/07 00:26:13 merdely Exp $
-
-EX_LIST=       ${EXAMPLES}
-
-all:
-       @for I in ${EX_LIST}; \
-         do (cd $$I; echo "==> Building for $$I"; \
-           qmake4 $$I.pro && env LOCALBASE=${LOCALBASE} gmake; \
-            echo "";); \
-       done
-
-clean:
-       @for I in ${EX_LIST}; \
-         do (cd $$I; echo "==> Cleaning for $$I"; \
-           gmake distclean; \
-           rm -Rf obj; \
-           rm -Rf moc; \
-           echo "";); \
-       done
-
Index: patches/patch-designer_designer_pro
===================================================================
RCS file: patches/patch-designer_designer_pro
diff -N patches/patch-designer_designer_pro
--- patches/patch-designer_designer_pro 7 Nov 2010 00:26:13 -0000       1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,12 +0,0 @@
-$OpenBSD: patch-designer_designer_pro,v 1.2 2010/11/07 00:26:13 merdely Exp $
---- 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 = ${WRKINST}${PREFIX}/lib/qt4/plugins/designer
-         INSTALLS += target
-     }
- }
Index: patches/patch-doc_man_man3_qwtinstall_3
===================================================================
RCS file: patches/patch-doc_man_man3_qwtinstall_3
diff -N patches/patch-doc_man_man3_qwtinstall_3
--- patches/patch-doc_man_man3_qwtinstall_3     5 Oct 2014 09:49:14 -0000       
1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,51 +0,0 @@
-$OpenBSD: patch-doc_man_man3_qwtinstall_3,v 1.1 2014/10/05 09:49:14 zhuk Exp $
-Fix the manual structure, unbreaking apropos output.
-ISSUE: https://sourceforge.net/p/qwt/patches/48/
---- doc/man/man3/qwtinstall.3.orig     Sun Apr 11 13:55:11 2010
-+++ doc/man/man3/qwtinstall.3  Sun Oct  5 13:38:46 2014
-@@ -1,9 +1,9 @@
--.TH "qwtinstall" 3 "11 Apr 2010" "Version 5.2.1" "Qwt User's Guide" \" -*- 
nroff -*-
-+.TH "QWTINSTALL" 3 "2010-04-11" "Version 5.2.1" "Qwt User's Guide" \" -*- 
nroff -*-
- .ad l
- .nh
- .SH NAME
--qwtinstall \- INSTALL 
--.PP
-+qwtinstall \- INSTALL
-+.SH DESCRIPTION
- .nf
- Introduction
- ============
-@@ -49,7 +49,7 @@ make install
- 
- If you have installed a shared library it's path has to be known to 
- the run-time linker of your operating system. On Linux systems read
--'man ldconfig' ( or google for it ). Another option is to use
-+\&'man ldconfig' ( or google for it ). Another option is to use
- the LD_LIBRARY_PATH (on some systems LIBPATH is used instead, on MacOSX
- it is called DYLD_LIBRARY_PATH) environment variable.
- 
-@@ -104,7 +104,7 @@ C) Win32/MinGW Qt4
- C1) Windows Shell
- 
- Start a Windows Shell, where Qt4 is initialized. ( F.e. with
--'Programs->Qt by Trolltech ...->Qt 4.x.x Command Prompt' ).
-+\&'Programs->Qt by Trolltech ...->Qt 4.x.x Command Prompt' ).
- 
- qmake qwt.pro
- make
-@@ -164,7 +164,7 @@ XCode project files instead of makefiles. So you might
- following:
- 
- qmake -spec macx-g++
--...
-+\&...
- 
- D) Qtopia Core
- 
-@@ -183,5 +183,3 @@ not done yet.
- 
- Good luck !
- .fi
--.PP
-- 
Index: patches/patch-doc_man_man3_qwtlicense_3
===================================================================
RCS file: patches/patch-doc_man_man3_qwtlicense_3
diff -N patches/patch-doc_man_man3_qwtlicense_3
--- patches/patch-doc_man_man3_qwtlicense_3     5 Oct 2014 09:49:14 -0000       
1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,45 +0,0 @@
-$OpenBSD: patch-doc_man_man3_qwtlicense_3,v 1.1 2014/10/05 09:49:14 zhuk Exp $
-Fix the manual structure, unbreaking apropos output.
-ISSUE: https://sourceforge.net/p/qwt/patches/48/
---- doc/man/man3/qwtlicense.3.orig     Sun Apr 11 13:55:11 2010
-+++ doc/man/man3/qwtlicense.3  Sun Oct  5 13:39:06 2014
-@@ -1,9 +1,9 @@
--.TH "qwtlicense" 3 "11 Apr 2010" "Version 5.2.1" "Qwt User's Guide" \" -*- 
nroff -*-
-+.TH "QWTLICENSE" 3 "2010-04-11" "Version 5.2.1" "Qwt User's Guide" \" -*- 
nroff -*-
- .ad l
- .nh
- .SH NAME
--qwtlicense \- Qwt License, Version 1.0 
--.PP
-+qwtlicense \- Qwt License, Version 1.0
-+.SH DESCRIPTION
- .nf
-                              Qwt License
-                            Version 1.0, January 1, 2003
-@@ -154,7 +154,7 @@ that program using a modified version of the Library.
- 
-   The precise terms and conditions for copying, distribution and
- modification follow.  Pay close attention to the difference between a
--'work based on the library' and a 'work that uses the library'.  The
-+\&'work based on the library' and a 'work that uses the library'.  The
- former contains code derived from the library, whereas the latter must
- be combined with the library in order to run.
- 
-@@ -463,7 +463,7 @@ but may differ in detail to address new problems or co
- 
- Each version is given a distinguishing version number.  If the Library
- specifies a version number of this License which applies to it and
--'any later version', you have the option of following the terms and
-+\&'any later version', you have the option of following the terms and
- conditions either of that version or of any later version published by
- the Free Software Foundation.  If the Library does not specify a
- license version number, you may choose any version ever published by
-@@ -514,7 +514,7 @@ ordinary General Public License).
-   To apply these terms, attach the following notices to the library.  It is
- safest to attach them to the start of each source file to most effectively
- convey the exclusion of warranty; and each file should have at least the
--'copyright' line and a pointer to where the full notice is found.
-+\&'copyright' line and a pointer to where the full notice is found.
- 
-     <one line to give the library's name and a brief idea of what it does.>
-     Copyright (C) <year>  <name of author>
Index: patches/patch-examples_examples_pri
===================================================================
RCS file: patches/patch-examples_examples_pri
diff -N patches/patch-examples_examples_pri
--- patches/patch-examples_examples_pri 7 Nov 2010 00:26:14 -0000       1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-$OpenBSD: patch-examples_examples_pri,v 1.2 2010/11/07 00:26:14 merdely Exp $
---- 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 @@
- 
- QWT_ROOT = ../..
- 
--include( $${QWT_ROOT}/qwtconfig.pri )
--
- SUFFIX_STR =
- VVERSION = $$[QT_VERSION]
- isEmpty(VVERSION) {
-@@ -35,8 +33,8 @@ else {
- TEMPLATE     = app
- 
- MOC_DIR      = moc
--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.2
diff -u -r1.2 patch-qwtconfig_pri
--- patches/patch-qwtconfig_pri 7 Nov 2010 00:26:14 -0000       1.2
+++ patches/patch-qwtconfig_pri 29 Oct 2017 11:32:46 -0000
@@ -1,21 +1,41 @@
-$OpenBSD: patch-qwtconfig_pri,v 1.2 2010/11/07 00:26:14 merdely Exp $
---- 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}
+$OpenBSD$
+
+Index: qwtconfig.pri
+--- qwtconfig.pri.orig
++++ qwtconfig.pri
+@@ -19,7 +19,7 @@ QWT_VERSION      = $${QWT_VER_MAJ}.$${QWT_VER_MIN}.$${
+ QWT_INSTALL_PREFIX = $$[QT_INSTALL_PREFIX]
  
  unix {
--    INSTALLBASE    = /usr/local/qwt-5.2.1
-+    INSTALLBASE    = ${WRKINST}${PREFIX}
+-    QWT_INSTALL_PREFIX    = /usr/local/qwt-$$QWT_VERSION
++    QWT_INSTALL_PREFIX    = ${WRKINST}/${PREFIX}
+     # QWT_INSTALL_PREFIX = /usr/local/qwt-$$QWT_VERSION-qt-$$QT_VERSION
  }
  
- win32 {
-@@ -17,7 +17,7 @@ win32 {
+@@ -28,7 +28,7 @@ win32 {
+     # QWT_INSTALL_PREFIX = C:/Qwt-$$QWT_VERSION-qt-$$QT_VERSION
+ }
+ 
+-QWT_INSTALL_DOCS      = $${QWT_INSTALL_PREFIX}/doc
++QWT_INSTALL_DOCS      = $${QWT_INSTALL_PREFIX}/share/doc/qwt
+ QWT_INSTALL_HEADERS   = $${QWT_INSTALL_PREFIX}/include
+ QWT_INSTALL_LIBS      = $${QWT_INSTALL_PREFIX}/lib
+ 
+@@ -42,7 +42,7 @@ QWT_INSTALL_LIBS      = $${QWT_INSTALL_PREFIX}/lib
+ # runtime environment of designer/creator.
+ ######################################################################
+ 
+-QWT_INSTALL_PLUGINS   = $${QWT_INSTALL_PREFIX}/plugins/designer
++QWT_INSTALL_PLUGINS   = $${QWT_INSTALL_PREFIX}/lib/${QTVER}/plugins/designer
+ 
+ # linux distributors often organize the Qt installation
+ # their way and QT_INSTALL_PREFIX doesn't offer a good
+@@ -63,7 +63,7 @@ QWT_INSTALL_PLUGINS   = $${QWT_INSTALL_PREFIX}/plugins
+ # with every Qt upgrade. 
+ ######################################################################
  
- target.path    = $$INSTALLBASE/lib
- headers.path   = $$INSTALLBASE/include
--doc.path       = $$INSTALLBASE/doc
-+doc.path       = $$INSTALLBASE/share/doc/qwt
+-QWT_INSTALL_FEATURES  = $${QWT_INSTALL_PREFIX}/features
++QWT_INSTALL_FEATURES  = $${QWT_INSTALL_PREFIX}/lib/${QTVER}/mkspecs/features
+ # QWT_INSTALL_FEATURES  = $$[QT_INSTALL_PREFIX]/features
  
  ######################################################################
- # qmake internal options
Index: patches/patch-src_src_pro
===================================================================
RCS file: patches/patch-src_src_pro
diff -N patches/patch-src_src_pro
--- patches/patch-src_src_pro   7 Nov 2010 00:26:14 -0000       1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,12 +0,0 @@
-$OpenBSD: patch-src_src_pro,v 1.2 2010/11/07 00:26:14 merdely Exp $
---- 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      = $${QWT_ROOT}/doc/html $${QWT_ROOT}/doc/qwt-5.2.0.qch
- unix {
--    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.2
diff -u -r1.2 PLIST
--- pkg/PLIST   7 Nov 2010 00:26:14 -0000       1.2
+++ pkg/PLIST   29 Oct 2017 11:32:46 -0000
@@ -1,209 +1,323 @@
-@comment $OpenBSD: PLIST,v 1.2 2010/11/07 00:26:14 merdely Exp $
+@comment $OpenBSD$
 include/qwt.h
+include/qwt_abstract_legend.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_clipper.h
 include/qwt_color_map.h
+include/qwt_column_symbol.h
 include/qwt_compass.h
 include/qwt_compass_rose.h
+include/qwt_compat.h
 include/qwt_counter.h
 include/qwt_curve_fitter.h
-include/qwt_data.h
+include/qwt_date.h
+include/qwt_date_scale_draw.h
+include/qwt_date_scale_engine.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_graphic.h
+include/qwt_interval.h
+include/qwt_interval_symbol.h
 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_legend_data.h
+include/qwt_legend_label.h
 include/qwt_magnifier.h
 include/qwt_math.h
-include/qwt_paint_buffer.h
+include/qwt_matrix_raster_data.h
+include/qwt_null_paintdevice.h
 include/qwt_painter.h
+include/qwt_painter_command.h
 include/qwt_panner.h
 include/qwt_picker.h
 include/qwt_picker_machine.h
+include/qwt_pixel_matrix.h
 include/qwt_plot.h
+include/qwt_plot_abstract_barchart.h
+include/qwt_plot_barchart.h
 include/qwt_plot_canvas.h
 include/qwt_plot_curve.h
 include/qwt_plot_dict.h
+include/qwt_plot_directpainter.h
+include/qwt_plot_glcanvas.h
 include/qwt_plot_grid.h
+include/qwt_plot_histogram.h
+include/qwt_plot_intervalcurve.h
 include/qwt_plot_item.h
 include/qwt_plot_layout.h
+include/qwt_plot_legenditem.h
 include/qwt_plot_magnifier.h
 include/qwt_plot_marker.h
+include/qwt_plot_multi_barchart.h
 include/qwt_plot_panner.h
 include/qwt_plot_picker.h
-include/qwt_plot_printfilter.h
 include/qwt_plot_rasteritem.h
+include/qwt_plot_renderer.h
 include/qwt_plot_rescaler.h
 include/qwt_plot_scaleitem.h
+include/qwt_plot_seriesitem.h
+include/qwt_plot_shapeitem.h
+include/qwt_plot_spectrocurve.h
 include/qwt_plot_spectrogram.h
+include/qwt_plot_svgitem.h
+include/qwt_plot_textlabel.h
+include/qwt_plot_tradingcurve.h
+include/qwt_plot_zoneitem.h
 include/qwt_plot_zoomer.h
-include/qwt_polygon.h
+include/qwt_point_3d.h
+include/qwt_point_data.h
+include/qwt_point_mapper.h
+include/qwt_point_polar.h
 include/qwt_raster_data.h
 include/qwt_round_scale_draw.h
+include/qwt_samples.h
+include/qwt_sampling_thread.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_series_data.h
+include/qwt_series_store.h
 include/qwt_slider.h
 include/qwt_spline.h
 include/qwt_symbol.h
+include/qwt_system_clock.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_transform.h
 include/qwt_wheel.h
+include/qwt_widget_overlay.h
 @lib lib/libqwt.so.${LIBqwt_VERSION}
-lib/qt4/plugins/designer/libqwt_designer_plugin.so
+lib/${QTVER}/mkspecs/features/qwt.prf
+lib/${QTVER}/mkspecs/features/qwtconfig.pri
+lib/${QTVER}/mkspecs/features/qwtfunctions.pri
+lib/${QTVER}/plugins/designer/
+lib/${QTVER}/plugins/designer/libqwt_designer_plugin.so
+@man man/man3/QwtAbstractLegend.3
 @man man/man3/QwtAbstractScale.3
 @man man/man3/QwtAbstractScaleDraw.3
+@man man/man3/QwtAbstractSeriesStore.3
 @man man/man3/QwtAbstractSlider.3
 @man man/man3/QwtAlphaColorMap.3
 @man man/man3/QwtAnalogClock.3
-@man man/man3/QwtArrayData.3
+@man man/man3/QwtArraySeriesData.3
 @man man/man3/QwtArrowButton.3
 @man man/man3/QwtCPointerData.3
 @man man/man3/QwtClipper.3
 @man man/man3/QwtColorMap.3
+@man man/man3/QwtColumnRect.3
+@man man/man3/QwtColumnSymbol.3
 @man man/man3/QwtCompass.3
 @man man/man3/QwtCompassMagnetNeedle.3
 @man man/man3/QwtCompassRose.3
+@man man/man3/QwtCompassScaleDraw.3
 @man man/man3/QwtCompassWindArrow.3
 @man man/man3/QwtCounter.3
 @man man/man3/QwtCurveFitter.3
-@man man/man3/QwtData.3
+@man man/man3/QwtDate.3
+@man man/man3/QwtDateScaleDraw.3
+@man man/man3/QwtDateScaleEngine.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/QwtGraphic.3
+@man man/man3/QwtInterval.3
+@man man/man3/QwtIntervalSample.3
+@man man/man3/QwtIntervalSeriesData.3
+@man man/man3/QwtIntervalSymbol.3
 @man man/man3/QwtKnob.3
 @man man/man3/QwtLegend.3
-@man man/man3/QwtLegendItem.3
-@man man/man3/QwtLegendItemManager.3
+@man man/man3/QwtLegendData.3
+@man man/man3/QwtLegendLabel.3
 @man man/man3/QwtLinearColorMap.3
 @man man/man3/QwtLinearScaleEngine.3
-@man man/man3/QwtLog10ScaleEngine.3
+@man man/man3/QwtLogScaleEngine.3
+@man man/man3/QwtLogTransform.3
 @man man/man3/QwtMagnifier.3
 @man man/man3/QwtMathMLTextEngine.3
-@man man/man3/QwtMetricsMap.3
+@man man/man3/QwtMatrixRasterData.3
+@man man/man3/QwtNullPaintDevice.3
+@man man/man3/QwtNullTransform.3
+@man man/man3/QwtOHLCSample.3
 @man man/man3/QwtPainter.3
+@man man/man3/QwtPainterCommand.3
 @man man/man3/QwtPanner.3
 @man man/man3/QwtPicker.3
 @man man/man3/QwtPickerClickPointMachine.3
 @man man/man3/QwtPickerClickRectMachine.3
+@man man/man3/QwtPickerDragLineMachine.3
 @man man/man3/QwtPickerDragPointMachine.3
 @man man/man3/QwtPickerDragRectMachine.3
 @man man/man3/QwtPickerMachine.3
 @man man/man3/QwtPickerPolygonMachine.3
+@man man/man3/QwtPickerTrackerMachine.3
+@man man/man3/QwtPixelMatrix.3
 @man man/man3/QwtPlainTextEngine.3
 @man man/man3/QwtPlot.3
+@man man/man3/QwtPlotAbstractBarChart.3
+@man man/man3/QwtPlotBarChart.3
 @man man/man3/QwtPlotCanvas.3
 @man man/man3/QwtPlotCurve.3
 @man man/man3/QwtPlotDict.3
+@man man/man3/QwtPlotDirectPainter.3
+@man man/man3/QwtPlotGLCanvas.3
 @man man/man3/QwtPlotGrid.3
+@man man/man3/QwtPlotHistogram.3
+@man man/man3/QwtPlotIntervalCurve.3
 @man man/man3/QwtPlotItem.3
 @man man/man3/QwtPlotLayout.3
+@man man/man3/QwtPlotLegendItem.3
 @man man/man3/QwtPlotMagnifier.3
 @man man/man3/QwtPlotMarker.3
+@man man/man3/QwtPlotMultiBarChart.3
 @man man/man3/QwtPlotPanner.3
 @man man/man3/QwtPlotPicker.3
-@man man/man3/QwtPlotPrintFilter.3
 @man man/man3/QwtPlotRasterItem.3
+@man man/man3/QwtPlotRenderer.3
 @man man/man3/QwtPlotRescaler.3
 @man man/man3/QwtPlotScaleItem.3
+@man man/man3/QwtPlotSeriesItem.3
+@man man/man3/QwtPlotShapeItem.3
+@man man/man3/QwtPlotSpectroCurve.3
 @man man/man3/QwtPlotSpectrogram.3
 @man man/man3/QwtPlotSvgItem.3
+@man man/man3/QwtPlotTextLabel.3
+@man man/man3/QwtPlotTradingCurve.3
+@man man/man3/QwtPlotZoneItem.3
 @man man/man3/QwtPlotZoomer.3
-@man man/man3/QwtPolygonFData.3
+@man man/man3/QwtPoint3D.3
+@man man/man3/QwtPoint3DSeriesData.3
+@man man/man3/QwtPointArrayData.3
+@man man/man3/QwtPointMapper.3
+@man man/man3/QwtPointPolar.3
+@man man/man3/QwtPointSeriesData.3
+@man man/man3/QwtPowerTransform.3
 @man man/man3/QwtRasterData.3
 @man man/man3/QwtRichTextEngine.3
 @man man/man3/QwtRoundScaleDraw.3
+@man man/man3/QwtSamplingThread.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/QwtSeriesData.3
+@man man/man3/QwtSeriesStore.3
+@man man/man3/QwtSetSample.3
+@man man/man3/QwtSetSeriesData.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/QwtSyntheticPointData.3
+@man man/man3/QwtSystemClock.3
 @man man/man3/QwtText.3
 @man man/man3/QwtTextEngine.3
 @man man/man3/QwtTextLabel.3
 @man man/man3/QwtThermo.3
+@man man/man3/QwtTradingChartData.3
+@man man/man3/QwtTransform.3
+@man man/man3/QwtWeedingCurveFitter.3
 @man man/man3/QwtWheel.3
+@man man/man3/QwtWidgetOverlay.3
+@man man/man3/_tmp_qwt-6.1.3-tmp_src_.3
+@man man/man3/_tmp_qwt-6.1.3-tmp_textengines_.3
+@man man/man3/_tmp_qwt-6.1.3-tmp_textengines_mathml_.3
+@man man/man3/barchartscreenshots.3
 @man man/man3/controlscreenshots.3
 @man man/man3/curvescreenshots.3
-@man man/man3/deprecated.3
-@man man/man3/histogramscreenshots.3
+@man man/man3/otherscreenshots.3
+@man man/man3/qwtchangelog.3
 @man man/man3/qwtinstall.3
 @man man/man3/qwtlicense.3
-@man man/man3/scatterscreenshots.3
 @man man/man3/spectrogramscreenshots.3
-share/doc/pkg-readmes/${FULLPKGNAME}
 share/doc/qwt/
 share/doc/qwt/html/
 share/doc/qwt/html/analogclock.png
 share/doc/qwt/html/annotated.html
+share/doc/qwt/html/annotated_dup.js
+share/doc/qwt/html/arrowdown.png
+share/doc/qwt/html/arrowright.png
+share/doc/qwt/html/barchart-grouped-600x400.png
+share/doc/qwt/html/barchart-stacked-600x400.png
+share/doc/qwt/html/barchartscreenshots.html
+share/doc/qwt/html/bc_s.png
+share/doc/qwt/html/bdwn.png
+share/doc/qwt/html/bode-blue-600x400.png
+share/doc/qwt/html/bode-rosy-600x400.png
+share/doc/qwt/html/class_qwt_abstract_legend-members.html
+share/doc/qwt/html/class_qwt_abstract_legend.html
+share/doc/qwt/html/class_qwt_abstract_legend.js
+share/doc/qwt/html/class_qwt_abstract_legend__inherit__graph.map
+share/doc/qwt/html/class_qwt_abstract_legend__inherit__graph.md5
+share/doc/qwt/html/class_qwt_abstract_legend__inherit__graph.png
 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.js
 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.js
 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_series_store-members.html
+share/doc/qwt/html/class_qwt_abstract_series_store.html
+share/doc/qwt/html/class_qwt_abstract_series_store.js
+share/doc/qwt/html/class_qwt_abstract_series_store__inherit__graph.map
+share/doc/qwt/html/class_qwt_abstract_series_store__inherit__graph.md5
+share/doc/qwt/html/class_qwt_abstract_series_store__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.js
 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.js
 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.js
 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__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_array_series_data-members.html
+share/doc/qwt/html/class_qwt_array_series_data.html
+share/doc/qwt/html/class_qwt_array_series_data.js
+share/doc/qwt/html/class_qwt_array_series_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_array_series_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_array_series_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_arrow_button.js
+share/doc/qwt/html/class_qwt_arrow_button__inherit__graph.map
+share/doc/qwt/html/class_qwt_arrow_button__inherit__graph.md5
+share/doc/qwt/html/class_qwt_arrow_button__inherit__graph.png
 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.js
 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
@@ -211,714 +325,1345 @@
 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.js
 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_column_rect-members.html
+share/doc/qwt/html/class_qwt_column_rect.html
+share/doc/qwt/html/class_qwt_column_rect.js
+share/doc/qwt/html/class_qwt_column_symbol-members.html
+share/doc/qwt/html/class_qwt_column_symbol.html
+share/doc/qwt/html/class_qwt_column_symbol.js
 share/doc/qwt/html/class_qwt_compass-members.html
 share/doc/qwt/html/class_qwt_compass.html
+share/doc/qwt/html/class_qwt_compass.js
 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.js
 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.js
 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_scale_draw-members.html
+share/doc/qwt/html/class_qwt_compass_scale_draw.html
+share/doc/qwt/html/class_qwt_compass_scale_draw.js
+share/doc/qwt/html/class_qwt_compass_scale_draw__inherit__graph.map
+share/doc/qwt/html/class_qwt_compass_scale_draw__inherit__graph.md5
+share/doc/qwt/html/class_qwt_compass_scale_draw__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.js
 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.js
 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.js
 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_date-members.html
+share/doc/qwt/html/class_qwt_date.html
+share/doc/qwt/html/class_qwt_date.js
+share/doc/qwt/html/class_qwt_date_scale_draw-members.html
+share/doc/qwt/html/class_qwt_date_scale_draw.html
+share/doc/qwt/html/class_qwt_date_scale_draw.js
+share/doc/qwt/html/class_qwt_date_scale_draw__inherit__graph.map
+share/doc/qwt/html/class_qwt_date_scale_draw__inherit__graph.md5
+share/doc/qwt/html/class_qwt_date_scale_draw__inherit__graph.png
+share/doc/qwt/html/class_qwt_date_scale_engine-members.html
+share/doc/qwt/html/class_qwt_date_scale_engine.html
+share/doc/qwt/html/class_qwt_date_scale_engine.js
+share/doc/qwt/html/class_qwt_date_scale_engine__inherit__graph.map
+share/doc/qwt/html/class_qwt_date_scale_engine__inherit__graph.md5
+share/doc/qwt/html/class_qwt_date_scale_engine__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.js
 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.js
 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__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.js
 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_dyn_grid_layout.js
+share/doc/qwt/html/class_qwt_dyn_grid_layout__inherit__graph.map
+share/doc/qwt/html/class_qwt_dyn_grid_layout__inherit__graph.md5
+share/doc/qwt/html/class_qwt_dyn_grid_layout__inherit__graph.png
 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.js
 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_key_pattern.js
 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_1_1_mouse_pattern.js
 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_graphic-members.html
+share/doc/qwt/html/class_qwt_graphic.html
+share/doc/qwt/html/class_qwt_graphic.js
+share/doc/qwt/html/class_qwt_graphic__inherit__graph.map
+share/doc/qwt/html/class_qwt_graphic__inherit__graph.md5
+share/doc/qwt/html/class_qwt_graphic__inherit__graph.png
+share/doc/qwt/html/class_qwt_interval-members.html
+share/doc/qwt/html/class_qwt_interval.html
+share/doc/qwt/html/class_qwt_interval.js
+share/doc/qwt/html/class_qwt_interval_sample-members.html
+share/doc/qwt/html/class_qwt_interval_sample.html
+share/doc/qwt/html/class_qwt_interval_sample.js
+share/doc/qwt/html/class_qwt_interval_series_data-members.html
+share/doc/qwt/html/class_qwt_interval_series_data.html
+share/doc/qwt/html/class_qwt_interval_series_data.js
+share/doc/qwt/html/class_qwt_interval_series_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_interval_series_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_interval_series_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_interval_symbol-members.html
+share/doc/qwt/html/class_qwt_interval_symbol.html
+share/doc/qwt/html/class_qwt_interval_symbol.js
 share/doc/qwt/html/class_qwt_knob-members.html
 share/doc/qwt/html/class_qwt_knob.html
+share/doc/qwt/html/class_qwt_knob.js
 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__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_legend.js
+share/doc/qwt/html/class_qwt_legend__inherit__graph.map
+share/doc/qwt/html/class_qwt_legend__inherit__graph.md5
+share/doc/qwt/html/class_qwt_legend__inherit__graph.png
+share/doc/qwt/html/class_qwt_legend_data-members.html
+share/doc/qwt/html/class_qwt_legend_data.html
+share/doc/qwt/html/class_qwt_legend_data.js
+share/doc/qwt/html/class_qwt_legend_label-members.html
+share/doc/qwt/html/class_qwt_legend_label.html
+share/doc/qwt/html/class_qwt_legend_label.js
+share/doc/qwt/html/class_qwt_legend_label__inherit__graph.map
+share/doc/qwt/html/class_qwt_legend_label__inherit__graph.md5
+share/doc/qwt/html/class_qwt_legend_label__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.js
 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.js
 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__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_log_scale_engine-members.html
+share/doc/qwt/html/class_qwt_log_scale_engine.html
+share/doc/qwt/html/class_qwt_log_scale_engine.js
+share/doc/qwt/html/class_qwt_log_scale_engine__inherit__graph.map
+share/doc/qwt/html/class_qwt_log_scale_engine__inherit__graph.md5
+share/doc/qwt/html/class_qwt_log_scale_engine__inherit__graph.png
+share/doc/qwt/html/class_qwt_log_transform-members.html
+share/doc/qwt/html/class_qwt_log_transform.html
+share/doc/qwt/html/class_qwt_log_transform.js
+share/doc/qwt/html/class_qwt_log_transform__inherit__graph.map
+share/doc/qwt/html/class_qwt_log_transform__inherit__graph.md5
+share/doc/qwt/html/class_qwt_log_transform__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.js
 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.js
 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_matrix_raster_data-members.html
+share/doc/qwt/html/class_qwt_matrix_raster_data.html
+share/doc/qwt/html/class_qwt_matrix_raster_data.js
+share/doc/qwt/html/class_qwt_matrix_raster_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_matrix_raster_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_matrix_raster_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_null_paint_device-members.html
+share/doc/qwt/html/class_qwt_null_paint_device.html
+share/doc/qwt/html/class_qwt_null_paint_device.js
+share/doc/qwt/html/class_qwt_null_paint_device__inherit__graph.map
+share/doc/qwt/html/class_qwt_null_paint_device__inherit__graph.md5
+share/doc/qwt/html/class_qwt_null_paint_device__inherit__graph.png
+share/doc/qwt/html/class_qwt_null_transform-members.html
+share/doc/qwt/html/class_qwt_null_transform.html
+share/doc/qwt/html/class_qwt_null_transform.js
+share/doc/qwt/html/class_qwt_null_transform__inherit__graph.map
+share/doc/qwt/html/class_qwt_null_transform__inherit__graph.md5
+share/doc/qwt/html/class_qwt_null_transform__inherit__graph.png
+share/doc/qwt/html/class_qwt_o_h_l_c_sample-members.html
+share/doc/qwt/html/class_qwt_o_h_l_c_sample.html
+share/doc/qwt/html/class_qwt_o_h_l_c_sample.js
 share/doc/qwt/html/class_qwt_painter-members.html
 share/doc/qwt/html/class_qwt_painter.html
+share/doc/qwt/html/class_qwt_painter_command-members.html
+share/doc/qwt/html/class_qwt_painter_command.html
+share/doc/qwt/html/class_qwt_painter_command.js
 share/doc/qwt/html/class_qwt_panner-members.html
 share/doc/qwt/html/class_qwt_panner.html
+share/doc/qwt/html/class_qwt_panner.js
 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.js
 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.js
 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.js
 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_line_machine-members.html
+share/doc/qwt/html/class_qwt_picker_drag_line_machine.html
+share/doc/qwt/html/class_qwt_picker_drag_line_machine.js
+share/doc/qwt/html/class_qwt_picker_drag_line_machine__inherit__graph.map
+share/doc/qwt/html/class_qwt_picker_drag_line_machine__inherit__graph.md5
+share/doc/qwt/html/class_qwt_picker_drag_line_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.js
 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.js
 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.js
 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.js
 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_picker_tracker_machine-members.html
+share/doc/qwt/html/class_qwt_picker_tracker_machine.html
+share/doc/qwt/html/class_qwt_picker_tracker_machine.js
+share/doc/qwt/html/class_qwt_picker_tracker_machine__inherit__graph.map
+share/doc/qwt/html/class_qwt_picker_tracker_machine__inherit__graph.md5
+share/doc/qwt/html/class_qwt_picker_tracker_machine__inherit__graph.png
+share/doc/qwt/html/class_qwt_pixel_matrix-members.html
+share/doc/qwt/html/class_qwt_pixel_matrix.html
+share/doc/qwt/html/class_qwt_pixel_matrix.js
+share/doc/qwt/html/class_qwt_pixel_matrix__inherit__graph.map
+share/doc/qwt/html/class_qwt_pixel_matrix__inherit__graph.md5
+share/doc/qwt/html/class_qwt_pixel_matrix__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.js
 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.js
 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_abstract_bar_chart-members.html
+share/doc/qwt/html/class_qwt_plot_abstract_bar_chart.html
+share/doc/qwt/html/class_qwt_plot_abstract_bar_chart.js
+share/doc/qwt/html/class_qwt_plot_abstract_bar_chart__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_abstract_bar_chart__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_abstract_bar_chart__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_bar_chart-members.html
+share/doc/qwt/html/class_qwt_plot_bar_chart.html
+share/doc/qwt/html/class_qwt_plot_bar_chart.js
+share/doc/qwt/html/class_qwt_plot_bar_chart__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_bar_chart__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_bar_chart__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_canvas.js
+share/doc/qwt/html/class_qwt_plot_canvas__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_canvas__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_canvas__inherit__graph.png
 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.js
 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.js
 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_direct_painter-members.html
+share/doc/qwt/html/class_qwt_plot_direct_painter.html
+share/doc/qwt/html/class_qwt_plot_direct_painter.js
+share/doc/qwt/html/class_qwt_plot_direct_painter__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_direct_painter__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_direct_painter__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_g_l_canvas-members.html
+share/doc/qwt/html/class_qwt_plot_g_l_canvas.html
+share/doc/qwt/html/class_qwt_plot_g_l_canvas.js
+share/doc/qwt/html/class_qwt_plot_g_l_canvas__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_g_l_canvas__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_g_l_canvas__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.js
 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_histogram-members.html
+share/doc/qwt/html/class_qwt_plot_histogram.html
+share/doc/qwt/html/class_qwt_plot_histogram.js
+share/doc/qwt/html/class_qwt_plot_histogram__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_histogram__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_histogram__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_interval_curve-members.html
+share/doc/qwt/html/class_qwt_plot_interval_curve.html
+share/doc/qwt/html/class_qwt_plot_interval_curve.js
+share/doc/qwt/html/class_qwt_plot_interval_curve__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_interval_curve__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_interval_curve__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.js
 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_layout.js
+share/doc/qwt/html/class_qwt_plot_legend_item-members.html
+share/doc/qwt/html/class_qwt_plot_legend_item.html
+share/doc/qwt/html/class_qwt_plot_legend_item.js
+share/doc/qwt/html/class_qwt_plot_legend_item__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_legend_item__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_legend_item__inherit__graph.png
 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.js
 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.js
 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_multi_bar_chart-members.html
+share/doc/qwt/html/class_qwt_plot_multi_bar_chart.html
+share/doc/qwt/html/class_qwt_plot_multi_bar_chart.js
+share/doc/qwt/html/class_qwt_plot_multi_bar_chart__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_multi_bar_chart__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_multi_bar_chart__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.js
 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.js
 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.js
 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_renderer-members.html
+share/doc/qwt/html/class_qwt_plot_renderer.html
+share/doc/qwt/html/class_qwt_plot_renderer.js
+share/doc/qwt/html/class_qwt_plot_renderer__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_renderer__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_renderer__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_rescaler.js
+share/doc/qwt/html/class_qwt_plot_rescaler__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_rescaler__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_rescaler__inherit__graph.png
 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.js
 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_series_item-members.html
+share/doc/qwt/html/class_qwt_plot_series_item.html
+share/doc/qwt/html/class_qwt_plot_series_item.js
+share/doc/qwt/html/class_qwt_plot_series_item__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_series_item__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_series_item__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_shape_item-members.html
+share/doc/qwt/html/class_qwt_plot_shape_item.html
+share/doc/qwt/html/class_qwt_plot_shape_item.js
+share/doc/qwt/html/class_qwt_plot_shape_item__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_shape_item__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_shape_item__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_spectro_curve-members.html
+share/doc/qwt/html/class_qwt_plot_spectro_curve.html
+share/doc/qwt/html/class_qwt_plot_spectro_curve.js
+share/doc/qwt/html/class_qwt_plot_spectro_curve__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_spectro_curve__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_spectro_curve__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.js
 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.js
 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_text_label-members.html
+share/doc/qwt/html/class_qwt_plot_text_label.html
+share/doc/qwt/html/class_qwt_plot_text_label.js
+share/doc/qwt/html/class_qwt_plot_text_label__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_text_label__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_text_label__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_trading_curve-members.html
+share/doc/qwt/html/class_qwt_plot_trading_curve.html
+share/doc/qwt/html/class_qwt_plot_trading_curve.js
+share/doc/qwt/html/class_qwt_plot_trading_curve__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_trading_curve__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_trading_curve__inherit__graph.png
+share/doc/qwt/html/class_qwt_plot_zone_item-members.html
+share/doc/qwt/html/class_qwt_plot_zone_item.html
+share/doc/qwt/html/class_qwt_plot_zone_item.js
+share/doc/qwt/html/class_qwt_plot_zone_item__inherit__graph.map
+share/doc/qwt/html/class_qwt_plot_zone_item__inherit__graph.md5
+share/doc/qwt/html/class_qwt_plot_zone_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.js
 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__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_point3_d-members.html
+share/doc/qwt/html/class_qwt_point3_d.html
+share/doc/qwt/html/class_qwt_point3_d.js
+share/doc/qwt/html/class_qwt_point3_d_series_data-members.html
+share/doc/qwt/html/class_qwt_point3_d_series_data.html
+share/doc/qwt/html/class_qwt_point3_d_series_data.js
+share/doc/qwt/html/class_qwt_point3_d_series_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_point3_d_series_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_point3_d_series_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_point_array_data-members.html
+share/doc/qwt/html/class_qwt_point_array_data.html
+share/doc/qwt/html/class_qwt_point_array_data.js
+share/doc/qwt/html/class_qwt_point_array_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_point_array_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_point_array_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_point_mapper-members.html
+share/doc/qwt/html/class_qwt_point_mapper.html
+share/doc/qwt/html/class_qwt_point_mapper.js
+share/doc/qwt/html/class_qwt_point_polar-members.html
+share/doc/qwt/html/class_qwt_point_polar.html
+share/doc/qwt/html/class_qwt_point_polar.js
+share/doc/qwt/html/class_qwt_point_series_data-members.html
+share/doc/qwt/html/class_qwt_point_series_data.html
+share/doc/qwt/html/class_qwt_point_series_data.js
+share/doc/qwt/html/class_qwt_point_series_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_point_series_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_point_series_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_power_transform-members.html
+share/doc/qwt/html/class_qwt_power_transform.html
+share/doc/qwt/html/class_qwt_power_transform.js
+share/doc/qwt/html/class_qwt_power_transform__inherit__graph.map
+share/doc/qwt/html/class_qwt_power_transform__inherit__graph.md5
+share/doc/qwt/html/class_qwt_power_transform__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.js
 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_rich_text_engine-members.html
 share/doc/qwt/html/class_qwt_rich_text_engine.html
+share/doc/qwt/html/class_qwt_rich_text_engine.js
 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.js
 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_sampling_thread-members.html
+share/doc/qwt/html/class_qwt_sampling_thread.html
+share/doc/qwt/html/class_qwt_sampling_thread.js
+share/doc/qwt/html/class_qwt_sampling_thread__inherit__graph.map
+share/doc/qwt/html/class_qwt_sampling_thread__inherit__graph.md5
+share/doc/qwt/html/class_qwt_sampling_thread__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_div.js
 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.js
 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.js
 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_transformation-members.html
-share/doc/qwt/html/class_qwt_scale_transformation.html
+share/doc/qwt/html/class_qwt_scale_map.js
 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_scale_widget.js
+share/doc/qwt/html/class_qwt_scale_widget__inherit__graph.map
+share/doc/qwt/html/class_qwt_scale_widget__inherit__graph.md5
+share/doc/qwt/html/class_qwt_scale_widget__inherit__graph.png
+share/doc/qwt/html/class_qwt_series_data-members.html
+share/doc/qwt/html/class_qwt_series_data.html
+share/doc/qwt/html/class_qwt_series_data.js
+share/doc/qwt/html/class_qwt_series_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_series_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_series_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_series_store-members.html
+share/doc/qwt/html/class_qwt_series_store.html
+share/doc/qwt/html/class_qwt_series_store.js
+share/doc/qwt/html/class_qwt_series_store__inherit__graph.map
+share/doc/qwt/html/class_qwt_series_store__inherit__graph.md5
+share/doc/qwt/html/class_qwt_series_store__inherit__graph.png
+share/doc/qwt/html/class_qwt_set_sample-members.html
+share/doc/qwt/html/class_qwt_set_sample.html
+share/doc/qwt/html/class_qwt_set_sample.js
+share/doc/qwt/html/class_qwt_set_series_data-members.html
+share/doc/qwt/html/class_qwt_set_series_data.html
+share/doc/qwt/html/class_qwt_set_series_data.js
+share/doc/qwt/html/class_qwt_set_series_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_set_series_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_set_series_data__inherit__graph.png
 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.js
 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.js
 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.js
 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.js
 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_symbol.js
+share/doc/qwt/html/class_qwt_synthetic_point_data-members.html
+share/doc/qwt/html/class_qwt_synthetic_point_data.html
+share/doc/qwt/html/class_qwt_synthetic_point_data.js
+share/doc/qwt/html/class_qwt_synthetic_point_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_synthetic_point_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_synthetic_point_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_system_clock-members.html
+share/doc/qwt/html/class_qwt_system_clock.html
+share/doc/qwt/html/class_qwt_system_clock.js
 share/doc/qwt/html/class_qwt_text-members.html
 share/doc/qwt/html/class_qwt_text.html
+share/doc/qwt/html/class_qwt_text.js
 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.js
 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.js
 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.js
 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_trading_chart_data-members.html
+share/doc/qwt/html/class_qwt_trading_chart_data.html
+share/doc/qwt/html/class_qwt_trading_chart_data.js
+share/doc/qwt/html/class_qwt_trading_chart_data__inherit__graph.map
+share/doc/qwt/html/class_qwt_trading_chart_data__inherit__graph.md5
+share/doc/qwt/html/class_qwt_trading_chart_data__inherit__graph.png
+share/doc/qwt/html/class_qwt_transform-members.html
+share/doc/qwt/html/class_qwt_transform.html
+share/doc/qwt/html/class_qwt_transform.js
+share/doc/qwt/html/class_qwt_transform__inherit__graph.map
+share/doc/qwt/html/class_qwt_transform__inherit__graph.md5
+share/doc/qwt/html/class_qwt_transform__inherit__graph.png
+share/doc/qwt/html/class_qwt_weeding_curve_fitter-members.html
+share/doc/qwt/html/class_qwt_weeding_curve_fitter.html
+share/doc/qwt/html/class_qwt_weeding_curve_fitter.js
+share/doc/qwt/html/class_qwt_weeding_curve_fitter__inherit__graph.map
+share/doc/qwt/html/class_qwt_weeding_curve_fitter__inherit__graph.md5
+share/doc/qwt/html/class_qwt_weeding_curve_fitter__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.js
 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/class_qwt_widget_overlay-members.html
+share/doc/qwt/html/class_qwt_widget_overlay.html
+share/doc/qwt/html/class_qwt_widget_overlay.js
+share/doc/qwt/html/class_qwt_widget_overlay__inherit__graph.map
+share/doc/qwt/html/class_qwt_widget_overlay__inherit__graph.md5
+share/doc/qwt/html/class_qwt_widget_overlay__inherit__graph.png
 share/doc/qwt/html/classes.html
+share/doc/qwt/html/closed.png
 share/doc/qwt/html/controlscreenshots.html
-share/doc/qwt/html/cpuplot.png
+share/doc/qwt/html/cpuplot-600x400.png
+share/doc/qwt/html/cpuplot-oily-600x400.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/dir_03fad1f4ea3ce3b02cb95059119ea2f4.html
+share/doc/qwt/html/dir_38ce0752a9eb8d28f937191131181730.html
+share/doc/qwt/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
+share/doc/qwt/html/distrowatch-600x400.png
+share/doc/qwt/html/doc.png
 share/doc/qwt/html/doxygen.css
 share/doc/qwt/html/doxygen.png
-share/doc/qwt/html/files.html
+share/doc/qwt/html/dynsections.js
+share/doc/qwt/html/folderclosed.png
+share/doc/qwt/html/folderopen.png
 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/form_4.png
+share/doc/qwt/html/form_5.png
 share/doc/qwt/html/formula.repository
+share/doc/qwt/html/friedberg-bars-600x400.png
+share/doc/qwt/html/friedberg-tube-600x400.png
 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_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_b.html
+share/doc/qwt/html/functions_c.html
+share/doc/qwt/html/functions_d.html
+share/doc/qwt/html/functions_dup.js
+share/doc/qwt/html/functions_e.html
 share/doc/qwt/html/functions_enum.html
+share/doc/qwt/html/functions_eval.html
+share/doc/qwt/html/functions_eval.js
+share/doc/qwt/html/functions_eval_b.html
+share/doc/qwt/html/functions_eval_c.html
+share/doc/qwt/html/functions_eval_d.html
+share/doc/qwt/html/functions_eval_e.html
+share/doc/qwt/html/functions_eval_f.html
+share/doc/qwt/html/functions_eval_g.html
+share/doc/qwt/html/functions_eval_h.html
+share/doc/qwt/html/functions_eval_i.html
+share/doc/qwt/html/functions_eval_j.html
+share/doc/qwt/html/functions_eval_k.html
+share/doc/qwt/html/functions_eval_l.html
+share/doc/qwt/html/functions_eval_m.html
+share/doc/qwt/html/functions_eval_n.html
+share/doc/qwt/html/functions_eval_o.html
+share/doc/qwt/html/functions_eval_p.html
+share/doc/qwt/html/functions_eval_r.html
+share/doc/qwt/html/functions_eval_s.html
+share/doc/qwt/html/functions_eval_t.html
+share/doc/qwt/html/functions_eval_u.html
+share/doc/qwt/html/functions_eval_v.html
+share/doc/qwt/html/functions_eval_w.html
+share/doc/qwt/html/functions_eval_x.html
+share/doc/qwt/html/functions_eval_y.html
+share/doc/qwt/html/functions_f.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_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.js
 share/doc/qwt/html/functions_func_0x7e.html
-share/doc/qwt/html/graph.png
-share/doc/qwt/html/graph_legend.dot
+share/doc/qwt/html/functions_func_b.html
+share/doc/qwt/html/functions_func_c.html
+share/doc/qwt/html/functions_func_d.html
+share/doc/qwt/html/functions_func_e.html
+share/doc/qwt/html/functions_func_f.html
+share/doc/qwt/html/functions_func_g.html
+share/doc/qwt/html/functions_func_h.html
+share/doc/qwt/html/functions_func_i.html
+share/doc/qwt/html/functions_func_k.html
+share/doc/qwt/html/functions_func_l.html
+share/doc/qwt/html/functions_func_m.html
+share/doc/qwt/html/functions_func_n.html
+share/doc/qwt/html/functions_func_o.html
+share/doc/qwt/html/functions_func_p.html
+share/doc/qwt/html/functions_func_r.html
+share/doc/qwt/html/functions_func_s.html
+share/doc/qwt/html/functions_func_t.html
+share/doc/qwt/html/functions_func_u.html
+share/doc/qwt/html/functions_func_v.html
+share/doc/qwt/html/functions_func_w.html
+share/doc/qwt/html/functions_func_x.html
+share/doc/qwt/html/functions_func_y.html
+share/doc/qwt/html/functions_func_z.html
+share/doc/qwt/html/functions_g.html
+share/doc/qwt/html/functions_h.html
+share/doc/qwt/html/functions_i.html
+share/doc/qwt/html/functions_j.html
+share/doc/qwt/html/functions_k.html
+share/doc/qwt/html/functions_l.html
+share/doc/qwt/html/functions_m.html
+share/doc/qwt/html/functions_n.html
+share/doc/qwt/html/functions_o.html
+share/doc/qwt/html/functions_p.html
+share/doc/qwt/html/functions_r.html
+share/doc/qwt/html/functions_s.html
+share/doc/qwt/html/functions_t.html
+share/doc/qwt/html/functions_type.html
+share/doc/qwt/html/functions_u.html
+share/doc/qwt/html/functions_v.html
+share/doc/qwt/html/functions_vars.html
+share/doc/qwt/html/functions_w.html
+share/doc/qwt/html/functions_x.html
+share/doc/qwt/html/functions_y.html
+share/doc/qwt/html/functions_z.html
 share/doc/qwt/html/graph_legend.html
+share/doc/qwt/html/graph_legend.md5
 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/hierarchy.js
 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
-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__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
-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/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_38.map
+share/doc/qwt/html/inherit_graph_38.md5
+share/doc/qwt/html/inherit_graph_38.png
+share/doc/qwt/html/inherit_graph_39.map
+share/doc/qwt/html/inherit_graph_39.md5
+share/doc/qwt/html/inherit_graph_39.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_40.map
+share/doc/qwt/html/inherit_graph_40.md5
+share/doc/qwt/html/inherit_graph_40.png
+share/doc/qwt/html/inherit_graph_41.map
+share/doc/qwt/html/inherit_graph_41.md5
+share/doc/qwt/html/inherit_graph_41.png
+share/doc/qwt/html/inherit_graph_42.map
+share/doc/qwt/html/inherit_graph_42.md5
+share/doc/qwt/html/inherit_graph_42.png
+share/doc/qwt/html/inherit_graph_43.map
+share/doc/qwt/html/inherit_graph_43.md5
+share/doc/qwt/html/inherit_graph_43.png
+share/doc/qwt/html/inherit_graph_44.map
+share/doc/qwt/html/inherit_graph_44.md5
+share/doc/qwt/html/inherit_graph_44.png
+share/doc/qwt/html/inherit_graph_45.map
+share/doc/qwt/html/inherit_graph_45.md5
+share/doc/qwt/html/inherit_graph_45.png
+share/doc/qwt/html/inherit_graph_46.map
+share/doc/qwt/html/inherit_graph_46.md5
+share/doc/qwt/html/inherit_graph_46.png
+share/doc/qwt/html/inherit_graph_47.map
+share/doc/qwt/html/inherit_graph_47.md5
+share/doc/qwt/html/inherit_graph_47.png
+share/doc/qwt/html/inherit_graph_48.map
+share/doc/qwt/html/inherit_graph_48.md5
+share/doc/qwt/html/inherit_graph_48.png
+share/doc/qwt/html/inherit_graph_49.map
+share/doc/qwt/html/inherit_graph_49.md5
+share/doc/qwt/html/inherit_graph_49.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_50.map
+share/doc/qwt/html/inherit_graph_50.md5
+share/doc/qwt/html/inherit_graph_50.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/itemeditor-600x400.png
+share/doc/qwt/html/jquery.js
 share/doc/qwt/html/knob.png
+share/doc/qwt/html/nav_f.png
+share/doc/qwt/html/nav_g.png
+share/doc/qwt/html/nav_h.png
+share/doc/qwt/html/navtree.css
+share/doc/qwt/html/navtree.js
+share/doc/qwt/html/navtreedata.js
+share/doc/qwt/html/navtreeindex0.js
+share/doc/qwt/html/navtreeindex1.js
+share/doc/qwt/html/navtreeindex10.js
+share/doc/qwt/html/navtreeindex11.js
+share/doc/qwt/html/navtreeindex2.js
+share/doc/qwt/html/navtreeindex3.js
+share/doc/qwt/html/navtreeindex4.js
+share/doc/qwt/html/navtreeindex5.js
+share/doc/qwt/html/navtreeindex6.js
+share/doc/qwt/html/navtreeindex7.js
+share/doc/qwt/html/navtreeindex8.js
+share/doc/qwt/html/navtreeindex9.js
+share/doc/qwt/html/open.png
+share/doc/qwt/html/otherscreenshots.html
 share/doc/qwt/html/pages.html
 share/doc/qwt/html/plot.png
+share/doc/qwt/html/qwt__abstract__legend_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__column__symbol_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__compat_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__date_8h_source.html
+share/doc/qwt/html/qwt__date__scale__draw_8h_source.html
+share/doc/qwt/html/qwt__date__scale__engine_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__graphic_8h_source.html
+share/doc/qwt/html/qwt__interval_8h_source.html
+share/doc/qwt/html/qwt__interval__symbol_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__legend__data_8h_source.html
+share/doc/qwt/html/qwt__legend__label_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__matrix__raster__data_8h_source.html
+share/doc/qwt/html/qwt__mml__document_8h_source.html
+share/doc/qwt/html/qwt__null__paintdevice_8h_source.html
 share/doc/qwt/html/qwt__painter_8h_source.html
+share/doc/qwt/html/qwt__painter__command_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__pixel__matrix_8h_source.html
 share/doc/qwt/html/qwt__plot_8h_source.html
+share/doc/qwt/html/qwt__plot__abstract__barchart_8h_source.html
+share/doc/qwt/html/qwt__plot__barchart_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__directpainter_8h_source.html
+share/doc/qwt/html/qwt__plot__glcanvas_8h_source.html
 share/doc/qwt/html/qwt__plot__grid_8h_source.html
+share/doc/qwt/html/qwt__plot__histogram_8h_source.html
+share/doc/qwt/html/qwt__plot__intervalcurve_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__legenditem_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__multi__barchart_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__renderer_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__seriesitem_8h_source.html
+share/doc/qwt/html/qwt__plot__shapeitem_8h_source.html
+share/doc/qwt/html/qwt__plot__spectrocurve_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__textlabel_8h_source.html
+share/doc/qwt/html/qwt__plot__tradingcurve_8h_source.html
+share/doc/qwt/html/qwt__plot__zoneitem_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__point__3d_8h_source.html
+share/doc/qwt/html/qwt__point__data_8h_source.html
+share/doc/qwt/html/qwt__point__mapper_8h_source.html
+share/doc/qwt/html/qwt__point__polar_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__samples_8h_source.html
+share/doc/qwt/html/qwt__sampling__thread_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__series__data_8h_source.html
+share/doc/qwt/html/qwt__series__store_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__system__clock_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__transform_8h_source.html
 share/doc/qwt/html/qwt__wheel_8h_source.html
+share/doc/qwt/html/qwt__widget__overlay_8h_source.html
+share/doc/qwt/html/qwtchangelog.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/resize.js
+share/doc/qwt/html/scatterplot-600x400.png
+share/doc/qwt/html/search/
+share/doc/qwt/html/search/all_0.html
+share/doc/qwt/html/search/all_0.js
+share/doc/qwt/html/search/all_1.html
+share/doc/qwt/html/search/all_1.js
+share/doc/qwt/html/search/all_10.html
+share/doc/qwt/html/search/all_10.js
+share/doc/qwt/html/search/all_11.html
+share/doc/qwt/html/search/all_11.js
+share/doc/qwt/html/search/all_12.html
+share/doc/qwt/html/search/all_12.js
+share/doc/qwt/html/search/all_13.html
+share/doc/qwt/html/search/all_13.js
+share/doc/qwt/html/search/all_14.html
+share/doc/qwt/html/search/all_14.js
+share/doc/qwt/html/search/all_15.html
+share/doc/qwt/html/search/all_15.js
+share/doc/qwt/html/search/all_16.html
+share/doc/qwt/html/search/all_16.js
+share/doc/qwt/html/search/all_17.html
+share/doc/qwt/html/search/all_17.js
+share/doc/qwt/html/search/all_18.html
+share/doc/qwt/html/search/all_18.js
+share/doc/qwt/html/search/all_19.html
+share/doc/qwt/html/search/all_19.js
+share/doc/qwt/html/search/all_1a.html
+share/doc/qwt/html/search/all_1a.js
+share/doc/qwt/html/search/all_2.html
+share/doc/qwt/html/search/all_2.js
+share/doc/qwt/html/search/all_3.html
+share/doc/qwt/html/search/all_3.js
+share/doc/qwt/html/search/all_4.html
+share/doc/qwt/html/search/all_4.js
+share/doc/qwt/html/search/all_5.html
+share/doc/qwt/html/search/all_5.js
+share/doc/qwt/html/search/all_6.html
+share/doc/qwt/html/search/all_6.js
+share/doc/qwt/html/search/all_7.html
+share/doc/qwt/html/search/all_7.js
+share/doc/qwt/html/search/all_8.html
+share/doc/qwt/html/search/all_8.js
+share/doc/qwt/html/search/all_9.html
+share/doc/qwt/html/search/all_9.js
+share/doc/qwt/html/search/all_a.html
+share/doc/qwt/html/search/all_a.js
+share/doc/qwt/html/search/all_b.html
+share/doc/qwt/html/search/all_b.js
+share/doc/qwt/html/search/all_c.html
+share/doc/qwt/html/search/all_c.js
+share/doc/qwt/html/search/all_d.html
+share/doc/qwt/html/search/all_d.js
+share/doc/qwt/html/search/all_e.html
+share/doc/qwt/html/search/all_e.js
+share/doc/qwt/html/search/all_f.html
+share/doc/qwt/html/search/all_f.js
+share/doc/qwt/html/search/classes_0.html
+share/doc/qwt/html/search/classes_0.js
+share/doc/qwt/html/search/classes_1.html
+share/doc/qwt/html/search/classes_1.js
+share/doc/qwt/html/search/classes_2.html
+share/doc/qwt/html/search/classes_2.js
+share/doc/qwt/html/search/close.png
+share/doc/qwt/html/search/enums_0.html
+share/doc/qwt/html/search/enums_0.js
+share/doc/qwt/html/search/enums_1.html
+share/doc/qwt/html/search/enums_1.js
+share/doc/qwt/html/search/enums_10.html
+share/doc/qwt/html/search/enums_10.js
+share/doc/qwt/html/search/enums_2.html
+share/doc/qwt/html/search/enums_2.js
+share/doc/qwt/html/search/enums_3.html
+share/doc/qwt/html/search/enums_3.js
+share/doc/qwt/html/search/enums_4.html
+share/doc/qwt/html/search/enums_4.js
+share/doc/qwt/html/search/enums_5.html
+share/doc/qwt/html/search/enums_5.js
+share/doc/qwt/html/search/enums_6.html
+share/doc/qwt/html/search/enums_6.js
+share/doc/qwt/html/search/enums_7.html
+share/doc/qwt/html/search/enums_7.js
+share/doc/qwt/html/search/enums_8.html
+share/doc/qwt/html/search/enums_8.js
+share/doc/qwt/html/search/enums_9.html
+share/doc/qwt/html/search/enums_9.js
+share/doc/qwt/html/search/enums_a.html
+share/doc/qwt/html/search/enums_a.js
+share/doc/qwt/html/search/enums_b.html
+share/doc/qwt/html/search/enums_b.js
+share/doc/qwt/html/search/enums_c.html
+share/doc/qwt/html/search/enums_c.js
+share/doc/qwt/html/search/enums_d.html
+share/doc/qwt/html/search/enums_d.js
+share/doc/qwt/html/search/enums_e.html
+share/doc/qwt/html/search/enums_e.js
+share/doc/qwt/html/search/enums_f.html
+share/doc/qwt/html/search/enums_f.js
+share/doc/qwt/html/search/enumvalues_0.html
+share/doc/qwt/html/search/enumvalues_0.js
+share/doc/qwt/html/search/enumvalues_1.html
+share/doc/qwt/html/search/enumvalues_1.js
+share/doc/qwt/html/search/enumvalues_10.html
+share/doc/qwt/html/search/enumvalues_10.js
+share/doc/qwt/html/search/enumvalues_11.html
+share/doc/qwt/html/search/enumvalues_11.js
+share/doc/qwt/html/search/enumvalues_12.html
+share/doc/qwt/html/search/enumvalues_12.js
+share/doc/qwt/html/search/enumvalues_13.html
+share/doc/qwt/html/search/enumvalues_13.js
+share/doc/qwt/html/search/enumvalues_14.html
+share/doc/qwt/html/search/enumvalues_14.js
+share/doc/qwt/html/search/enumvalues_15.html
+share/doc/qwt/html/search/enumvalues_15.js
+share/doc/qwt/html/search/enumvalues_16.html
+share/doc/qwt/html/search/enumvalues_16.js
+share/doc/qwt/html/search/enumvalues_17.html
+share/doc/qwt/html/search/enumvalues_17.js
+share/doc/qwt/html/search/enumvalues_2.html
+share/doc/qwt/html/search/enumvalues_2.js
+share/doc/qwt/html/search/enumvalues_3.html
+share/doc/qwt/html/search/enumvalues_3.js
+share/doc/qwt/html/search/enumvalues_4.html
+share/doc/qwt/html/search/enumvalues_4.js
+share/doc/qwt/html/search/enumvalues_5.html
+share/doc/qwt/html/search/enumvalues_5.js
+share/doc/qwt/html/search/enumvalues_6.html
+share/doc/qwt/html/search/enumvalues_6.js
+share/doc/qwt/html/search/enumvalues_7.html
+share/doc/qwt/html/search/enumvalues_7.js
+share/doc/qwt/html/search/enumvalues_8.html
+share/doc/qwt/html/search/enumvalues_8.js
+share/doc/qwt/html/search/enumvalues_9.html
+share/doc/qwt/html/search/enumvalues_9.js
+share/doc/qwt/html/search/enumvalues_a.html
+share/doc/qwt/html/search/enumvalues_a.js
+share/doc/qwt/html/search/enumvalues_b.html
+share/doc/qwt/html/search/enumvalues_b.js
+share/doc/qwt/html/search/enumvalues_c.html
+share/doc/qwt/html/search/enumvalues_c.js
+share/doc/qwt/html/search/enumvalues_d.html
+share/doc/qwt/html/search/enumvalues_d.js
+share/doc/qwt/html/search/enumvalues_e.html
+share/doc/qwt/html/search/enumvalues_e.js
+share/doc/qwt/html/search/enumvalues_f.html
+share/doc/qwt/html/search/enumvalues_f.js
+share/doc/qwt/html/search/functions_0.html
+share/doc/qwt/html/search/functions_0.js
+share/doc/qwt/html/search/functions_1.html
+share/doc/qwt/html/search/functions_1.js
+share/doc/qwt/html/search/functions_10.html
+share/doc/qwt/html/search/functions_10.js
+share/doc/qwt/html/search/functions_11.html
+share/doc/qwt/html/search/functions_11.js
+share/doc/qwt/html/search/functions_12.html
+share/doc/qwt/html/search/functions_12.js
+share/doc/qwt/html/search/functions_13.html
+share/doc/qwt/html/search/functions_13.js
+share/doc/qwt/html/search/functions_14.html
+share/doc/qwt/html/search/functions_14.js
+share/doc/qwt/html/search/functions_15.html
+share/doc/qwt/html/search/functions_15.js
+share/doc/qwt/html/search/functions_16.html
+share/doc/qwt/html/search/functions_16.js
+share/doc/qwt/html/search/functions_17.html
+share/doc/qwt/html/search/functions_17.js
+share/doc/qwt/html/search/functions_18.html
+share/doc/qwt/html/search/functions_18.js
+share/doc/qwt/html/search/functions_19.html
+share/doc/qwt/html/search/functions_19.js
+share/doc/qwt/html/search/functions_2.html
+share/doc/qwt/html/search/functions_2.js
+share/doc/qwt/html/search/functions_3.html
+share/doc/qwt/html/search/functions_3.js
+share/doc/qwt/html/search/functions_4.html
+share/doc/qwt/html/search/functions_4.js
+share/doc/qwt/html/search/functions_5.html
+share/doc/qwt/html/search/functions_5.js
+share/doc/qwt/html/search/functions_6.html
+share/doc/qwt/html/search/functions_6.js
+share/doc/qwt/html/search/functions_7.html
+share/doc/qwt/html/search/functions_7.js
+share/doc/qwt/html/search/functions_8.html
+share/doc/qwt/html/search/functions_8.js
+share/doc/qwt/html/search/functions_9.html
+share/doc/qwt/html/search/functions_9.js
+share/doc/qwt/html/search/functions_a.html
+share/doc/qwt/html/search/functions_a.js
+share/doc/qwt/html/search/functions_b.html
+share/doc/qwt/html/search/functions_b.js
+share/doc/qwt/html/search/functions_c.html
+share/doc/qwt/html/search/functions_c.js
+share/doc/qwt/html/search/functions_d.html
+share/doc/qwt/html/search/functions_d.js
+share/doc/qwt/html/search/functions_e.html
+share/doc/qwt/html/search/functions_e.js
+share/doc/qwt/html/search/functions_f.html
+share/doc/qwt/html/search/functions_f.js
+share/doc/qwt/html/search/mag_sel.png
+share/doc/qwt/html/search/nomatches.html
+share/doc/qwt/html/search/pages_0.html
+share/doc/qwt/html/search/pages_0.js
+share/doc/qwt/html/search/pages_1.html
+share/doc/qwt/html/search/pages_1.js
+share/doc/qwt/html/search/pages_2.html
+share/doc/qwt/html/search/pages_2.js
+share/doc/qwt/html/search/pages_3.html
+share/doc/qwt/html/search/pages_3.js
+share/doc/qwt/html/search/pages_4.html
+share/doc/qwt/html/search/pages_4.js
+share/doc/qwt/html/search/pages_5.html
+share/doc/qwt/html/search/pages_5.js
+share/doc/qwt/html/search/pages_6.html
+share/doc/qwt/html/search/pages_6.js
+share/doc/qwt/html/search/pages_7.html
+share/doc/qwt/html/search/pages_7.js
+share/doc/qwt/html/search/search.css
+share/doc/qwt/html/search/search.js
+share/doc/qwt/html/search/search_l.png
+share/doc/qwt/html/search/search_m.png
+share/doc/qwt/html/search/search_r.png
+share/doc/qwt/html/search/searchdata.js
+share/doc/qwt/html/search/typedefs_0.html
+share/doc/qwt/html/search/typedefs_0.js
+share/doc/qwt/html/search/typedefs_1.html
+share/doc/qwt/html/search/typedefs_1.js
+share/doc/qwt/html/search/typedefs_2.html
+share/doc/qwt/html/search/typedefs_2.js
+share/doc/qwt/html/search/typedefs_3.html
+share/doc/qwt/html/search/typedefs_3.js
+share/doc/qwt/html/search/typedefs_4.html
+share/doc/qwt/html/search/typedefs_4.js
+share/doc/qwt/html/search/typedefs_5.html
+share/doc/qwt/html/search/typedefs_5.js
+share/doc/qwt/html/search/typedefs_6.html
+share/doc/qwt/html/search/typedefs_6.js
+share/doc/qwt/html/search/typedefs_7.html
+share/doc/qwt/html/search/typedefs_7.js
+share/doc/qwt/html/search/typedefs_8.html
+share/doc/qwt/html/search/typedefs_8.js
+share/doc/qwt/html/search/typedefs_9.html
+share/doc/qwt/html/search/typedefs_9.js
+share/doc/qwt/html/search/typedefs_a.html
+share/doc/qwt/html/search/typedefs_a.js
+share/doc/qwt/html/search/variables_0.html
+share/doc/qwt/html/search/variables_0.js
+share/doc/qwt/html/search/variables_1.html
+share/doc/qwt/html/search/variables_1.js
+share/doc/qwt/html/search/variables_2.html
+share/doc/qwt/html/search/variables_2.js
+share/doc/qwt/html/search/variables_3.html
+share/doc/qwt/html/search/variables_3.js
+share/doc/qwt/html/search/variables_4.html
+share/doc/qwt/html/search/variables_4.js
+share/doc/qwt/html/search/variables_5.html
+share/doc/qwt/html/search/variables_5.js
+share/doc/qwt/html/search/variables_6.html
+share/doc/qwt/html/search/variables_6.js
+share/doc/qwt/html/search/variables_7.html
+share/doc/qwt/html/search/variables_7.js
+share/doc/qwt/html/search/variables_8.html
+share/doc/qwt/html/search/variables_8.js
+share/doc/qwt/html/search/variables_9.html
+share/doc/qwt/html/search/variables_9.js
+share/doc/qwt/html/search/variables_a.html
+share/doc/qwt/html/search/variables_a.js
+share/doc/qwt/html/search/variables_b.html
+share/doc/qwt/html/search/variables_b.js
 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/spectrogram-contour1-600x400.png
+share/doc/qwt/html/spectrogram-contour2-600x400.png
+share/doc/qwt/html/spectrogram-hue-600x400.png
+share/doc/qwt/html/spectrogram-rgb-600x400.png
+share/doc/qwt/html/spectrogram-saturation-600x400.png
+share/doc/qwt/html/spectrogram-value-600x400.png
 share/doc/qwt/html/spectrogramscreenshots.html
+share/doc/qwt/html/splitbar.png
+share/doc/qwt/html/stockchart-600x400.png
+share/doc/qwt/html/sync_off.png
+share/doc/qwt/html/sync_on.png
 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/tab_a.png
+share/doc/qwt/html/tab_b.png
+share/doc/qwt/html/tab_h.png
+share/doc/qwt/html/tab_s.png
 share/doc/qwt/html/tabs.css
-@mode ug+w
-@group wsrc
-share/examples/qwt/
-share/examples/qwt/Makefile
-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
+share/doc/qwt/html/tvplot-600x400.png
+share/doc/qwt/man/
Index: pkg/README
===================================================================
RCS file: pkg/README
diff -N pkg/README
--- pkg/README  12 Jun 2017 10:57:58 -0000      1.3
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-$OpenBSD: README,v 1.3 2017/06/12 10:57:58 ajacoutot Exp $
-
-+-----------------------------------------------------------------------
-| Running ${FULLPKGNAME} on OpenBSD
-+-----------------------------------------------------------------------
-
-Building QWT Examples on OpenBSD
-
-To build the qwt examples:
-  cd ${TRUEPREFIX}/share/examples/qwt
-  make
-
-A qwt example binary will be built in each subdirectory of
-${TRUEPREFIX}/share/examples/qwt.

Reply via email to