Thu Jun 16 15:21:34 2011 UTC ()
Changes 6.0:

1) Qt3 support dropped
2) QwtPlot layout/render code ported from int to double
   Exported/printed documents in scalable formats like SVG or PDF
   are 100% scalable now.
3) Template base classes introduced for curve and curve data
   to be reusable in all plot items displaying series of samples.
4) New plot items
   - QwtPlotHistogram
   - QwtPlotIntervalCurve ( error bars or displaying the area between 2 curves )
   - QwtPlotSpectroCurve ( mapping the z value to a color )
5) Raster items
   - QwtMatrixRasterData introduced
   - More accurate rendering
   - Several API changes
   - Thread support for rendering spectrograms
6) QwtPlot::print moved to QwtPlotRenderer
7) Other new classes
   QwtColumnSymbol
   QwtDoublePoint3D
   QwtIntervalSymbol
   QwtPlotDirectPainter
   QwtSamplingThread
   QwtSystemClock
8) QwtPicker and friends reorganized,
   QwtPickerTrackerMachine added for displaying a rubberband for
   mouse moves. Enter/Leave added to events, that are handled
   by the picker machines.
9) QwtScaleWidget::LayoutFlag added
   Introduced to control the direction of vertical axis titles.
10)QwtWeedingCurveFitter added
   QwtWeedingCurveFitter is an implementation of the Douglas/Peuker
   algorithm, that can be used to reduce the number of curve points.
   It can be very useful to improve the performance of painting
   curves of many lines ( f.e. by implementing different level of details ).
11)Legend code update for representing different pixmaps for different
   types of plot items.
12)Copy operators removed, using pointers instead
13)QwtPolarPoint from qwtpolar added
14)QwtThermo
   Optional QwtColorMaps added
15)Interfaces and code of all sliders/dials cleaned up.
   QApplication::globalStrut(), styled backgrounds ...


(adam)
diff -r1.8 -r1.9 pkgsrc/x11/qwt-qt4/Makefile
diff -r1.2 -r1.3 pkgsrc/x11/qwt-qt4/PLIST
diff -r1.2 -r1.3 pkgsrc/x11/qwt-qt4/distinfo
diff -r1.7 -r1.8 pkgsrc/x11/qwt-qt4/buildlink3.mk
diff -r1.2 -r1.3 pkgsrc/x11/qwt-qt4/patches/patch-pri
diff -r1.1.1.1 -r1.2 pkgsrc/x11/qwt-qt4/patches/patch-srcpro

cvs diff -r1.8 -r1.9 pkgsrc/x11/qwt-qt4/Makefile (expand / switch to unified diff)

--- pkgsrc/x11/qwt-qt4/Makefile 2011/04/22 13:42:36 1.8
+++ pkgsrc/x11/qwt-qt4/Makefile 2011/06/16 15:21:34 1.9
@@ -1,33 +1,30 @@ @@ -1,33 +1,30 @@
1# $NetBSD: Makefile,v 1.8 2011/04/22 13:42:36 obache Exp $ 1# $NetBSD: Makefile,v 1.9 2011/06/16 15:21:34 adam Exp $
2 2
3DISTNAME= qwt-5.2.1 3DISTNAME= qwt-6.0.0
4PKGREVISION= 4 
5CATEGORIES= x11 4CATEGORIES= x11
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qwt/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qwt/}
7EXTRACT_SUFX= .tar.bz2 6EXTRACT_SUFX= .tar.bz2
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://sourceforge.net/projects/qwt/ 9HOMEPAGE= http://sourceforge.net/projects/qwt/
11COMMENT= Qt widget library for technical purposes 10COMMENT= Qt widget library for technical purposes
 11LICENSE= gnu-lgpl-v2
12 12
13MAKE_JOBS_SAFE= no 
14 
15USE_X11BASE= yes 
16USE_LANGUAGES= c++ 13USE_LANGUAGES= c++
17USE_TOOLS+= gmake 14USE_TOOLS+= gmake
18USE_LIBTOOL= yes 15USE_LIBTOOL= yes
19 16
20CONFLICTS= qwtlib-[0-9]* 17CONFLICTS= qwtlib-[0-9]*
21 18
22AUTO_MKDIRS= yes 19AUTO_MKDIRS= yes
23PKG_DESTDIR_SUPPORT= user-destdir 20PKG_DESTDIR_SUPPORT= user-destdir
24INSTALL_MAKE_FLAGS+= INSTALL_ROOT=${DESTDIR} 21INSTALL_MAKE_FLAGS+= INSTALL_ROOT=${DESTDIR}
25 22
26do-configure: 23do-configure:
27 cd ${WRKSRC} && env ${CONFIGURE_ENV} ${QTDIR}/bin/qmake 24 cd ${WRKSRC} && env ${CONFIGURE_ENV} ${QTDIR}/bin/qmake
28 25
29.include "../../x11/qt4-libs/buildlink3.mk" 26.include "../../x11/qt4-libs/buildlink3.mk"
30# needs fix for "silent" qmake feature flag 27# needs fix for "silent" qmake feature flag
31BUILDLINK_API_DEPENDS.qt4-tools+= qt4-tools>=4.6.3nb1 28BUILDLINK_API_DEPENDS.qt4-tools+= qt4-tools>=4.6.3nb1
32.include "../../x11/qt4-tools/buildlink3.mk" 29.include "../../x11/qt4-tools/buildlink3.mk"
33.include "../../mk/bsd.pkg.mk" 30.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/x11/qwt-qt4/PLIST (expand / switch to unified diff)

--- pkgsrc/x11/qwt-qt4/PLIST 2010/09/07 16:42:08 1.2
+++ pkgsrc/x11/qwt-qt4/PLIST 2011/06/16 15:21:34 1.3
@@ -1,226 +1,149 @@ @@ -1,226 +1,149 @@
1@comment $NetBSD: PLIST,v 1.2 2010/09/07 16:42:08 drochner Exp $ 1@comment $NetBSD: PLIST,v 1.3 2011/06/16 15:21:34 adam Exp $
 2features/qwt.prf
 3features/qwtconfig.pri
 4features/qwtmathml.prf
2include/qwt.h 5include/qwt.h
3include/qwt_abstract_scale.h 6include/qwt_abstract_scale.h
4include/qwt_abstract_scale_draw.h 7include/qwt_abstract_scale_draw.h
5include/qwt_abstract_slider.h 8include/qwt_abstract_slider.h
6include/qwt_analog_clock.h 9include/qwt_analog_clock.h
7include/qwt_array.h 
8include/qwt_arrow_button.h 10include/qwt_arrow_button.h
9include/qwt_clipper.h 11include/qwt_clipper.h
10include/qwt_color_map.h 12include/qwt_color_map.h
 13include/qwt_column_symbol.h
11include/qwt_compass.h 14include/qwt_compass.h
12include/qwt_compass_rose.h 15include/qwt_compass_rose.h
 16include/qwt_compat.h
13include/qwt_counter.h 17include/qwt_counter.h
14include/qwt_curve_fitter.h 18include/qwt_curve_fitter.h
15include/qwt_data.h 
16include/qwt_dial.h 19include/qwt_dial.h
17include/qwt_dial_needle.h 20include/qwt_dial_needle.h
18include/qwt_double_interval.h 
19include/qwt_double_range.h 21include/qwt_double_range.h
20include/qwt_double_rect.h 
21include/qwt_dyngrid_layout.h 22include/qwt_dyngrid_layout.h
22include/qwt_event_pattern.h 23include/qwt_event_pattern.h
23include/qwt_global.h 24include/qwt_global.h
24include/qwt_interval_data.h 25include/qwt_interval.h
 26include/qwt_interval_symbol.h
25include/qwt_knob.h 27include/qwt_knob.h
26include/qwt_layout_metrics.h 
27include/qwt_legend.h 28include/qwt_legend.h
28include/qwt_legend_item.h 29include/qwt_legend_item.h
29include/qwt_legend_itemmanager.h 30include/qwt_legend_itemmanager.h
30include/qwt_magnifier.h 31include/qwt_magnifier.h
31include/qwt_math.h 32include/qwt_math.h
32include/qwt_paint_buffer.h 33include/qwt_mathml_text_engine.h
 34include/qwt_matrix_raster_data.h
 35include/qwt_null_paintdevice.h
33include/qwt_painter.h 36include/qwt_painter.h
34include/qwt_panner.h 37include/qwt_panner.h
35include/qwt_picker.h 38include/qwt_picker.h
36include/qwt_picker_machine.h 39include/qwt_picker_machine.h
37include/qwt_plot.h 40include/qwt_plot.h
38include/qwt_plot_canvas.h 41include/qwt_plot_canvas.h
39include/qwt_plot_curve.h 42include/qwt_plot_curve.h
40include/qwt_plot_dict.h 43include/qwt_plot_dict.h
 44include/qwt_plot_directpainter.h
41include/qwt_plot_grid.h 45include/qwt_plot_grid.h
 46include/qwt_plot_histogram.h
 47include/qwt_plot_intervalcurve.h
42include/qwt_plot_item.h 48include/qwt_plot_item.h
43include/qwt_plot_layout.h 49include/qwt_plot_layout.h
44include/qwt_plot_magnifier.h 50include/qwt_plot_magnifier.h
45include/qwt_plot_marker.h 51include/qwt_plot_marker.h
46include/qwt_plot_panner.h 52include/qwt_plot_panner.h
47include/qwt_plot_picker.h 53include/qwt_plot_picker.h
48include/qwt_plot_printfilter.h 
49include/qwt_plot_rasteritem.h 54include/qwt_plot_rasteritem.h
 55include/qwt_plot_renderer.h
50include/qwt_plot_rescaler.h 56include/qwt_plot_rescaler.h
51include/qwt_plot_scaleitem.h 57include/qwt_plot_scaleitem.h
 58include/qwt_plot_seriesitem.h
 59include/qwt_plot_spectrocurve.h
52include/qwt_plot_spectrogram.h 60include/qwt_plot_spectrogram.h
 61include/qwt_plot_svgitem.h
53include/qwt_plot_zoomer.h 62include/qwt_plot_zoomer.h
54include/qwt_polygon.h 63include/qwt_point_3d.h
 64include/qwt_point_polar.h
55include/qwt_raster_data.h 65include/qwt_raster_data.h
56include/qwt_round_scale_draw.h 66include/qwt_round_scale_draw.h
 67include/qwt_sampling_thread.h
57include/qwt_scale_div.h 68include/qwt_scale_div.h
58include/qwt_scale_draw.h 69include/qwt_scale_draw.h
59include/qwt_scale_engine.h 70include/qwt_scale_engine.h
60include/qwt_scale_map.h 71include/qwt_scale_map.h
61include/qwt_scale_widget.h 72include/qwt_scale_widget.h
 73include/qwt_series_data.h
62include/qwt_slider.h 74include/qwt_slider.h
63include/qwt_spline.h 75include/qwt_spline.h
64include/qwt_symbol.h 76include/qwt_symbol.h
 77include/qwt_system_clock.h
65include/qwt_text.h 78include/qwt_text.h
66include/qwt_text_engine.h 79include/qwt_text_engine.h
67include/qwt_text_label.h 80include/qwt_text_label.h
68include/qwt_thermo.h 81include/qwt_thermo.h
69include/qwt_valuelist.h 
70include/qwt_wheel.h 82include/qwt_wheel.h
71lib/libqwt.la 83lib/libqwt.la
72man/man3/QwtAbstractScale.3 84lib/libqwtmathml.la
73man/man3/QwtAbstractScaleDraw.3 85plugins/designer/libqwt_designer_plugin.la
74man/man3/QwtAbstractSlider.3 
75man/man3/QwtAlphaColorMap.3 
76man/man3/QwtAnalogClock.3 
77man/man3/QwtArrayData.3 
78man/man3/QwtArrowButton.3 
79man/man3/QwtCPointerData.3 
80man/man3/QwtClipper.3 
81man/man3/QwtColorMap.3 
82man/man3/QwtCompass.3 
83man/man3/QwtCompassMagnetNeedle.3 
84man/man3/QwtCompassRose.3 
85man/man3/QwtCompassWindArrow.3 
86man/man3/QwtCounter.3 
87man/man3/QwtCurveFitter.3 
88man/man3/QwtData.3 
89man/man3/QwtDial.3 
90man/man3/QwtDialNeedle.3 
91man/man3/QwtDialScaleDraw.3 
92man/man3/QwtDialSimpleNeedle.3 
93man/man3/QwtDoubleInterval.3 
94man/man3/QwtDoubleRange.3 
95man/man3/QwtDynGridLayout.3 
96man/man3/QwtEventPattern.3 
97man/man3/QwtEventPattern_KeyPattern.3 
98man/man3/QwtEventPattern_MousePattern.3 
99man/man3/QwtIntervalData.3 
100man/man3/QwtKnob.3 
101man/man3/QwtLegend.3 
102man/man3/QwtLegendItem.3 
103man/man3/QwtLegendItemManager.3 
104man/man3/QwtLinearColorMap.3 
105man/man3/QwtLinearScaleEngine.3 
106man/man3/QwtLog10ScaleEngine.3 
107man/man3/QwtMagnifier.3 
108man/man3/QwtMathMLTextEngine.3 
109man/man3/QwtMetricsMap.3 
110man/man3/QwtPainter.3 
111man/man3/QwtPanner.3 
112man/man3/QwtPicker.3 
113man/man3/QwtPickerClickPointMachine.3 
114man/man3/QwtPickerClickRectMachine.3 
115man/man3/QwtPickerDragPointMachine.3 
116man/man3/QwtPickerDragRectMachine.3 
117man/man3/QwtPickerMachine.3 
118man/man3/QwtPickerPolygonMachine.3 
119man/man3/QwtPlainTextEngine.3 
120man/man3/QwtPlot.3 
121man/man3/QwtPlotCanvas.3 
122man/man3/QwtPlotCurve.3 
123man/man3/QwtPlotDict.3 
124man/man3/QwtPlotGrid.3 
125man/man3/QwtPlotItem.3 
126man/man3/QwtPlotLayout.3 
127man/man3/QwtPlotMagnifier.3 
128man/man3/QwtPlotMarker.3 
129man/man3/QwtPlotPanner.3 
130man/man3/QwtPlotPicker.3 
131man/man3/QwtPlotPrintFilter.3 
132man/man3/QwtPlotRasterItem.3 
133man/man3/QwtPlotRescaler.3 
134man/man3/QwtPlotScaleItem.3 
135man/man3/QwtPlotSpectrogram.3 
136man/man3/QwtPlotSvgItem.3 
137man/man3/QwtPlotZoomer.3 
138man/man3/QwtPolygonFData.3 
139man/man3/QwtRasterData.3 
140man/man3/QwtRichTextEngine.3 
141man/man3/QwtRoundScaleDraw.3 
142man/man3/QwtScaleArithmetic.3 
143man/man3/QwtScaleDiv.3 
144man/man3/QwtScaleDraw.3 
145man/man3/QwtScaleEngine.3 
146man/man3/QwtScaleMap.3 
147man/man3/QwtScaleTransformation.3 
148man/man3/QwtScaleWidget.3 
149man/man3/QwtSimpleCompassRose.3 
150man/man3/QwtSlider.3 
151man/man3/QwtSpline.3 
152man/man3/QwtSplineCurveFitter.3 
153man/man3/QwtSymbol.3 
154man/man3/QwtText.3 
155man/man3/QwtTextEngine.3 
156man/man3/QwtTextLabel.3 
157man/man3/QwtThermo.3 
158man/man3/QwtWheel.3 
159man/man3/controlscreenshots.3 
160man/man3/curvescreenshots.3 
161man/man3/deprecated.3 
162man/man3/histogramscreenshots.3 
163man/man3/qwtinstall.3 
164man/man3/qwtlicense.3 
165man/man3/scatterscreenshots.3 
166man/man3/spectrogramscreenshots.3 
167qt4/plugins/designer/libqwt_designer_plugin.la 
168share/doc/qwt/analogclock.png 86share/doc/qwt/analogclock.png
169share/doc/qwt/annotated.html 87share/doc/qwt/annotated.html
 88share/doc/qwt/bc_s.png
170share/doc/qwt/class_qwt_abstract_scale-members.html 89share/doc/qwt/class_qwt_abstract_scale-members.html
171share/doc/qwt/class_qwt_abstract_scale.html 90share/doc/qwt/class_qwt_abstract_scale.html
172share/doc/qwt/class_qwt_abstract_scale__inherit__graph.map 91share/doc/qwt/class_qwt_abstract_scale__inherit__graph.map
173share/doc/qwt/class_qwt_abstract_scale__inherit__graph.md5 92share/doc/qwt/class_qwt_abstract_scale__inherit__graph.md5
174share/doc/qwt/class_qwt_abstract_scale__inherit__graph.png 93share/doc/qwt/class_qwt_abstract_scale__inherit__graph.png
175share/doc/qwt/class_qwt_abstract_scale_draw-members.html 94share/doc/qwt/class_qwt_abstract_scale_draw-members.html
176share/doc/qwt/class_qwt_abstract_scale_draw.html 95share/doc/qwt/class_qwt_abstract_scale_draw.html
177share/doc/qwt/class_qwt_abstract_scale_draw__inherit__graph.map 96share/doc/qwt/class_qwt_abstract_scale_draw__inherit__graph.map
178share/doc/qwt/class_qwt_abstract_scale_draw__inherit__graph.md5 97share/doc/qwt/class_qwt_abstract_scale_draw__inherit__graph.md5
179share/doc/qwt/class_qwt_abstract_scale_draw__inherit__graph.png 98share/doc/qwt/class_qwt_abstract_scale_draw__inherit__graph.png
180share/doc/qwt/class_qwt_abstract_slider-members.html 99share/doc/qwt/class_qwt_abstract_slider-members.html
181share/doc/qwt/class_qwt_abstract_slider.html 100share/doc/qwt/class_qwt_abstract_slider.html
182share/doc/qwt/class_qwt_abstract_slider__inherit__graph.map 101share/doc/qwt/class_qwt_abstract_slider__inherit__graph.map
183share/doc/qwt/class_qwt_abstract_slider__inherit__graph.md5 102share/doc/qwt/class_qwt_abstract_slider__inherit__graph.md5
184share/doc/qwt/class_qwt_abstract_slider__inherit__graph.png 103share/doc/qwt/class_qwt_abstract_slider__inherit__graph.png
185share/doc/qwt/class_qwt_alpha_color_map-members.html 104share/doc/qwt/class_qwt_alpha_color_map-members.html
186share/doc/qwt/class_qwt_alpha_color_map.html 105share/doc/qwt/class_qwt_alpha_color_map.html
187share/doc/qwt/class_qwt_alpha_color_map__inherit__graph.map 106share/doc/qwt/class_qwt_alpha_color_map__inherit__graph.map
188share/doc/qwt/class_qwt_alpha_color_map__inherit__graph.md5 107share/doc/qwt/class_qwt_alpha_color_map__inherit__graph.md5
189share/doc/qwt/class_qwt_alpha_color_map__inherit__graph.png 108share/doc/qwt/class_qwt_alpha_color_map__inherit__graph.png
190share/doc/qwt/class_qwt_analog_clock-members.html 109share/doc/qwt/class_qwt_analog_clock-members.html
191share/doc/qwt/class_qwt_analog_clock.html 110share/doc/qwt/class_qwt_analog_clock.html
192share/doc/qwt/class_qwt_analog_clock__inherit__graph.map 111share/doc/qwt/class_qwt_analog_clock__inherit__graph.map
193share/doc/qwt/class_qwt_analog_clock__inherit__graph.md5 112share/doc/qwt/class_qwt_analog_clock__inherit__graph.md5
194share/doc/qwt/class_qwt_analog_clock__inherit__graph.png 113share/doc/qwt/class_qwt_analog_clock__inherit__graph.png
195share/doc/qwt/class_qwt_array_data-members.html 114share/doc/qwt/class_qwt_array_series_data-members.html
196share/doc/qwt/class_qwt_array_data.html 115share/doc/qwt/class_qwt_array_series_data.html
197share/doc/qwt/class_qwt_array_data__inherit__graph.map 116share/doc/qwt/class_qwt_array_series_data__inherit__graph.map
198share/doc/qwt/class_qwt_array_data__inherit__graph.md5 117share/doc/qwt/class_qwt_array_series_data__inherit__graph.md5
199share/doc/qwt/class_qwt_array_data__inherit__graph.png 118share/doc/qwt/class_qwt_array_series_data__inherit__graph.png
200share/doc/qwt/class_qwt_arrow_button-members.html 119share/doc/qwt/class_qwt_arrow_button-members.html
201share/doc/qwt/class_qwt_arrow_button.html 120share/doc/qwt/class_qwt_arrow_button.html
202share/doc/qwt/class_qwt_c_pointer_data-members.html 121share/doc/qwt/class_qwt_c_pointer_data-members.html
203share/doc/qwt/class_qwt_c_pointer_data.html 122share/doc/qwt/class_qwt_c_pointer_data.html
204share/doc/qwt/class_qwt_c_pointer_data__inherit__graph.map 123share/doc/qwt/class_qwt_c_pointer_data__inherit__graph.map
205share/doc/qwt/class_qwt_c_pointer_data__inherit__graph.md5 124share/doc/qwt/class_qwt_c_pointer_data__inherit__graph.md5
206share/doc/qwt/class_qwt_c_pointer_data__inherit__graph.png 125share/doc/qwt/class_qwt_c_pointer_data__inherit__graph.png
207share/doc/qwt/class_qwt_clipper-members.html 126share/doc/qwt/class_qwt_clipper-members.html
208share/doc/qwt/class_qwt_clipper.html 127share/doc/qwt/class_qwt_clipper.html
209share/doc/qwt/class_qwt_color_map-members.html 128share/doc/qwt/class_qwt_color_map-members.html
210share/doc/qwt/class_qwt_color_map.html 129share/doc/qwt/class_qwt_color_map.html
211share/doc/qwt/class_qwt_color_map__inherit__graph.map 130share/doc/qwt/class_qwt_color_map__inherit__graph.map
212share/doc/qwt/class_qwt_color_map__inherit__graph.md5 131share/doc/qwt/class_qwt_color_map__inherit__graph.md5
213share/doc/qwt/class_qwt_color_map__inherit__graph.png 132share/doc/qwt/class_qwt_color_map__inherit__graph.png
 133share/doc/qwt/class_qwt_column_rect-members.html
 134share/doc/qwt/class_qwt_column_rect.html
 135share/doc/qwt/class_qwt_column_symbol-members.html
 136share/doc/qwt/class_qwt_column_symbol.html
214share/doc/qwt/class_qwt_compass-members.html 137share/doc/qwt/class_qwt_compass-members.html
215share/doc/qwt/class_qwt_compass.html 138share/doc/qwt/class_qwt_compass.html
216share/doc/qwt/class_qwt_compass__inherit__graph.map 139share/doc/qwt/class_qwt_compass__inherit__graph.map
217share/doc/qwt/class_qwt_compass__inherit__graph.md5 140share/doc/qwt/class_qwt_compass__inherit__graph.md5
218share/doc/qwt/class_qwt_compass__inherit__graph.png 141share/doc/qwt/class_qwt_compass__inherit__graph.png
219share/doc/qwt/class_qwt_compass_magnet_needle-members.html 142share/doc/qwt/class_qwt_compass_magnet_needle-members.html
220share/doc/qwt/class_qwt_compass_magnet_needle.html 143share/doc/qwt/class_qwt_compass_magnet_needle.html
221share/doc/qwt/class_qwt_compass_magnet_needle__inherit__graph.map 144share/doc/qwt/class_qwt_compass_magnet_needle__inherit__graph.map
222share/doc/qwt/class_qwt_compass_magnet_needle__inherit__graph.md5 145share/doc/qwt/class_qwt_compass_magnet_needle__inherit__graph.md5
223share/doc/qwt/class_qwt_compass_magnet_needle__inherit__graph.png 146share/doc/qwt/class_qwt_compass_magnet_needle__inherit__graph.png
224share/doc/qwt/class_qwt_compass_rose-members.html 147share/doc/qwt/class_qwt_compass_rose-members.html
225share/doc/qwt/class_qwt_compass_rose.html 148share/doc/qwt/class_qwt_compass_rose.html
226share/doc/qwt/class_qwt_compass_rose__inherit__graph.map 149share/doc/qwt/class_qwt_compass_rose__inherit__graph.map
@@ -231,71 +154,73 @@ share/doc/qwt/class_qwt_compass_wind_arr @@ -231,71 +154,73 @@ share/doc/qwt/class_qwt_compass_wind_arr
231share/doc/qwt/class_qwt_compass_wind_arrow__inherit__graph.map 154share/doc/qwt/class_qwt_compass_wind_arrow__inherit__graph.map
232share/doc/qwt/class_qwt_compass_wind_arrow__inherit__graph.md5 155share/doc/qwt/class_qwt_compass_wind_arrow__inherit__graph.md5
233share/doc/qwt/class_qwt_compass_wind_arrow__inherit__graph.png 156share/doc/qwt/class_qwt_compass_wind_arrow__inherit__graph.png
234share/doc/qwt/class_qwt_counter-members.html 157share/doc/qwt/class_qwt_counter-members.html
235share/doc/qwt/class_qwt_counter.html 158share/doc/qwt/class_qwt_counter.html
236share/doc/qwt/class_qwt_counter__inherit__graph.map 159share/doc/qwt/class_qwt_counter__inherit__graph.map
237share/doc/qwt/class_qwt_counter__inherit__graph.md5 160share/doc/qwt/class_qwt_counter__inherit__graph.md5
238share/doc/qwt/class_qwt_counter__inherit__graph.png 161share/doc/qwt/class_qwt_counter__inherit__graph.png
239share/doc/qwt/class_qwt_curve_fitter-members.html 162share/doc/qwt/class_qwt_curve_fitter-members.html
240share/doc/qwt/class_qwt_curve_fitter.html 163share/doc/qwt/class_qwt_curve_fitter.html
241share/doc/qwt/class_qwt_curve_fitter__inherit__graph.map 164share/doc/qwt/class_qwt_curve_fitter__inherit__graph.map
242share/doc/qwt/class_qwt_curve_fitter__inherit__graph.md5 165share/doc/qwt/class_qwt_curve_fitter__inherit__graph.md5
243share/doc/qwt/class_qwt_curve_fitter__inherit__graph.png 166share/doc/qwt/class_qwt_curve_fitter__inherit__graph.png
244share/doc/qwt/class_qwt_data-members.html 
245share/doc/qwt/class_qwt_data.html 
246share/doc/qwt/class_qwt_data__inherit__graph.map 
247share/doc/qwt/class_qwt_data__inherit__graph.md5 
248share/doc/qwt/class_qwt_data__inherit__graph.png 
249share/doc/qwt/class_qwt_dial-members.html 167share/doc/qwt/class_qwt_dial-members.html
250share/doc/qwt/class_qwt_dial.html 168share/doc/qwt/class_qwt_dial.html
251share/doc/qwt/class_qwt_dial__inherit__graph.map 169share/doc/qwt/class_qwt_dial__inherit__graph.map
252share/doc/qwt/class_qwt_dial__inherit__graph.md5 170share/doc/qwt/class_qwt_dial__inherit__graph.md5
253share/doc/qwt/class_qwt_dial__inherit__graph.png 171share/doc/qwt/class_qwt_dial__inherit__graph.png
254share/doc/qwt/class_qwt_dial_needle-members.html 172share/doc/qwt/class_qwt_dial_needle-members.html
255share/doc/qwt/class_qwt_dial_needle.html 173share/doc/qwt/class_qwt_dial_needle.html
256share/doc/qwt/class_qwt_dial_needle__inherit__graph.map 174share/doc/qwt/class_qwt_dial_needle__inherit__graph.map
257share/doc/qwt/class_qwt_dial_needle__inherit__graph.md5 175share/doc/qwt/class_qwt_dial_needle__inherit__graph.md5
258share/doc/qwt/class_qwt_dial_needle__inherit__graph.png 176share/doc/qwt/class_qwt_dial_needle__inherit__graph.png
259share/doc/qwt/class_qwt_dial_scale_draw-members.html 177share/doc/qwt/class_qwt_dial_scale_draw-members.html
260share/doc/qwt/class_qwt_dial_scale_draw.html 178share/doc/qwt/class_qwt_dial_scale_draw.html
261share/doc/qwt/class_qwt_dial_scale_draw__inherit__graph.map 179share/doc/qwt/class_qwt_dial_scale_draw__inherit__graph.map
262share/doc/qwt/class_qwt_dial_scale_draw__inherit__graph.md5 180share/doc/qwt/class_qwt_dial_scale_draw__inherit__graph.md5
263share/doc/qwt/class_qwt_dial_scale_draw__inherit__graph.png 181share/doc/qwt/class_qwt_dial_scale_draw__inherit__graph.png
264share/doc/qwt/class_qwt_dial_simple_needle-members.html 182share/doc/qwt/class_qwt_dial_simple_needle-members.html
265share/doc/qwt/class_qwt_dial_simple_needle.html 183share/doc/qwt/class_qwt_dial_simple_needle.html
266share/doc/qwt/class_qwt_dial_simple_needle__inherit__graph.map 184share/doc/qwt/class_qwt_dial_simple_needle__inherit__graph.map
267share/doc/qwt/class_qwt_dial_simple_needle__inherit__graph.md5 185share/doc/qwt/class_qwt_dial_simple_needle__inherit__graph.md5
268share/doc/qwt/class_qwt_dial_simple_needle__inherit__graph.png 186share/doc/qwt/class_qwt_dial_simple_needle__inherit__graph.png
269share/doc/qwt/class_qwt_double_interval-members.html 
270share/doc/qwt/class_qwt_double_interval.html 
271share/doc/qwt/class_qwt_double_range-members.html 187share/doc/qwt/class_qwt_double_range-members.html
272share/doc/qwt/class_qwt_double_range.html 188share/doc/qwt/class_qwt_double_range.html
273share/doc/qwt/class_qwt_double_range__inherit__graph.map 189share/doc/qwt/class_qwt_double_range__inherit__graph.map
274share/doc/qwt/class_qwt_double_range__inherit__graph.md5 190share/doc/qwt/class_qwt_double_range__inherit__graph.md5
275share/doc/qwt/class_qwt_double_range__inherit__graph.png 191share/doc/qwt/class_qwt_double_range__inherit__graph.png
276share/doc/qwt/class_qwt_dyn_grid_layout-members.html 192share/doc/qwt/class_qwt_dyn_grid_layout-members.html
277share/doc/qwt/class_qwt_dyn_grid_layout.html 193share/doc/qwt/class_qwt_dyn_grid_layout.html
278share/doc/qwt/class_qwt_event_pattern-members.html 194share/doc/qwt/class_qwt_event_pattern-members.html
279share/doc/qwt/class_qwt_event_pattern.html 195share/doc/qwt/class_qwt_event_pattern.html
280share/doc/qwt/class_qwt_event_pattern_1_1_key_pattern-members.html 196share/doc/qwt/class_qwt_event_pattern_1_1_key_pattern-members.html
281share/doc/qwt/class_qwt_event_pattern_1_1_key_pattern.html 197share/doc/qwt/class_qwt_event_pattern_1_1_key_pattern.html
282share/doc/qwt/class_qwt_event_pattern_1_1_mouse_pattern-members.html 198share/doc/qwt/class_qwt_event_pattern_1_1_mouse_pattern-members.html
283share/doc/qwt/class_qwt_event_pattern_1_1_mouse_pattern.html 199share/doc/qwt/class_qwt_event_pattern_1_1_mouse_pattern.html
284share/doc/qwt/class_qwt_event_pattern__inherit__graph.map 200share/doc/qwt/class_qwt_event_pattern__inherit__graph.map
285share/doc/qwt/class_qwt_event_pattern__inherit__graph.md5 201share/doc/qwt/class_qwt_event_pattern__inherit__graph.md5
286share/doc/qwt/class_qwt_event_pattern__inherit__graph.png 202share/doc/qwt/class_qwt_event_pattern__inherit__graph.png
287share/doc/qwt/class_qwt_interval_data-members.html 203share/doc/qwt/class_qwt_interval-members.html
288share/doc/qwt/class_qwt_interval_data.html 204share/doc/qwt/class_qwt_interval.html
 205share/doc/qwt/class_qwt_interval_sample-members.html
 206share/doc/qwt/class_qwt_interval_sample.html
 207share/doc/qwt/class_qwt_interval_series_data-members.html
 208share/doc/qwt/class_qwt_interval_series_data.html
 209share/doc/qwt/class_qwt_interval_series_data__inherit__graph.map
 210share/doc/qwt/class_qwt_interval_series_data__inherit__graph.md5
 211share/doc/qwt/class_qwt_interval_series_data__inherit__graph.png
 212share/doc/qwt/class_qwt_interval_symbol-members.html
 213share/doc/qwt/class_qwt_interval_symbol.html
289share/doc/qwt/class_qwt_knob-members.html 214share/doc/qwt/class_qwt_knob-members.html
290share/doc/qwt/class_qwt_knob.html 215share/doc/qwt/class_qwt_knob.html
291share/doc/qwt/class_qwt_knob__inherit__graph.map 216share/doc/qwt/class_qwt_knob__inherit__graph.map
292share/doc/qwt/class_qwt_knob__inherit__graph.md5 217share/doc/qwt/class_qwt_knob__inherit__graph.md5
293share/doc/qwt/class_qwt_knob__inherit__graph.png 218share/doc/qwt/class_qwt_knob__inherit__graph.png
294share/doc/qwt/class_qwt_legend-members.html 219share/doc/qwt/class_qwt_legend-members.html
295share/doc/qwt/class_qwt_legend.html 220share/doc/qwt/class_qwt_legend.html
296share/doc/qwt/class_qwt_legend_item-members.html 221share/doc/qwt/class_qwt_legend_item-members.html
297share/doc/qwt/class_qwt_legend_item.html 222share/doc/qwt/class_qwt_legend_item.html
298share/doc/qwt/class_qwt_legend_item__inherit__graph.map 223share/doc/qwt/class_qwt_legend_item__inherit__graph.map
299share/doc/qwt/class_qwt_legend_item__inherit__graph.md5 224share/doc/qwt/class_qwt_legend_item__inherit__graph.md5
300share/doc/qwt/class_qwt_legend_item__inherit__graph.png 225share/doc/qwt/class_qwt_legend_item__inherit__graph.png
301share/doc/qwt/class_qwt_legend_item_manager-members.html 226share/doc/qwt/class_qwt_legend_item_manager-members.html
@@ -313,33 +238,43 @@ share/doc/qwt/class_qwt_linear_scale_eng @@ -313,33 +238,43 @@ share/doc/qwt/class_qwt_linear_scale_eng
313share/doc/qwt/class_qwt_linear_scale_engine__inherit__graph.map 238share/doc/qwt/class_qwt_linear_scale_engine__inherit__graph.map
314share/doc/qwt/class_qwt_linear_scale_engine__inherit__graph.md5 239share/doc/qwt/class_qwt_linear_scale_engine__inherit__graph.md5
315share/doc/qwt/class_qwt_linear_scale_engine__inherit__graph.png 240share/doc/qwt/class_qwt_linear_scale_engine__inherit__graph.png
316share/doc/qwt/class_qwt_log10_scale_engine-members.html 241share/doc/qwt/class_qwt_log10_scale_engine-members.html
317share/doc/qwt/class_qwt_log10_scale_engine.html 242share/doc/qwt/class_qwt_log10_scale_engine.html
318share/doc/qwt/class_qwt_log10_scale_engine__inherit__graph.map 243share/doc/qwt/class_qwt_log10_scale_engine__inherit__graph.map
319share/doc/qwt/class_qwt_log10_scale_engine__inherit__graph.md5 244share/doc/qwt/class_qwt_log10_scale_engine__inherit__graph.md5
320share/doc/qwt/class_qwt_log10_scale_engine__inherit__graph.png 245share/doc/qwt/class_qwt_log10_scale_engine__inherit__graph.png
321share/doc/qwt/class_qwt_magnifier-members.html 246share/doc/qwt/class_qwt_magnifier-members.html
322share/doc/qwt/class_qwt_magnifier.html 247share/doc/qwt/class_qwt_magnifier.html
323share/doc/qwt/class_qwt_magnifier__inherit__graph.map 248share/doc/qwt/class_qwt_magnifier__inherit__graph.map
324share/doc/qwt/class_qwt_magnifier__inherit__graph.md5 249share/doc/qwt/class_qwt_magnifier__inherit__graph.md5
325share/doc/qwt/class_qwt_magnifier__inherit__graph.png 250share/doc/qwt/class_qwt_magnifier__inherit__graph.png
 251share/doc/qwt/class_qwt_math_m_l_document-members.html
 252share/doc/qwt/class_qwt_math_m_l_document.html
326share/doc/qwt/class_qwt_math_m_l_text_engine-members.html 253share/doc/qwt/class_qwt_math_m_l_text_engine-members.html
327share/doc/qwt/class_qwt_math_m_l_text_engine.html 254share/doc/qwt/class_qwt_math_m_l_text_engine.html
328share/doc/qwt/class_qwt_math_m_l_text_engine__inherit__graph.map 255share/doc/qwt/class_qwt_math_m_l_text_engine__inherit__graph.map
329share/doc/qwt/class_qwt_math_m_l_text_engine__inherit__graph.md5 256share/doc/qwt/class_qwt_math_m_l_text_engine__inherit__graph.md5
330share/doc/qwt/class_qwt_math_m_l_text_engine__inherit__graph.png 257share/doc/qwt/class_qwt_math_m_l_text_engine__inherit__graph.png
331share/doc/qwt/class_qwt_metrics_map-members.html 258share/doc/qwt/class_qwt_matrix_raster_data-members.html
332share/doc/qwt/class_qwt_metrics_map.html 259share/doc/qwt/class_qwt_matrix_raster_data.html
 260share/doc/qwt/class_qwt_matrix_raster_data__inherit__graph.map
 261share/doc/qwt/class_qwt_matrix_raster_data__inherit__graph.md5
 262share/doc/qwt/class_qwt_matrix_raster_data__inherit__graph.png
 263share/doc/qwt/class_qwt_null_paint_device-members.html
 264share/doc/qwt/class_qwt_null_paint_device.html
 265share/doc/qwt/class_qwt_null_paint_device__inherit__graph.map
 266share/doc/qwt/class_qwt_null_paint_device__inherit__graph.md5
 267share/doc/qwt/class_qwt_null_paint_device__inherit__graph.png
333share/doc/qwt/class_qwt_painter-members.html 268share/doc/qwt/class_qwt_painter-members.html
334share/doc/qwt/class_qwt_painter.html 269share/doc/qwt/class_qwt_painter.html
335share/doc/qwt/class_qwt_panner-members.html 270share/doc/qwt/class_qwt_panner-members.html
336share/doc/qwt/class_qwt_panner.html 271share/doc/qwt/class_qwt_panner.html
337share/doc/qwt/class_qwt_panner__inherit__graph.map 272share/doc/qwt/class_qwt_panner__inherit__graph.map
338share/doc/qwt/class_qwt_panner__inherit__graph.md5 273share/doc/qwt/class_qwt_panner__inherit__graph.md5
339share/doc/qwt/class_qwt_panner__inherit__graph.png 274share/doc/qwt/class_qwt_panner__inherit__graph.png
340share/doc/qwt/class_qwt_picker-members.html 275share/doc/qwt/class_qwt_picker-members.html
341share/doc/qwt/class_qwt_picker.html 276share/doc/qwt/class_qwt_picker.html
342share/doc/qwt/class_qwt_picker__inherit__graph.map 277share/doc/qwt/class_qwt_picker__inherit__graph.map
343share/doc/qwt/class_qwt_picker__inherit__graph.md5 278share/doc/qwt/class_qwt_picker__inherit__graph.md5
344share/doc/qwt/class_qwt_picker__inherit__graph.png 279share/doc/qwt/class_qwt_picker__inherit__graph.png
345share/doc/qwt/class_qwt_picker_click_point_machine-members.html 280share/doc/qwt/class_qwt_picker_click_point_machine-members.html
@@ -362,53 +297,75 @@ share/doc/qwt/class_qwt_picker_drag_rect @@ -362,53 +297,75 @@ share/doc/qwt/class_qwt_picker_drag_rect
362share/doc/qwt/class_qwt_picker_drag_rect_machine__inherit__graph.map 297share/doc/qwt/class_qwt_picker_drag_rect_machine__inherit__graph.map
363share/doc/qwt/class_qwt_picker_drag_rect_machine__inherit__graph.md5 298share/doc/qwt/class_qwt_picker_drag_rect_machine__inherit__graph.md5
364share/doc/qwt/class_qwt_picker_drag_rect_machine__inherit__graph.png 299share/doc/qwt/class_qwt_picker_drag_rect_machine__inherit__graph.png
365share/doc/qwt/class_qwt_picker_machine-members.html 300share/doc/qwt/class_qwt_picker_machine-members.html
366share/doc/qwt/class_qwt_picker_machine.html 301share/doc/qwt/class_qwt_picker_machine.html
367share/doc/qwt/class_qwt_picker_machine__inherit__graph.map 302share/doc/qwt/class_qwt_picker_machine__inherit__graph.map
368share/doc/qwt/class_qwt_picker_machine__inherit__graph.md5 303share/doc/qwt/class_qwt_picker_machine__inherit__graph.md5
369share/doc/qwt/class_qwt_picker_machine__inherit__graph.png 304share/doc/qwt/class_qwt_picker_machine__inherit__graph.png
370share/doc/qwt/class_qwt_picker_polygon_machine-members.html 305share/doc/qwt/class_qwt_picker_polygon_machine-members.html
371share/doc/qwt/class_qwt_picker_polygon_machine.html 306share/doc/qwt/class_qwt_picker_polygon_machine.html
372share/doc/qwt/class_qwt_picker_polygon_machine__inherit__graph.map 307share/doc/qwt/class_qwt_picker_polygon_machine__inherit__graph.map
373share/doc/qwt/class_qwt_picker_polygon_machine__inherit__graph.md5 308share/doc/qwt/class_qwt_picker_polygon_machine__inherit__graph.md5
374share/doc/qwt/class_qwt_picker_polygon_machine__inherit__graph.png 309share/doc/qwt/class_qwt_picker_polygon_machine__inherit__graph.png
 310share/doc/qwt/class_qwt_picker_tracker_machine-members.html
 311share/doc/qwt/class_qwt_picker_tracker_machine.html
 312share/doc/qwt/class_qwt_picker_tracker_machine__inherit__graph.map
 313share/doc/qwt/class_qwt_picker_tracker_machine__inherit__graph.md5
 314share/doc/qwt/class_qwt_picker_tracker_machine__inherit__graph.png
375share/doc/qwt/class_qwt_plain_text_engine-members.html 315share/doc/qwt/class_qwt_plain_text_engine-members.html
376share/doc/qwt/class_qwt_plain_text_engine.html 316share/doc/qwt/class_qwt_plain_text_engine.html
377share/doc/qwt/class_qwt_plain_text_engine__inherit__graph.map 317share/doc/qwt/class_qwt_plain_text_engine__inherit__graph.map
378share/doc/qwt/class_qwt_plain_text_engine__inherit__graph.md5 318share/doc/qwt/class_qwt_plain_text_engine__inherit__graph.md5
379share/doc/qwt/class_qwt_plain_text_engine__inherit__graph.png 319share/doc/qwt/class_qwt_plain_text_engine__inherit__graph.png
380share/doc/qwt/class_qwt_plot-members.html 320share/doc/qwt/class_qwt_plot-members.html
381share/doc/qwt/class_qwt_plot.html 321share/doc/qwt/class_qwt_plot.html
382share/doc/qwt/class_qwt_plot__inherit__graph.map 322share/doc/qwt/class_qwt_plot__inherit__graph.map
383share/doc/qwt/class_qwt_plot__inherit__graph.md5 323share/doc/qwt/class_qwt_plot__inherit__graph.md5
384share/doc/qwt/class_qwt_plot__inherit__graph.png 324share/doc/qwt/class_qwt_plot__inherit__graph.png
 325share/doc/qwt/class_qwt_plot_abstract_series_item-members.html
 326share/doc/qwt/class_qwt_plot_abstract_series_item.html
 327share/doc/qwt/class_qwt_plot_abstract_series_item__inherit__graph.map
 328share/doc/qwt/class_qwt_plot_abstract_series_item__inherit__graph.md5
 329share/doc/qwt/class_qwt_plot_abstract_series_item__inherit__graph.png
385share/doc/qwt/class_qwt_plot_canvas-members.html 330share/doc/qwt/class_qwt_plot_canvas-members.html
386share/doc/qwt/class_qwt_plot_canvas.html 331share/doc/qwt/class_qwt_plot_canvas.html
387share/doc/qwt/class_qwt_plot_curve-members.html 332share/doc/qwt/class_qwt_plot_curve-members.html
388share/doc/qwt/class_qwt_plot_curve.html 333share/doc/qwt/class_qwt_plot_curve.html
389share/doc/qwt/class_qwt_plot_curve__inherit__graph.map 334share/doc/qwt/class_qwt_plot_curve__inherit__graph.map
390share/doc/qwt/class_qwt_plot_curve__inherit__graph.md5 335share/doc/qwt/class_qwt_plot_curve__inherit__graph.md5
391share/doc/qwt/class_qwt_plot_curve__inherit__graph.png 336share/doc/qwt/class_qwt_plot_curve__inherit__graph.png
392share/doc/qwt/class_qwt_plot_dict-members.html 337share/doc/qwt/class_qwt_plot_dict-members.html
393share/doc/qwt/class_qwt_plot_dict.html 338share/doc/qwt/class_qwt_plot_dict.html
394share/doc/qwt/class_qwt_plot_dict__inherit__graph.map 339share/doc/qwt/class_qwt_plot_dict__inherit__graph.map
395share/doc/qwt/class_qwt_plot_dict__inherit__graph.md5 340share/doc/qwt/class_qwt_plot_dict__inherit__graph.md5
396share/doc/qwt/class_qwt_plot_dict__inherit__graph.png 341share/doc/qwt/class_qwt_plot_dict__inherit__graph.png
 342share/doc/qwt/class_qwt_plot_direct_painter-members.html
 343share/doc/qwt/class_qwt_plot_direct_painter.html
397share/doc/qwt/class_qwt_plot_grid-members.html 344share/doc/qwt/class_qwt_plot_grid-members.html
398share/doc/qwt/class_qwt_plot_grid.html 345share/doc/qwt/class_qwt_plot_grid.html
399share/doc/qwt/class_qwt_plot_grid__inherit__graph.map 346share/doc/qwt/class_qwt_plot_grid__inherit__graph.map
400share/doc/qwt/class_qwt_plot_grid__inherit__graph.md5 347share/doc/qwt/class_qwt_plot_grid__inherit__graph.md5
401share/doc/qwt/class_qwt_plot_grid__inherit__graph.png 348share/doc/qwt/class_qwt_plot_grid__inherit__graph.png
 349share/doc/qwt/class_qwt_plot_histogram-members.html
 350share/doc/qwt/class_qwt_plot_histogram.html
 351share/doc/qwt/class_qwt_plot_histogram__inherit__graph.map
 352share/doc/qwt/class_qwt_plot_histogram__inherit__graph.md5
 353share/doc/qwt/class_qwt_plot_histogram__inherit__graph.png
 354share/doc/qwt/class_qwt_plot_interval_curve-members.html
 355share/doc/qwt/class_qwt_plot_interval_curve.html
 356share/doc/qwt/class_qwt_plot_interval_curve__inherit__graph.map
 357share/doc/qwt/class_qwt_plot_interval_curve__inherit__graph.md5
 358share/doc/qwt/class_qwt_plot_interval_curve__inherit__graph.png
402share/doc/qwt/class_qwt_plot_item-members.html 359share/doc/qwt/class_qwt_plot_item-members.html
403share/doc/qwt/class_qwt_plot_item.html 360share/doc/qwt/class_qwt_plot_item.html
404share/doc/qwt/class_qwt_plot_item__inherit__graph.map 361share/doc/qwt/class_qwt_plot_item__inherit__graph.map
405share/doc/qwt/class_qwt_plot_item__inherit__graph.md5 362share/doc/qwt/class_qwt_plot_item__inherit__graph.md5
406share/doc/qwt/class_qwt_plot_item__inherit__graph.png 363share/doc/qwt/class_qwt_plot_item__inherit__graph.png
407share/doc/qwt/class_qwt_plot_layout-members.html 364share/doc/qwt/class_qwt_plot_layout-members.html
408share/doc/qwt/class_qwt_plot_layout.html 365share/doc/qwt/class_qwt_plot_layout.html
409share/doc/qwt/class_qwt_plot_magnifier-members.html 366share/doc/qwt/class_qwt_plot_magnifier-members.html
410share/doc/qwt/class_qwt_plot_magnifier.html 367share/doc/qwt/class_qwt_plot_magnifier.html
411share/doc/qwt/class_qwt_plot_magnifier__inherit__graph.map 368share/doc/qwt/class_qwt_plot_magnifier__inherit__graph.map
412share/doc/qwt/class_qwt_plot_magnifier__inherit__graph.md5 369share/doc/qwt/class_qwt_plot_magnifier__inherit__graph.md5
413share/doc/qwt/class_qwt_plot_magnifier__inherit__graph.png 370share/doc/qwt/class_qwt_plot_magnifier__inherit__graph.png
414share/doc/qwt/class_qwt_plot_marker-members.html 371share/doc/qwt/class_qwt_plot_marker-members.html
@@ -416,151 +373,203 @@ share/doc/qwt/class_qwt_plot_marker.html @@ -416,151 +373,203 @@ share/doc/qwt/class_qwt_plot_marker.html
416share/doc/qwt/class_qwt_plot_marker__inherit__graph.map 373share/doc/qwt/class_qwt_plot_marker__inherit__graph.map
417share/doc/qwt/class_qwt_plot_marker__inherit__graph.md5 374share/doc/qwt/class_qwt_plot_marker__inherit__graph.md5
418share/doc/qwt/class_qwt_plot_marker__inherit__graph.png 375share/doc/qwt/class_qwt_plot_marker__inherit__graph.png
419share/doc/qwt/class_qwt_plot_panner-members.html 376share/doc/qwt/class_qwt_plot_panner-members.html
420share/doc/qwt/class_qwt_plot_panner.html 377share/doc/qwt/class_qwt_plot_panner.html
421share/doc/qwt/class_qwt_plot_panner__inherit__graph.map 378share/doc/qwt/class_qwt_plot_panner__inherit__graph.map
422share/doc/qwt/class_qwt_plot_panner__inherit__graph.md5 379share/doc/qwt/class_qwt_plot_panner__inherit__graph.md5
423share/doc/qwt/class_qwt_plot_panner__inherit__graph.png 380share/doc/qwt/class_qwt_plot_panner__inherit__graph.png
424share/doc/qwt/class_qwt_plot_picker-members.html 381share/doc/qwt/class_qwt_plot_picker-members.html
425share/doc/qwt/class_qwt_plot_picker.html 382share/doc/qwt/class_qwt_plot_picker.html
426share/doc/qwt/class_qwt_plot_picker__inherit__graph.map 383share/doc/qwt/class_qwt_plot_picker__inherit__graph.map
427share/doc/qwt/class_qwt_plot_picker__inherit__graph.md5 384share/doc/qwt/class_qwt_plot_picker__inherit__graph.md5
428share/doc/qwt/class_qwt_plot_picker__inherit__graph.png 385share/doc/qwt/class_qwt_plot_picker__inherit__graph.png
429share/doc/qwt/class_qwt_plot_print_filter-members.html 
430share/doc/qwt/class_qwt_plot_print_filter.html 
431share/doc/qwt/class_qwt_plot_raster_item-members.html 386share/doc/qwt/class_qwt_plot_raster_item-members.html
432share/doc/qwt/class_qwt_plot_raster_item.html 387share/doc/qwt/class_qwt_plot_raster_item.html
433share/doc/qwt/class_qwt_plot_raster_item__inherit__graph.map 388share/doc/qwt/class_qwt_plot_raster_item__inherit__graph.map
434share/doc/qwt/class_qwt_plot_raster_item__inherit__graph.md5 389share/doc/qwt/class_qwt_plot_raster_item__inherit__graph.md5
435share/doc/qwt/class_qwt_plot_raster_item__inherit__graph.png 390share/doc/qwt/class_qwt_plot_raster_item__inherit__graph.png
 391share/doc/qwt/class_qwt_plot_renderer-members.html
 392share/doc/qwt/class_qwt_plot_renderer.html
436share/doc/qwt/class_qwt_plot_rescaler-members.html 393share/doc/qwt/class_qwt_plot_rescaler-members.html
437share/doc/qwt/class_qwt_plot_rescaler.html 394share/doc/qwt/class_qwt_plot_rescaler.html
438share/doc/qwt/class_qwt_plot_scale_item-members.html 395share/doc/qwt/class_qwt_plot_scale_item-members.html
439share/doc/qwt/class_qwt_plot_scale_item.html 396share/doc/qwt/class_qwt_plot_scale_item.html
440share/doc/qwt/class_qwt_plot_scale_item__inherit__graph.map 397share/doc/qwt/class_qwt_plot_scale_item__inherit__graph.map
441share/doc/qwt/class_qwt_plot_scale_item__inherit__graph.md5 398share/doc/qwt/class_qwt_plot_scale_item__inherit__graph.md5
442share/doc/qwt/class_qwt_plot_scale_item__inherit__graph.png 399share/doc/qwt/class_qwt_plot_scale_item__inherit__graph.png
 400share/doc/qwt/class_qwt_plot_series_item-members.html
 401share/doc/qwt/class_qwt_plot_series_item.html
 402share/doc/qwt/class_qwt_plot_series_item__inherit__graph.map
 403share/doc/qwt/class_qwt_plot_series_item__inherit__graph.md5
 404share/doc/qwt/class_qwt_plot_series_item__inherit__graph.png
 405share/doc/qwt/class_qwt_plot_spectro_curve-members.html
 406share/doc/qwt/class_qwt_plot_spectro_curve.html
 407share/doc/qwt/class_qwt_plot_spectro_curve__inherit__graph.map
 408share/doc/qwt/class_qwt_plot_spectro_curve__inherit__graph.md5
 409share/doc/qwt/class_qwt_plot_spectro_curve__inherit__graph.png
443share/doc/qwt/class_qwt_plot_spectrogram-members.html 410share/doc/qwt/class_qwt_plot_spectrogram-members.html
444share/doc/qwt/class_qwt_plot_spectrogram.html 411share/doc/qwt/class_qwt_plot_spectrogram.html
445share/doc/qwt/class_qwt_plot_spectrogram__inherit__graph.map 412share/doc/qwt/class_qwt_plot_spectrogram__inherit__graph.map
446share/doc/qwt/class_qwt_plot_spectrogram__inherit__graph.md5 413share/doc/qwt/class_qwt_plot_spectrogram__inherit__graph.md5
447share/doc/qwt/class_qwt_plot_spectrogram__inherit__graph.png 414share/doc/qwt/class_qwt_plot_spectrogram__inherit__graph.png
448share/doc/qwt/class_qwt_plot_svg_item-members.html 415share/doc/qwt/class_qwt_plot_svg_item-members.html
449share/doc/qwt/class_qwt_plot_svg_item.html 416share/doc/qwt/class_qwt_plot_svg_item.html
450share/doc/qwt/class_qwt_plot_svg_item__inherit__graph.map 417share/doc/qwt/class_qwt_plot_svg_item__inherit__graph.map
451share/doc/qwt/class_qwt_plot_svg_item__inherit__graph.md5 418share/doc/qwt/class_qwt_plot_svg_item__inherit__graph.md5
452share/doc/qwt/class_qwt_plot_svg_item__inherit__graph.png 419share/doc/qwt/class_qwt_plot_svg_item__inherit__graph.png
453share/doc/qwt/class_qwt_plot_zoomer-members.html 420share/doc/qwt/class_qwt_plot_zoomer-members.html
454share/doc/qwt/class_qwt_plot_zoomer.html 421share/doc/qwt/class_qwt_plot_zoomer.html
455share/doc/qwt/class_qwt_plot_zoomer__inherit__graph.map 422share/doc/qwt/class_qwt_plot_zoomer__inherit__graph.map
456share/doc/qwt/class_qwt_plot_zoomer__inherit__graph.md5 423share/doc/qwt/class_qwt_plot_zoomer__inherit__graph.md5
457share/doc/qwt/class_qwt_plot_zoomer__inherit__graph.png 424share/doc/qwt/class_qwt_plot_zoomer__inherit__graph.png
458share/doc/qwt/class_qwt_polygon_f_data-members.html 425share/doc/qwt/class_qwt_point3_d-members.html
459share/doc/qwt/class_qwt_polygon_f_data.html 426share/doc/qwt/class_qwt_point3_d.html
460share/doc/qwt/class_qwt_polygon_f_data__inherit__graph.map 427share/doc/qwt/class_qwt_point3_d_series_data-members.html
461share/doc/qwt/class_qwt_polygon_f_data__inherit__graph.md5 428share/doc/qwt/class_qwt_point3_d_series_data.html
462share/doc/qwt/class_qwt_polygon_f_data__inherit__graph.png 429share/doc/qwt/class_qwt_point3_d_series_data__inherit__graph.map
 430share/doc/qwt/class_qwt_point3_d_series_data__inherit__graph.md5
 431share/doc/qwt/class_qwt_point3_d_series_data__inherit__graph.png
 432share/doc/qwt/class_qwt_point_array_data-members.html
 433share/doc/qwt/class_qwt_point_array_data.html
 434share/doc/qwt/class_qwt_point_array_data__inherit__graph.map
 435share/doc/qwt/class_qwt_point_array_data__inherit__graph.md5
 436share/doc/qwt/class_qwt_point_array_data__inherit__graph.png
 437share/doc/qwt/class_qwt_point_polar-members.html
 438share/doc/qwt/class_qwt_point_polar.html
 439share/doc/qwt/class_qwt_point_series_data-members.html
 440share/doc/qwt/class_qwt_point_series_data.html
 441share/doc/qwt/class_qwt_point_series_data__inherit__graph.map
 442share/doc/qwt/class_qwt_point_series_data__inherit__graph.md5
 443share/doc/qwt/class_qwt_point_series_data__inherit__graph.png
463share/doc/qwt/class_qwt_raster_data-members.html 444share/doc/qwt/class_qwt_raster_data-members.html
464share/doc/qwt/class_qwt_raster_data.html 445share/doc/qwt/class_qwt_raster_data.html
465share/doc/qwt/class_qwt_raster_data__inherit__graph.map 446share/doc/qwt/class_qwt_raster_data__inherit__graph.map
466share/doc/qwt/class_qwt_raster_data__inherit__graph.md5 447share/doc/qwt/class_qwt_raster_data__inherit__graph.md5
467share/doc/qwt/class_qwt_raster_data__inherit__graph.png 448share/doc/qwt/class_qwt_raster_data__inherit__graph.png
468share/doc/qwt/class_qwt_rich_text_engine-members.html 449share/doc/qwt/class_qwt_rich_text_engine-members.html
469share/doc/qwt/class_qwt_rich_text_engine.html 450share/doc/qwt/class_qwt_rich_text_engine.html
470share/doc/qwt/class_qwt_rich_text_engine__inherit__graph.map 451share/doc/qwt/class_qwt_rich_text_engine__inherit__graph.map
471share/doc/qwt/class_qwt_rich_text_engine__inherit__graph.md5 452share/doc/qwt/class_qwt_rich_text_engine__inherit__graph.md5
472share/doc/qwt/class_qwt_rich_text_engine__inherit__graph.png 453share/doc/qwt/class_qwt_rich_text_engine__inherit__graph.png
473share/doc/qwt/class_qwt_round_scale_draw-members.html 454share/doc/qwt/class_qwt_round_scale_draw-members.html
474share/doc/qwt/class_qwt_round_scale_draw.html 455share/doc/qwt/class_qwt_round_scale_draw.html
475share/doc/qwt/class_qwt_round_scale_draw__inherit__graph.map 456share/doc/qwt/class_qwt_round_scale_draw__inherit__graph.map
476share/doc/qwt/class_qwt_round_scale_draw__inherit__graph.md5 457share/doc/qwt/class_qwt_round_scale_draw__inherit__graph.md5
477share/doc/qwt/class_qwt_round_scale_draw__inherit__graph.png 458share/doc/qwt/class_qwt_round_scale_draw__inherit__graph.png
 459share/doc/qwt/class_qwt_sampling_thread-members.html
 460share/doc/qwt/class_qwt_sampling_thread.html
478share/doc/qwt/class_qwt_scale_arithmetic-members.html 461share/doc/qwt/class_qwt_scale_arithmetic-members.html
479share/doc/qwt/class_qwt_scale_arithmetic.html 462share/doc/qwt/class_qwt_scale_arithmetic.html
480share/doc/qwt/class_qwt_scale_div-members.html 463share/doc/qwt/class_qwt_scale_div-members.html
481share/doc/qwt/class_qwt_scale_div.html 464share/doc/qwt/class_qwt_scale_div.html
482share/doc/qwt/class_qwt_scale_draw-members.html 465share/doc/qwt/class_qwt_scale_draw-members.html
483share/doc/qwt/class_qwt_scale_draw.html 466share/doc/qwt/class_qwt_scale_draw.html
484share/doc/qwt/class_qwt_scale_draw__inherit__graph.map 467share/doc/qwt/class_qwt_scale_draw__inherit__graph.map
485share/doc/qwt/class_qwt_scale_draw__inherit__graph.md5 468share/doc/qwt/class_qwt_scale_draw__inherit__graph.md5
486share/doc/qwt/class_qwt_scale_draw__inherit__graph.png 469share/doc/qwt/class_qwt_scale_draw__inherit__graph.png
487share/doc/qwt/class_qwt_scale_engine-members.html 470share/doc/qwt/class_qwt_scale_engine-members.html
488share/doc/qwt/class_qwt_scale_engine.html 471share/doc/qwt/class_qwt_scale_engine.html
489share/doc/qwt/class_qwt_scale_engine__inherit__graph.map 472share/doc/qwt/class_qwt_scale_engine__inherit__graph.map
490share/doc/qwt/class_qwt_scale_engine__inherit__graph.md5 473share/doc/qwt/class_qwt_scale_engine__inherit__graph.md5
491share/doc/qwt/class_qwt_scale_engine__inherit__graph.png 474share/doc/qwt/class_qwt_scale_engine__inherit__graph.png
492share/doc/qwt/class_qwt_scale_map-members.html 475share/doc/qwt/class_qwt_scale_map-members.html
493share/doc/qwt/class_qwt_scale_map.html 476share/doc/qwt/class_qwt_scale_map.html
494share/doc/qwt/class_qwt_scale_transformation-members.html 477share/doc/qwt/class_qwt_scale_transformation-members.html
495share/doc/qwt/class_qwt_scale_transformation.html 478share/doc/qwt/class_qwt_scale_transformation.html
496share/doc/qwt/class_qwt_scale_widget-members.html 479share/doc/qwt/class_qwt_scale_widget-members.html
497share/doc/qwt/class_qwt_scale_widget.html 480share/doc/qwt/class_qwt_scale_widget.html
 481share/doc/qwt/class_qwt_series_data-members.html
 482share/doc/qwt/class_qwt_series_data.html
 483share/doc/qwt/class_qwt_series_data__inherit__graph.map
 484share/doc/qwt/class_qwt_series_data__inherit__graph.md5
 485share/doc/qwt/class_qwt_series_data__inherit__graph.png
 486share/doc/qwt/class_qwt_set_sample-members.html
 487share/doc/qwt/class_qwt_set_sample.html
 488share/doc/qwt/class_qwt_set_series_data-members.html
 489share/doc/qwt/class_qwt_set_series_data.html
 490share/doc/qwt/class_qwt_set_series_data__inherit__graph.map
 491share/doc/qwt/class_qwt_set_series_data__inherit__graph.md5
 492share/doc/qwt/class_qwt_set_series_data__inherit__graph.png
498share/doc/qwt/class_qwt_simple_compass_rose-members.html 493share/doc/qwt/class_qwt_simple_compass_rose-members.html
499share/doc/qwt/class_qwt_simple_compass_rose.html 494share/doc/qwt/class_qwt_simple_compass_rose.html
500share/doc/qwt/class_qwt_simple_compass_rose__inherit__graph.map 495share/doc/qwt/class_qwt_simple_compass_rose__inherit__graph.map
501share/doc/qwt/class_qwt_simple_compass_rose__inherit__graph.md5 496share/doc/qwt/class_qwt_simple_compass_rose__inherit__graph.md5
502share/doc/qwt/class_qwt_simple_compass_rose__inherit__graph.png 497share/doc/qwt/class_qwt_simple_compass_rose__inherit__graph.png
503share/doc/qwt/class_qwt_slider-members.html 498share/doc/qwt/class_qwt_slider-members.html
504share/doc/qwt/class_qwt_slider.html 499share/doc/qwt/class_qwt_slider.html
505share/doc/qwt/class_qwt_slider__inherit__graph.map 500share/doc/qwt/class_qwt_slider__inherit__graph.map
506share/doc/qwt/class_qwt_slider__inherit__graph.md5 501share/doc/qwt/class_qwt_slider__inherit__graph.md5
507share/doc/qwt/class_qwt_slider__inherit__graph.png 502share/doc/qwt/class_qwt_slider__inherit__graph.png
508share/doc/qwt/class_qwt_spline-members.html 503share/doc/qwt/class_qwt_spline-members.html
509share/doc/qwt/class_qwt_spline.html 504share/doc/qwt/class_qwt_spline.html
510share/doc/qwt/class_qwt_spline_curve_fitter-members.html 505share/doc/qwt/class_qwt_spline_curve_fitter-members.html
511share/doc/qwt/class_qwt_spline_curve_fitter.html 506share/doc/qwt/class_qwt_spline_curve_fitter.html
512share/doc/qwt/class_qwt_spline_curve_fitter__inherit__graph.map 507share/doc/qwt/class_qwt_spline_curve_fitter__inherit__graph.map
513share/doc/qwt/class_qwt_spline_curve_fitter__inherit__graph.md5 508share/doc/qwt/class_qwt_spline_curve_fitter__inherit__graph.md5
514share/doc/qwt/class_qwt_spline_curve_fitter__inherit__graph.png 509share/doc/qwt/class_qwt_spline_curve_fitter__inherit__graph.png
515share/doc/qwt/class_qwt_symbol-members.html 510share/doc/qwt/class_qwt_symbol-members.html
516share/doc/qwt/class_qwt_symbol.html 511share/doc/qwt/class_qwt_symbol.html
 512share/doc/qwt/class_qwt_synthetic_point_data-members.html
 513share/doc/qwt/class_qwt_synthetic_point_data.html
 514share/doc/qwt/class_qwt_synthetic_point_data__inherit__graph.map
 515share/doc/qwt/class_qwt_synthetic_point_data__inherit__graph.md5
 516share/doc/qwt/class_qwt_synthetic_point_data__inherit__graph.png
 517share/doc/qwt/class_qwt_system_clock-members.html
 518share/doc/qwt/class_qwt_system_clock.html
517share/doc/qwt/class_qwt_text-members.html 519share/doc/qwt/class_qwt_text-members.html
518share/doc/qwt/class_qwt_text.html 520share/doc/qwt/class_qwt_text.html
519share/doc/qwt/class_qwt_text_engine-members.html 521share/doc/qwt/class_qwt_text_engine-members.html
520share/doc/qwt/class_qwt_text_engine.html 522share/doc/qwt/class_qwt_text_engine.html
521share/doc/qwt/class_qwt_text_engine__inherit__graph.map 523share/doc/qwt/class_qwt_text_engine__inherit__graph.map
522share/doc/qwt/class_qwt_text_engine__inherit__graph.md5 524share/doc/qwt/class_qwt_text_engine__inherit__graph.md5
523share/doc/qwt/class_qwt_text_engine__inherit__graph.png 525share/doc/qwt/class_qwt_text_engine__inherit__graph.png
524share/doc/qwt/class_qwt_text_label-members.html 526share/doc/qwt/class_qwt_text_label-members.html
525share/doc/qwt/class_qwt_text_label.html 527share/doc/qwt/class_qwt_text_label.html
526share/doc/qwt/class_qwt_text_label__inherit__graph.map 528share/doc/qwt/class_qwt_text_label__inherit__graph.map
527share/doc/qwt/class_qwt_text_label__inherit__graph.md5 529share/doc/qwt/class_qwt_text_label__inherit__graph.md5
528share/doc/qwt/class_qwt_text_label__inherit__graph.png 530share/doc/qwt/class_qwt_text_label__inherit__graph.png
529share/doc/qwt/class_qwt_thermo-members.html 531share/doc/qwt/class_qwt_thermo-members.html
530share/doc/qwt/class_qwt_thermo.html 532share/doc/qwt/class_qwt_thermo.html
531share/doc/qwt/class_qwt_thermo__inherit__graph.map 533share/doc/qwt/class_qwt_thermo__inherit__graph.map
532share/doc/qwt/class_qwt_thermo__inherit__graph.md5 534share/doc/qwt/class_qwt_thermo__inherit__graph.md5
533share/doc/qwt/class_qwt_thermo__inherit__graph.png 535share/doc/qwt/class_qwt_thermo__inherit__graph.png
 536share/doc/qwt/class_qwt_weeding_curve_fitter-members.html
 537share/doc/qwt/class_qwt_weeding_curve_fitter.html
 538share/doc/qwt/class_qwt_weeding_curve_fitter__inherit__graph.map
 539share/doc/qwt/class_qwt_weeding_curve_fitter__inherit__graph.md5
 540share/doc/qwt/class_qwt_weeding_curve_fitter__inherit__graph.png
534share/doc/qwt/class_qwt_wheel-members.html 541share/doc/qwt/class_qwt_wheel-members.html
535share/doc/qwt/class_qwt_wheel.html 542share/doc/qwt/class_qwt_wheel.html
536share/doc/qwt/class_qwt_wheel__inherit__graph.map 543share/doc/qwt/class_qwt_wheel__inherit__graph.map
537share/doc/qwt/class_qwt_wheel__inherit__graph.md5 544share/doc/qwt/class_qwt_wheel__inherit__graph.md5
538share/doc/qwt/class_qwt_wheel__inherit__graph.png 545share/doc/qwt/class_qwt_wheel__inherit__graph.png
539share/doc/qwt/classes.html 546share/doc/qwt/classes.html
 547share/doc/qwt/closed.png
540share/doc/qwt/controlscreenshots.html 548share/doc/qwt/controlscreenshots.html
541share/doc/qwt/cpuplot.png 549share/doc/qwt/cpuplot.png
542share/doc/qwt/curves.png 550share/doc/qwt/curves.png
543share/doc/qwt/curvescreenshots.html 551share/doc/qwt/curvescreenshots.html
544share/doc/qwt/deprecated.html 
545share/doc/qwt/dials1.png 552share/doc/qwt/dials1.png
546share/doc/qwt/dials2.png 553share/doc/qwt/dials2.png
547share/doc/qwt/doxygen.css 554share/doc/qwt/doxygen.css
548share/doc/qwt/doxygen.png 555share/doc/qwt/doxygen.png
549share/doc/qwt/files.html 556share/doc/qwt/files.html
550share/doc/qwt/form_0.png 557share/doc/qwt/form_0.png
551share/doc/qwt/form_1.png 558share/doc/qwt/form_1.png
552share/doc/qwt/form_2.png 559share/doc/qwt/form_2.png
553share/doc/qwt/form_3.png 560share/doc/qwt/form_3.png
 561share/doc/qwt/form_4.png
 562share/doc/qwt/form_5.png
554share/doc/qwt/formula.repository 563share/doc/qwt/formula.repository
555share/doc/qwt/functions.html 564share/doc/qwt/functions.html
556share/doc/qwt/functions_0x62.html 565share/doc/qwt/functions_0x62.html
557share/doc/qwt/functions_0x63.html 566share/doc/qwt/functions_0x63.html
558share/doc/qwt/functions_0x64.html 567share/doc/qwt/functions_0x64.html
559share/doc/qwt/functions_0x65.html 568share/doc/qwt/functions_0x65.html
560share/doc/qwt/functions_0x66.html 569share/doc/qwt/functions_0x66.html
561share/doc/qwt/functions_0x67.html 570share/doc/qwt/functions_0x67.html
562share/doc/qwt/functions_0x68.html 571share/doc/qwt/functions_0x68.html
563share/doc/qwt/functions_0x69.html 572share/doc/qwt/functions_0x69.html
564share/doc/qwt/functions_0x6b.html 573share/doc/qwt/functions_0x6b.html
565share/doc/qwt/functions_0x6c.html 574share/doc/qwt/functions_0x6c.html
566share/doc/qwt/functions_0x6d.html 575share/doc/qwt/functions_0x6d.html
@@ -568,254 +577,332 @@ share/doc/qwt/functions_0x6e.html @@ -568,254 +577,332 @@ share/doc/qwt/functions_0x6e.html
568share/doc/qwt/functions_0x6f.html 577share/doc/qwt/functions_0x6f.html
569share/doc/qwt/functions_0x70.html 578share/doc/qwt/functions_0x70.html
570share/doc/qwt/functions_0x72.html 579share/doc/qwt/functions_0x72.html
571share/doc/qwt/functions_0x73.html 580share/doc/qwt/functions_0x73.html
572share/doc/qwt/functions_0x74.html 581share/doc/qwt/functions_0x74.html
573share/doc/qwt/functions_0x75.html 582share/doc/qwt/functions_0x75.html
574share/doc/qwt/functions_0x76.html 583share/doc/qwt/functions_0x76.html
575share/doc/qwt/functions_0x77.html 584share/doc/qwt/functions_0x77.html
576share/doc/qwt/functions_0x78.html 585share/doc/qwt/functions_0x78.html
577share/doc/qwt/functions_0x79.html 586share/doc/qwt/functions_0x79.html
578share/doc/qwt/functions_0x7a.html 587share/doc/qwt/functions_0x7a.html
579share/doc/qwt/functions_0x7e.html 588share/doc/qwt/functions_0x7e.html
580share/doc/qwt/functions_enum.html 589share/doc/qwt/functions_enum.html
 590share/doc/qwt/functions_eval.html
 591share/doc/qwt/functions_eval_0x62.html
 592share/doc/qwt/functions_eval_0x63.html
 593share/doc/qwt/functions_eval_0x64.html
 594share/doc/qwt/functions_eval_0x65.html
 595share/doc/qwt/functions_eval_0x66.html
 596share/doc/qwt/functions_eval_0x67.html
 597share/doc/qwt/functions_eval_0x68.html
 598share/doc/qwt/functions_eval_0x69.html
 599share/doc/qwt/functions_eval_0x6b.html
 600share/doc/qwt/functions_eval_0x6c.html
 601share/doc/qwt/functions_eval_0x6d.html
 602share/doc/qwt/functions_eval_0x6e.html
 603share/doc/qwt/functions_eval_0x6f.html
 604share/doc/qwt/functions_eval_0x70.html
 605share/doc/qwt/functions_eval_0x72.html
 606share/doc/qwt/functions_eval_0x73.html
 607share/doc/qwt/functions_eval_0x74.html
 608share/doc/qwt/functions_eval_0x75.html
 609share/doc/qwt/functions_eval_0x76.html
 610share/doc/qwt/functions_eval_0x78.html
 611share/doc/qwt/functions_eval_0x79.html
581share/doc/qwt/functions_func.html 612share/doc/qwt/functions_func.html
582share/doc/qwt/functions_func_0x62.html 613share/doc/qwt/functions_func_0x62.html
583share/doc/qwt/functions_func_0x63.html 614share/doc/qwt/functions_func_0x63.html
584share/doc/qwt/functions_func_0x64.html 615share/doc/qwt/functions_func_0x64.html
585share/doc/qwt/functions_func_0x65.html 616share/doc/qwt/functions_func_0x65.html
586share/doc/qwt/functions_func_0x66.html 617share/doc/qwt/functions_func_0x66.html
587share/doc/qwt/functions_func_0x67.html 618share/doc/qwt/functions_func_0x67.html
588share/doc/qwt/functions_func_0x68.html 619share/doc/qwt/functions_func_0x68.html
589share/doc/qwt/functions_func_0x69.html 620share/doc/qwt/functions_func_0x69.html
590share/doc/qwt/functions_func_0x6b.html 621share/doc/qwt/functions_func_0x6b.html
591share/doc/qwt/functions_func_0x6c.html 622share/doc/qwt/functions_func_0x6c.html
592share/doc/qwt/functions_func_0x6d.html 623share/doc/qwt/functions_func_0x6d.html
593share/doc/qwt/functions_func_0x6e.html 624share/doc/qwt/functions_func_0x6e.html
594share/doc/qwt/functions_func_0x6f.html 625share/doc/qwt/functions_func_0x6f.html
595share/doc/qwt/functions_func_0x70.html 626share/doc/qwt/functions_func_0x70.html
596share/doc/qwt/functions_func_0x72.html 627share/doc/qwt/functions_func_0x72.html
597share/doc/qwt/functions_func_0x73.html 628share/doc/qwt/functions_func_0x73.html
598share/doc/qwt/functions_func_0x74.html 629share/doc/qwt/functions_func_0x74.html
599share/doc/qwt/functions_func_0x75.html 630share/doc/qwt/functions_func_0x75.html
600share/doc/qwt/functions_func_0x76.html 631share/doc/qwt/functions_func_0x76.html
601share/doc/qwt/functions_func_0x77.html 632share/doc/qwt/functions_func_0x77.html
602share/doc/qwt/functions_func_0x78.html 633share/doc/qwt/functions_func_0x78.html
603share/doc/qwt/functions_func_0x79.html 634share/doc/qwt/functions_func_0x79.html
604share/doc/qwt/functions_func_0x7a.html 635share/doc/qwt/functions_func_0x7a.html
605share/doc/qwt/functions_func_0x7e.html 636share/doc/qwt/functions_func_0x7e.html
 637share/doc/qwt/functions_type.html
 638share/doc/qwt/functions_vars.html
606share/doc/qwt/graph.png 639share/doc/qwt/graph.png
607share/doc/qwt/graph_legend.dot 
608share/doc/qwt/graph_legend.html 640share/doc/qwt/graph_legend.html
 641share/doc/qwt/graph_legend.md5
609share/doc/qwt/graph_legend.png 642share/doc/qwt/graph_legend.png
610share/doc/qwt/hierarchy.html 643share/doc/qwt/hierarchy.html
611share/doc/qwt/histogram.png 644share/doc/qwt/histogram.png
612share/doc/qwt/histogramscreenshots.html 645share/doc/qwt/histogramscreenshots.html
613share/doc/qwt/index.html 646share/doc/qwt/index.html
614share/doc/qwt/index.qhp 647share/doc/qwt/index.qhp
615share/doc/qwt/inherit__graph__0.map 648share/doc/qwt/inherit_graph_0.map
616share/doc/qwt/inherit__graph__0.md5 649share/doc/qwt/inherit_graph_0.md5
617share/doc/qwt/inherit__graph__0.png 650share/doc/qwt/inherit_graph_0.png
618share/doc/qwt/inherit__graph__1.map 651share/doc/qwt/inherit_graph_1.map
619share/doc/qwt/inherit__graph__1.md5 652share/doc/qwt/inherit_graph_1.md5
620share/doc/qwt/inherit__graph__1.png 653share/doc/qwt/inherit_graph_1.png
621share/doc/qwt/inherit__graph__10.map 654share/doc/qwt/inherit_graph_10.map
622share/doc/qwt/inherit__graph__10.md5 655share/doc/qwt/inherit_graph_10.md5
623share/doc/qwt/inherit__graph__10.png 656share/doc/qwt/inherit_graph_10.png
624share/doc/qwt/inherit__graph__11.map 657share/doc/qwt/inherit_graph_11.map
625share/doc/qwt/inherit__graph__11.md5 658share/doc/qwt/inherit_graph_11.md5
626share/doc/qwt/inherit__graph__11.png 659share/doc/qwt/inherit_graph_11.png
627share/doc/qwt/inherit__graph__12.map 660share/doc/qwt/inherit_graph_12.map
628share/doc/qwt/inherit__graph__12.md5 661share/doc/qwt/inherit_graph_12.md5
629share/doc/qwt/inherit__graph__12.png 662share/doc/qwt/inherit_graph_12.png
630share/doc/qwt/inherit__graph__13.map 663share/doc/qwt/inherit_graph_13.map
631share/doc/qwt/inherit__graph__13.md5 664share/doc/qwt/inherit_graph_13.md5
632share/doc/qwt/inherit__graph__13.png 665share/doc/qwt/inherit_graph_13.png
633share/doc/qwt/inherit__graph__14.map 666share/doc/qwt/inherit_graph_14.map
634share/doc/qwt/inherit__graph__14.md5 667share/doc/qwt/inherit_graph_14.md5
635share/doc/qwt/inherit__graph__14.png 668share/doc/qwt/inherit_graph_14.png
636share/doc/qwt/inherit__graph__15.map 669share/doc/qwt/inherit_graph_15.map
637share/doc/qwt/inherit__graph__15.md5 670share/doc/qwt/inherit_graph_15.md5
638share/doc/qwt/inherit__graph__15.png 671share/doc/qwt/inherit_graph_15.png
639share/doc/qwt/inherit__graph__16.map 672share/doc/qwt/inherit_graph_16.map
640share/doc/qwt/inherit__graph__16.md5 673share/doc/qwt/inherit_graph_16.md5
641share/doc/qwt/inherit__graph__16.png 674share/doc/qwt/inherit_graph_16.png
642share/doc/qwt/inherit__graph__17.map 675share/doc/qwt/inherit_graph_17.map
643share/doc/qwt/inherit__graph__17.md5 676share/doc/qwt/inherit_graph_17.md5
644share/doc/qwt/inherit__graph__17.png 677share/doc/qwt/inherit_graph_17.png
645share/doc/qwt/inherit__graph__18.map 678share/doc/qwt/inherit_graph_18.map
646share/doc/qwt/inherit__graph__18.md5 679share/doc/qwt/inherit_graph_18.md5
647share/doc/qwt/inherit__graph__18.png 680share/doc/qwt/inherit_graph_18.png
648share/doc/qwt/inherit__graph__19.map 681share/doc/qwt/inherit_graph_19.map
649share/doc/qwt/inherit__graph__19.md5 682share/doc/qwt/inherit_graph_19.md5
650share/doc/qwt/inherit__graph__19.png 683share/doc/qwt/inherit_graph_19.png
651share/doc/qwt/inherit__graph__2.map 684share/doc/qwt/inherit_graph_2.map
652share/doc/qwt/inherit__graph__2.md5 685share/doc/qwt/inherit_graph_2.md5
653share/doc/qwt/inherit__graph__2.png 686share/doc/qwt/inherit_graph_2.png
654share/doc/qwt/inherit__graph__20.map 687share/doc/qwt/inherit_graph_20.map
655share/doc/qwt/inherit__graph__20.md5 688share/doc/qwt/inherit_graph_20.md5
656share/doc/qwt/inherit__graph__20.png 689share/doc/qwt/inherit_graph_20.png
657share/doc/qwt/inherit__graph__21.map 690share/doc/qwt/inherit_graph_21.map
658share/doc/qwt/inherit__graph__21.md5 691share/doc/qwt/inherit_graph_21.md5
659share/doc/qwt/inherit__graph__21.png 692share/doc/qwt/inherit_graph_21.png
660share/doc/qwt/inherit__graph__22.map 693share/doc/qwt/inherit_graph_22.map
661share/doc/qwt/inherit__graph__22.md5 694share/doc/qwt/inherit_graph_22.md5
662share/doc/qwt/inherit__graph__22.png 695share/doc/qwt/inherit_graph_22.png
663share/doc/qwt/inherit__graph__23.map 696share/doc/qwt/inherit_graph_23.map
664share/doc/qwt/inherit__graph__23.md5 697share/doc/qwt/inherit_graph_23.md5
665share/doc/qwt/inherit__graph__23.png 698share/doc/qwt/inherit_graph_23.png
666share/doc/qwt/inherit__graph__24.map 699share/doc/qwt/inherit_graph_24.map
667share/doc/qwt/inherit__graph__24.md5 700share/doc/qwt/inherit_graph_24.md5
668share/doc/qwt/inherit__graph__24.png 701share/doc/qwt/inherit_graph_24.png
669share/doc/qwt/inherit__graph__25.map 702share/doc/qwt/inherit_graph_25.map
670share/doc/qwt/inherit__graph__25.md5 703share/doc/qwt/inherit_graph_25.md5
671share/doc/qwt/inherit__graph__25.png 704share/doc/qwt/inherit_graph_25.png
672share/doc/qwt/inherit__graph__26.map 705share/doc/qwt/inherit_graph_26.map
673share/doc/qwt/inherit__graph__26.md5 706share/doc/qwt/inherit_graph_26.md5
674share/doc/qwt/inherit__graph__26.png 707share/doc/qwt/inherit_graph_26.png
675share/doc/qwt/inherit__graph__27.map 708share/doc/qwt/inherit_graph_27.map
676share/doc/qwt/inherit__graph__27.md5 709share/doc/qwt/inherit_graph_27.md5
677share/doc/qwt/inherit__graph__27.png 710share/doc/qwt/inherit_graph_27.png
678share/doc/qwt/inherit__graph__28.map 711share/doc/qwt/inherit_graph_28.map
679share/doc/qwt/inherit__graph__28.md5 712share/doc/qwt/inherit_graph_28.md5
680share/doc/qwt/inherit__graph__28.png 713share/doc/qwt/inherit_graph_28.png
681share/doc/qwt/inherit__graph__29.map 714share/doc/qwt/inherit_graph_29.map
682share/doc/qwt/inherit__graph__29.md5 715share/doc/qwt/inherit_graph_29.md5
683share/doc/qwt/inherit__graph__29.png 716share/doc/qwt/inherit_graph_29.png
684share/doc/qwt/inherit__graph__3.map 717share/doc/qwt/inherit_graph_3.map
685share/doc/qwt/inherit__graph__3.md5 718share/doc/qwt/inherit_graph_3.md5
686share/doc/qwt/inherit__graph__3.png 719share/doc/qwt/inherit_graph_3.png
687share/doc/qwt/inherit__graph__30.map 720share/doc/qwt/inherit_graph_30.map
688share/doc/qwt/inherit__graph__30.md5 721share/doc/qwt/inherit_graph_30.md5
689share/doc/qwt/inherit__graph__30.png 722share/doc/qwt/inherit_graph_30.png
690share/doc/qwt/inherit__graph__31.map 723share/doc/qwt/inherit_graph_31.map
691share/doc/qwt/inherit__graph__31.md5 724share/doc/qwt/inherit_graph_31.md5
692share/doc/qwt/inherit__graph__31.png 725share/doc/qwt/inherit_graph_31.png
693share/doc/qwt/inherit__graph__32.map 726share/doc/qwt/inherit_graph_32.map
694share/doc/qwt/inherit__graph__32.md5 727share/doc/qwt/inherit_graph_32.md5
695share/doc/qwt/inherit__graph__32.png 728share/doc/qwt/inherit_graph_32.png
696share/doc/qwt/inherit__graph__33.map 729share/doc/qwt/inherit_graph_33.map
697share/doc/qwt/inherit__graph__33.md5 730share/doc/qwt/inherit_graph_33.md5
698share/doc/qwt/inherit__graph__33.png 731share/doc/qwt/inherit_graph_33.png
699share/doc/qwt/inherit__graph__34.map 732share/doc/qwt/inherit_graph_34.map
700share/doc/qwt/inherit__graph__34.md5 733share/doc/qwt/inherit_graph_34.md5
701share/doc/qwt/inherit__graph__34.png 734share/doc/qwt/inherit_graph_34.png
702share/doc/qwt/inherit__graph__35.map 735share/doc/qwt/inherit_graph_35.map
703share/doc/qwt/inherit__graph__35.md5 736share/doc/qwt/inherit_graph_35.md5
704share/doc/qwt/inherit__graph__35.png 737share/doc/qwt/inherit_graph_35.png
705share/doc/qwt/inherit__graph__36.map 738share/doc/qwt/inherit_graph_36.map
706share/doc/qwt/inherit__graph__36.md5 739share/doc/qwt/inherit_graph_36.md5
707share/doc/qwt/inherit__graph__36.png 740share/doc/qwt/inherit_graph_36.png
708share/doc/qwt/inherit__graph__37.map 741share/doc/qwt/inherit_graph_37.map
709share/doc/qwt/inherit__graph__37.md5 742share/doc/qwt/inherit_graph_37.md5
710share/doc/qwt/inherit__graph__37.png 743share/doc/qwt/inherit_graph_37.png
711share/doc/qwt/inherit__graph__38.map 744share/doc/qwt/inherit_graph_38.map
712share/doc/qwt/inherit__graph__38.md5 745share/doc/qwt/inherit_graph_38.md5
713share/doc/qwt/inherit__graph__38.png 746share/doc/qwt/inherit_graph_38.png
714share/doc/qwt/inherit__graph__4.map 747share/doc/qwt/inherit_graph_39.map
715share/doc/qwt/inherit__graph__4.md5 748share/doc/qwt/inherit_graph_39.md5
716share/doc/qwt/inherit__graph__4.png 749share/doc/qwt/inherit_graph_39.png
717share/doc/qwt/inherit__graph__5.map 750share/doc/qwt/inherit_graph_4.map
718share/doc/qwt/inherit__graph__5.md5 751share/doc/qwt/inherit_graph_4.md5
719share/doc/qwt/inherit__graph__5.png 752share/doc/qwt/inherit_graph_4.png
720share/doc/qwt/inherit__graph__6.map 753share/doc/qwt/inherit_graph_40.map
721share/doc/qwt/inherit__graph__6.md5 754share/doc/qwt/inherit_graph_40.md5
722share/doc/qwt/inherit__graph__6.png 755share/doc/qwt/inherit_graph_40.png
723share/doc/qwt/inherit__graph__7.map 756share/doc/qwt/inherit_graph_41.map
724share/doc/qwt/inherit__graph__7.md5 757share/doc/qwt/inherit_graph_41.md5
725share/doc/qwt/inherit__graph__7.png 758share/doc/qwt/inherit_graph_41.png
726share/doc/qwt/inherit__graph__8.map 759share/doc/qwt/inherit_graph_42.map
727share/doc/qwt/inherit__graph__8.md5 760share/doc/qwt/inherit_graph_42.md5
728share/doc/qwt/inherit__graph__8.png 761share/doc/qwt/inherit_graph_42.png
729share/doc/qwt/inherit__graph__9.map 762share/doc/qwt/inherit_graph_43.map
730share/doc/qwt/inherit__graph__9.md5 763share/doc/qwt/inherit_graph_43.md5
731share/doc/qwt/inherit__graph__9.png 764share/doc/qwt/inherit_graph_43.png
 765share/doc/qwt/inherit_graph_44.map
 766share/doc/qwt/inherit_graph_44.md5
 767share/doc/qwt/inherit_graph_44.png
 768share/doc/qwt/inherit_graph_45.map
 769share/doc/qwt/inherit_graph_45.md5
 770share/doc/qwt/inherit_graph_45.png
 771share/doc/qwt/inherit_graph_46.map
 772share/doc/qwt/inherit_graph_46.md5
 773share/doc/qwt/inherit_graph_46.png
 774share/doc/qwt/inherit_graph_47.map
 775share/doc/qwt/inherit_graph_47.md5
 776share/doc/qwt/inherit_graph_47.png
 777share/doc/qwt/inherit_graph_48.map
 778share/doc/qwt/inherit_graph_48.md5
 779share/doc/qwt/inherit_graph_48.png
 780share/doc/qwt/inherit_graph_49.map
 781share/doc/qwt/inherit_graph_49.md5
 782share/doc/qwt/inherit_graph_49.png
 783share/doc/qwt/inherit_graph_5.map
 784share/doc/qwt/inherit_graph_5.md5
 785share/doc/qwt/inherit_graph_5.png
 786share/doc/qwt/inherit_graph_50.map
 787share/doc/qwt/inherit_graph_50.md5
 788share/doc/qwt/inherit_graph_50.png
 789share/doc/qwt/inherit_graph_51.map
 790share/doc/qwt/inherit_graph_51.md5
 791share/doc/qwt/inherit_graph_51.png
 792share/doc/qwt/inherit_graph_52.map
 793share/doc/qwt/inherit_graph_52.md5
 794share/doc/qwt/inherit_graph_52.png
 795share/doc/qwt/inherit_graph_6.map
 796share/doc/qwt/inherit_graph_6.md5
 797share/doc/qwt/inherit_graph_6.png
 798share/doc/qwt/inherit_graph_7.map
 799share/doc/qwt/inherit_graph_7.md5
 800share/doc/qwt/inherit_graph_7.png
 801share/doc/qwt/inherit_graph_8.map
 802share/doc/qwt/inherit_graph_8.md5
 803share/doc/qwt/inherit_graph_8.png
 804share/doc/qwt/inherit_graph_9.map
 805share/doc/qwt/inherit_graph_9.md5
 806share/doc/qwt/inherit_graph_9.png
732share/doc/qwt/inherits.html 807share/doc/qwt/inherits.html
733share/doc/qwt/knob.png 808share/doc/qwt/knob.png
 809share/doc/qwt/nav_f.png
 810share/doc/qwt/nav_h.png
 811share/doc/qwt/open.png
734share/doc/qwt/pages.html 812share/doc/qwt/pages.html
735share/doc/qwt/plot.png 813share/doc/qwt/plot.png
736share/doc/qwt/qwt__abstract__scale_8h_source.html 814share/doc/qwt/qwt__abstract__scale_8h_source.html
737share/doc/qwt/qwt__abstract__scale__draw_8h_source.html 815share/doc/qwt/qwt__abstract__scale__draw_8h_source.html
738share/doc/qwt/qwt__abstract__slider_8h_source.html 816share/doc/qwt/qwt__abstract__slider_8h_source.html
739share/doc/qwt/qwt__analog__clock_8h_source.html 817share/doc/qwt/qwt__analog__clock_8h_source.html
740share/doc/qwt/qwt__array_8h_source.html 
741share/doc/qwt/qwt__arrow__button_8h_source.html 818share/doc/qwt/qwt__arrow__button_8h_source.html
742share/doc/qwt/qwt__clipper_8h_source.html 819share/doc/qwt/qwt__clipper_8h_source.html
743share/doc/qwt/qwt__color__map_8h_source.html 820share/doc/qwt/qwt__color__map_8h_source.html
 821share/doc/qwt/qwt__column__symbol_8h_source.html
744share/doc/qwt/qwt__compass_8h_source.html 822share/doc/qwt/qwt__compass_8h_source.html
745share/doc/qwt/qwt__compass__rose_8h_source.html 823share/doc/qwt/qwt__compass__rose_8h_source.html
 824share/doc/qwt/qwt__compat_8h_source.html
746share/doc/qwt/qwt__counter_8h_source.html 825share/doc/qwt/qwt__counter_8h_source.html
747share/doc/qwt/qwt__curve__fitter_8h_source.html 826share/doc/qwt/qwt__curve__fitter_8h_source.html
748share/doc/qwt/qwt__data_8h_source.html 
749share/doc/qwt/qwt__dial_8h_source.html 827share/doc/qwt/qwt__dial_8h_source.html
750share/doc/qwt/qwt__dial__needle_8h_source.html 828share/doc/qwt/qwt__dial__needle_8h_source.html
751share/doc/qwt/qwt__double__interval_8h_source.html 
752share/doc/qwt/qwt__double__range_8h_source.html 829share/doc/qwt/qwt__double__range_8h_source.html
753share/doc/qwt/qwt__double__rect_8h_source.html 
754share/doc/qwt/qwt__dyngrid__layout_8h_source.html 830share/doc/qwt/qwt__dyngrid__layout_8h_source.html
755share/doc/qwt/qwt__event__pattern_8h_source.html 831share/doc/qwt/qwt__event__pattern_8h_source.html
756share/doc/qwt/qwt__global_8h_source.html 832share/doc/qwt/qwt__global_8h_source.html
757share/doc/qwt/qwt__interval__data_8h_source.html 833share/doc/qwt/qwt__interval_8h_source.html
 834share/doc/qwt/qwt__interval__symbol_8h_source.html
758share/doc/qwt/qwt__knob_8h_source.html 835share/doc/qwt/qwt__knob_8h_source.html
759share/doc/qwt/qwt__layout__metrics_8h_source.html 
760share/doc/qwt/qwt__legend_8h_source.html 836share/doc/qwt/qwt__legend_8h_source.html
761share/doc/qwt/qwt__legend__item_8h_source.html 837share/doc/qwt/qwt__legend__item_8h_source.html
762share/doc/qwt/qwt__legend__itemmanager_8h_source.html 838share/doc/qwt/qwt__legend__itemmanager_8h_source.html
763share/doc/qwt/qwt__magnifier_8h_source.html 839share/doc/qwt/qwt__magnifier_8h_source.html
764share/doc/qwt/qwt__math_8h_source.html 840share/doc/qwt/qwt__math_8h_source.html
765share/doc/qwt/qwt__mathml__text__engine_8h_source.html 841share/doc/qwt/qwt__mathml__text__engine_8h_source.html
766share/doc/qwt/qwt__paint__buffer_8h_source.html 842share/doc/qwt/qwt__matrix__raster__data_8h_source.html
 843share/doc/qwt/qwt__mml__document_8h_source.html
 844share/doc/qwt/qwt__null__paintdevice_8h_source.html
767share/doc/qwt/qwt__painter_8h_source.html 845share/doc/qwt/qwt__painter_8h_source.html
768share/doc/qwt/qwt__panner_8h_source.html 846share/doc/qwt/qwt__panner_8h_source.html
769share/doc/qwt/qwt__picker_8h_source.html 847share/doc/qwt/qwt__picker_8h_source.html
770share/doc/qwt/qwt__picker__machine_8h_source.html 848share/doc/qwt/qwt__picker__machine_8h_source.html
771share/doc/qwt/qwt__plot_8h_source.html 849share/doc/qwt/qwt__plot_8h_source.html
772share/doc/qwt/qwt__plot__canvas_8h_source.html 850share/doc/qwt/qwt__plot__canvas_8h_source.html
773share/doc/qwt/qwt__plot__curve_8h_source.html 851share/doc/qwt/qwt__plot__curve_8h_source.html
774share/doc/qwt/qwt__plot__dict_8h_source.html 852share/doc/qwt/qwt__plot__dict_8h_source.html
 853share/doc/qwt/qwt__plot__directpainter_8h_source.html
775share/doc/qwt/qwt__plot__grid_8h_source.html 854share/doc/qwt/qwt__plot__grid_8h_source.html
 855share/doc/qwt/qwt__plot__histogram_8h_source.html
 856share/doc/qwt/qwt__plot__intervalcurve_8h_source.html
776share/doc/qwt/qwt__plot__item_8h_source.html 857share/doc/qwt/qwt__plot__item_8h_source.html
777share/doc/qwt/qwt__plot__layout_8h_source.html 858share/doc/qwt/qwt__plot__layout_8h_source.html
778share/doc/qwt/qwt__plot__magnifier_8h_source.html 859share/doc/qwt/qwt__plot__magnifier_8h_source.html
779share/doc/qwt/qwt__plot__marker_8h_source.html 860share/doc/qwt/qwt__plot__marker_8h_source.html
780share/doc/qwt/qwt__plot__panner_8h_source.html 861share/doc/qwt/qwt__plot__panner_8h_source.html
781share/doc/qwt/qwt__plot__picker_8h_source.html 862share/doc/qwt/qwt__plot__picker_8h_source.html
782share/doc/qwt/qwt__plot__printfilter_8h_source.html 
783share/doc/qwt/qwt__plot__rasteritem_8h_source.html 863share/doc/qwt/qwt__plot__rasteritem_8h_source.html
 864share/doc/qwt/qwt__plot__renderer_8h_source.html
784share/doc/qwt/qwt__plot__rescaler_8h_source.html 865share/doc/qwt/qwt__plot__rescaler_8h_source.html
785share/doc/qwt/qwt__plot__scaleitem_8h_source.html 866share/doc/qwt/qwt__plot__scaleitem_8h_source.html
 867share/doc/qwt/qwt__plot__seriesitem_8h_source.html
 868share/doc/qwt/qwt__plot__spectrocurve_8h_source.html
786share/doc/qwt/qwt__plot__spectrogram_8h_source.html 869share/doc/qwt/qwt__plot__spectrogram_8h_source.html
787share/doc/qwt/qwt__plot__svgitem_8h_source.html 870share/doc/qwt/qwt__plot__svgitem_8h_source.html
788share/doc/qwt/qwt__plot__zoomer_8h_source.html 871share/doc/qwt/qwt__plot__zoomer_8h_source.html
789share/doc/qwt/qwt__polygon_8h_source.html 872share/doc/qwt/qwt__point__3d_8h_source.html
 873share/doc/qwt/qwt__point__polar_8h_source.html
790share/doc/qwt/qwt__raster__data_8h_source.html 874share/doc/qwt/qwt__raster__data_8h_source.html
791share/doc/qwt/qwt__round__scale__draw_8h_source.html 875share/doc/qwt/qwt__round__scale__draw_8h_source.html
 876share/doc/qwt/qwt__sampling__thread_8h_source.html
792share/doc/qwt/qwt__scale__div_8h_source.html 877share/doc/qwt/qwt__scale__div_8h_source.html
793share/doc/qwt/qwt__scale__draw_8h_source.html 878share/doc/qwt/qwt__scale__draw_8h_source.html
794share/doc/qwt/qwt__scale__engine_8h_source.html 879share/doc/qwt/qwt__scale__engine_8h_source.html
795share/doc/qwt/qwt__scale__map_8h_source.html 880share/doc/qwt/qwt__scale__map_8h_source.html
796share/doc/qwt/qwt__scale__widget_8h_source.html 881share/doc/qwt/qwt__scale__widget_8h_source.html
 882share/doc/qwt/qwt__series__data_8h_source.html
797share/doc/qwt/qwt__slider_8h_source.html 883share/doc/qwt/qwt__slider_8h_source.html
798share/doc/qwt/qwt__spline_8h_source.html 884share/doc/qwt/qwt__spline_8h_source.html
799share/doc/qwt/qwt__symbol_8h_source.html 885share/doc/qwt/qwt__symbol_8h_source.html
 886share/doc/qwt/qwt__system__clock_8h_source.html
800share/doc/qwt/qwt__text_8h_source.html 887share/doc/qwt/qwt__text_8h_source.html
801share/doc/qwt/qwt__text__engine_8h_source.html 888share/doc/qwt/qwt__text__engine_8h_source.html
802share/doc/qwt/qwt__text__label_8h_source.html 889share/doc/qwt/qwt__text__label_8h_source.html
803share/doc/qwt/qwt__thermo_8h_source.html 890share/doc/qwt/qwt__thermo_8h_source.html
804share/doc/qwt/qwt__valuelist_8h_source.html 
805share/doc/qwt/qwt__wheel_8h_source.html 891share/doc/qwt/qwt__wheel_8h_source.html
806share/doc/qwt/qwtinstall.html 892share/doc/qwt/qwtinstall.html
807share/doc/qwt/qwtlicense.html 893share/doc/qwt/qwtlicense.html
808share/doc/qwt/radio.png 894share/doc/qwt/radio.png
809share/doc/qwt/scatterplot.png 895share/doc/qwt/scatterplot.png
810share/doc/qwt/scatterscreenshots.html 896share/doc/qwt/scatterscreenshots.html
811share/doc/qwt/sinus.png 897share/doc/qwt/sinus.png
812share/doc/qwt/sliders.png 898share/doc/qwt/sliders.png
813share/doc/qwt/spectrogram1.png 899share/doc/qwt/spectrogram1.png
814share/doc/qwt/spectrogram2.png 900share/doc/qwt/spectrogram2.png
815share/doc/qwt/spectrogram3.png 901share/doc/qwt/spectrogram3.png
816share/doc/qwt/spectrogramscreenshots.html 902share/doc/qwt/spectrogramscreenshots.html
817share/doc/qwt/sysinfo.png 903share/doc/qwt/sysinfo.png
818share/doc/qwt/tab_b.gif 904share/doc/qwt/tab_a.png
819share/doc/qwt/tab_l.gif 905share/doc/qwt/tab_b.png
820share/doc/qwt/tab_r.gif 906share/doc/qwt/tab_h.png
 907share/doc/qwt/tab_s.png
821share/doc/qwt/tabs.css 908share/doc/qwt/tabs.css

cvs diff -r1.2 -r1.3 pkgsrc/x11/qwt-qt4/distinfo (expand / switch to unified diff)

--- pkgsrc/x11/qwt-qt4/distinfo 2010/09/07 16:42:09 1.2
+++ pkgsrc/x11/qwt-qt4/distinfo 2011/06/16 15:21:34 1.3
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.2 2010/09/07 16:42:09 drochner Exp $ 1$NetBSD: distinfo,v 1.3 2011/06/16 15:21:34 adam Exp $
2 2
3SHA1 (qwt-5.2.1.tar.bz2) = 89de7a90b7eddad2989470627baa19d59e348df1 3SHA1 (qwt-6.0.0.tar.bz2) = 306957fc06c90f2049aec57e13a971f54c3cb21a
4RMD160 (qwt-5.2.1.tar.bz2) = 28e07ea12323a5217118a38e1a7d730a8ce50fee 4RMD160 (qwt-6.0.0.tar.bz2) = c0e3c31fcc39e6f9a33b23e91d5f8c8125fb4f69
5Size (qwt-5.2.1.tar.bz2) = 1926453 bytes 5Size (qwt-6.0.0.tar.bz2) = 2723203 bytes
6SHA1 (patch-pri) = 13b2c9d496796a233ea41f8a2b104e3d7e127685 6SHA1 (patch-pri) = ebb82465d12ce9dd11141ddd73b1bd0804f9e414
7SHA1 (patch-srcpro) = 14311e4ee2a64ea0afc5932e974b3555d6f9e3b2 7SHA1 (patch-srcpro) = 1addda2225949b5a0abd0eadf6032b9486877307

cvs diff -r1.7 -r1.8 pkgsrc/x11/qwt-qt4/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/x11/qwt-qt4/buildlink3.mk 2011/04/22 13:42:36 1.7
+++ pkgsrc/x11/qwt-qt4/buildlink3.mk 2011/06/16 15:21:34 1.8
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1# $NetBSD: buildlink3.mk,v 1.7 2011/04/22 13:42:36 obache Exp $ 1# $NetBSD: buildlink3.mk,v 1.8 2011/06/16 15:21:34 adam Exp $
2 2
3BUILDLINK_TREE+= qwt 3BUILDLINK_TREE+= qwt
4 4
5.if !defined(QWT_BUILDLINK3_MK) 5.if !defined(QWT_BUILDLINK3_MK)
6QWT_BUILDLINK3_MK:= 6QWT_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.qwt+= qwt>=5.2.0 8BUILDLINK_API_DEPENDS.qwt+= qwt>=6.0.0
9BUILDLINK_ABI_DEPENDS.qwt?= qwt>=5.2.1nb4 9BUILDLINK_ABI_DEPENDS.qwt+= qwt>=6.0.0
10BUILDLINK_PKGSRCDIR.qwt?= ../../x11/qwt-qt4 10BUILDLINK_PKGSRCDIR.qwt?= ../../x11/qwt-qt4
11 11
12.include "../../x11/qt4-libs/buildlink3.mk" 12.include "../../x11/qt4-libs/buildlink3.mk"
13.endif # QWT_BUILDLINK3_MK 13.endif # QWT_BUILDLINK3_MK
14 14
15BUILDLINK_TREE+= -qwt 15BUILDLINK_TREE+= -qwt

cvs diff -r1.2 -r1.3 pkgsrc/x11/qwt-qt4/patches/patch-pri (expand / switch to unified diff)

--- pkgsrc/x11/qwt-qt4/patches/patch-pri 2010/09/07 16:42:09 1.2
+++ pkgsrc/x11/qwt-qt4/patches/patch-pri 2011/06/16 15:21:34 1.3
@@ -1,23 +1,21 @@ @@ -1,23 +1,21 @@
1$NetBSD: patch-pri,v 1.2 2010/09/07 16:42:09 drochner Exp $ 1$NetBSD: patch-pri,v 1.3 2011/06/16 15:21:34 adam Exp $
2 2
3--- qwtconfig.pri.orig 2010-04-11 09:55:06.000000000 +0000 3--- qwtconfig.pri.orig 2011-04-15 10:48:51.000000000 +0000
4+++ qwtconfig.pri 4+++ qwtconfig.pri
5@@ -8,7 +8,7 @@ VER_PAT = 1 5@@ -19,14 +19,14 @@ QWT_VERSION = $${QWT_VER_MAJ}.$${QW
6 VERSION = $${VER_MAJ}.$${VER_MIN}.$${VER_PAT} 6 QWT_INSTALL_PREFIX = $$[QT_INSTALL_PREFIX]
7  7
8 unix { 8 unix {
9- INSTALLBASE = /usr/local/qwt-5.2.1 9- QWT_INSTALL_PREFIX = /usr/local/qwt-$$QWT_VERSION
10+ INSTALLBASE = $$(PREFIX) 10+ QWT_INSTALL_PREFIX = $$(PREFIX)
11 } 11 }
12  12
13 win32 { 13 win32 {
14@@ -17,7 +17,8 @@ win32 { 14 QWT_INSTALL_PREFIX = C:/Qwt-$$QWT_VERSION
 15 }
15  16
16 target.path = $$INSTALLBASE/lib 17-QWT_INSTALL_DOCS = $${QWT_INSTALL_PREFIX}/doc
17 headers.path = $$INSTALLBASE/include 18+QWT_INSTALL_DOCS = $${QWT_INSTALL_PREFIX}/share/doc/qwt
18-doc.path = $$INSTALLBASE/doc 19 QWT_INSTALL_HEADERS = $${QWT_INSTALL_PREFIX}/include
19+doc.path = $$INSTALLBASE/share/doc/qwt 20 QWT_INSTALL_LIBS = $${QWT_INSTALL_PREFIX}/lib
20+man.path = $$INSTALLBASE/${PKGMANDIR} 
21  21
22 ###################################################################### 
23 # qmake internal options 

cvs diff -r1.1.1.1 -r1.2 pkgsrc/x11/qwt-qt4/patches/patch-srcpro (expand / switch to unified diff)

--- pkgsrc/x11/qwt-qt4/patches/patch-srcpro 2009/11/24 19:22:33 1.1.1.1
+++ pkgsrc/x11/qwt-qt4/patches/patch-srcpro 2011/06/16 15:21:34 1.2
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: patch-srcpro,v 1.1.1.1 2009/11/24 19:22:33 drochner Exp $ 1$NetBSD: patch-srcpro,v 1.2 2011/06/16 15:21:34 adam Exp $
2 2
3--- src/src.pro.orig 2009-03-22 16:41:05.000000000 +0100 3--- src/src.pro.orig 2011-04-15 10:48:51.000000000 +0000
4+++ src/src.pro 4+++ src/src.pro
5@@ -216,9 +216,10 @@ contains(CONFIG, QwtWidgets) { 5@@ -216,11 +216,11 @@ contains(QWT_CONFIG, QwtWidgets) {
6 # Install directives 
7  6
8 headers.files = $$HEADERS 7 target.path = $${QWT_INSTALL_LIBS}
9-doc.files = $${QWT_ROOT}/doc/html $${QWT_ROOT}/doc/qwt-5.2.0.qch 8
10-unix { 9-doc.files = $${QWT_ROOT}/doc/html
11- doc.files += $${QWT_ROOT}/doc/man 10-unix:doc.files += $${QWT_ROOT}/doc/man
12-} 
13+doc.files = $${QWT_ROOT}/doc/html/* 11+doc.files = $${QWT_ROOT}/doc/html/*
14+man.files = $${QWT_ROOT}/doc/man/* 12+man.files = $${QWT_ROOT}/doc/man/*
 13 doc.path = $${QWT_INSTALL_DOCS}
 14
 15-INSTALLS = target doc
 16+INSTALLS = target doc man
 17
 18 CONFIG(lib_bundle) {
15  19
16 INSTALLS = target headers doc 
17+unix { 
18+ INSTALLS += man 
19+}