changelog.txt 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. #### Version 1.3.2 released on 22.12.15 ####
  2. Bugfixes [Backported from 2.0.0 branch]:
  3. - Fixed possible crash when having a QCPGraph with scatters only and a non-transparent main/fill brush of the graph
  4. - Fixed QCPItemPixmap not updating internally cached scaled pixmap if new pixmap set with same scaled dimensions
  5. - When using log axis scale and zooming out as far as possible (~1e-280..1e280), axis doesn't end up in (via mouse) unrecoverable range with strange axis ticks anymore
  6. - Axis tick label algorithm for beautifully typeset powers now checks whether "e" in tick label is actually part of a number before converting the exponent to superscript
  7. - Fixed QCustomPlot::moveLayer performing incorrect move and possible crash in certain situations
  8. - Fixed possible crash on QCustomPlot destruction due to wrong QObject-hierarchy. Only occurs if a QCPAxisRect is removed from the normal QCustomPlot destruction hierarchy by taking it out of its layout
  9. - Fixed possible freeze when data values become infinity after coord-to-pixel transformation (e.g. maximally zoomed out log axis), and line style is not solid (e.g. dashed) or phFastPolylines is disabled
  10. Other [Backported from 2.0.0 branch]:
  11. - A few documentation fixes/improvements
  12. - Qt5.5 compatibility (If you use PDF export, test your outputs, as output dimensions might change when switching Qt versions -- QCP does not try to emulate previous Qt version behaviour here)
  13. - QCP now includes <QtPrintSupport/QtPrintSupport> instead of just <QtPrintSupport> because some users had problems with the latter. Please report if you now experience issues due to the new include.
  14. #### Version 1.3.1 released on 25.04.15 ####
  15. Bugfixes:
  16. - Fixed bug that prevented automatic axis rescaling when some graphs/curves had only NaN data points
  17. - Improved QCPItemBracket selection boundaries, especially bsCurly and bsCalligraphic
  18. - Fixed bug of axis rect and colorscale background shifted downward by one logical pixel (visible in scaled png and pdf export)
  19. - Replot upon mouse release is now only performed if a selection change has actually happened (improves responsivity on particularly complex plots)
  20. - Fixed bug that allowed scatter-only graphs to be selected by clicking the non-existent line between scatters
  21. - Fixed crash when trying to select a scatter-only QCPGraph whose only points in the visible key range are at identical key coordinates and vertically off-screen, with adaptive sampling enabled
  22. - Fixed pdf export of QCPColorMap with enabled interpolation (didn't appear interpolated in pdf)
  23. - Reduced QCPColorMap jitter of internal cell boundaries for small sized maps when viewed with high zoom, by applying oversampling factors dependant on map size
  24. - Fixed bug of QCPColorMap::fill() not causing the buffered internal image map to be updated, and thus the change didn't become visible immediately
  25. - Axis labels with size set in pixels (setPixelSize) instead of points now correctly calculate the exponent's font size if beautifully typeset powers are enabled
  26. - Fixed QCPColorMap appearing at the wrong position for logarithmic axes and color map spanning larger ranges
  27. Other:
  28. - Pdf export used to embed entire QCPColorMaps, potentially leading to large files. Now only the visible portion of the map is embedded in the pdf
  29. - Many documentation fixes and extensions, style modernization
  30. - Reduced documentation file size (and thus full package size) by automatically reducing image palettes during package build
  31. - Fixed MSVC warning message (at warning level 4) due to temporary QLists in some foreach statements
  32. #### Version 1.3.0 released on 27.12.14 ####
  33. Added features:
  34. - New plottable class QCPFinancial allows display of candlestick/ohlc data
  35. - New class QCPBarsGroup allows horizontal grouping of multiple QCPBars plottables
  36. - Added QCPBars feature allowing non-zero base values (see property QCPBars::setBaseValue)
  37. - Added QCPBars width type, for more flexible bar widths (see property QCPBars::setWidthType)
  38. - New QCPCurve optimization algorithm, fixes bug which caused line flicker at deep zoom into curve segment
  39. - Item positions can now have different position types and anchors for their x and y coordinates (QCPItemPosition::setTypeX/Y, setParentAnchorX/Y)
  40. - QCPGraph and QCPCurve can now display gaps in their lines, when inserting quiet NaNs as values (std::numeric_limits<double>::quiet_NaN())
  41. - QCPAxis now supports placing the tick labels inside the axis rect, for particularly space saving plots (QCPAxis::setTickLabelSide)
  42. Added features after beta:
  43. - Made code compatible with QT_NO_CAST_FROM_ASCII, QT_NO_CAST_TO_ASCII
  44. - Added compatibility with QT_NO_KEYWORDS after sending code files through a simple reg-ex script
  45. - Added possibility to inject own QCPAxis(-subclasses) via second, optional QCPAxisRect::addAxis parameter
  46. - Added parameter to QCPItemPixmap::setScaled to specify transformation mode
  47. Bugfixes:
  48. - Fixed bug in QCPCurve rendering of very zoomed-in curves (via new optimization algorithm)
  49. - Fixed conflict with MSVC-specific keyword "interface" in text-document-integration example
  50. - Fixed QCPScatterStyle bug ignoring the specified pen in the custom scatter shape constructor
  51. - Fixed bug (possible crash) during QCustomPlot teardown, when a QCPLegend that has no parent layout (i.e. was removed from layout manually) gets deleted
  52. Bugfixes after beta:
  53. - Fixed bug of QCPColorMap/QCPColorGradient colors being off by one color sampling step (only noticeable in special cases)
  54. - Fixed bug of QCPGraph adaptive sampling on vertical key axis, causing staggered look
  55. - Fixed low (float) precision in QCPCurve optimization algorithm, by not using QVector2D anymore
  56. Other:
  57. - Qt 5.3 and Qt 5.4 compatibility
  58. #### Version 1.2.1 released on 07.04.14 ####
  59. Bugfixes:
  60. - Fixed regression which garbled date-time tick labels on axes, if setTickLabelType is ltDateTime and setNumberFormat contains the "b" option
  61. #### Version 1.2.0 released on 14.03.14 ####
  62. Added features:
  63. - Adaptive Sampling for QCPGraph greatly improves performance for high data densities (see QCPGraph::setAdaptiveSampling)
  64. - QCPColorMap plottable with QCPColorScale layout element allows plotting of 2D color maps
  65. - QCustomPlot::savePdf now has additional optional parameters pdfCreator and pdfTitle to set according PDF metadata fields
  66. - QCustomPlot::replot now allows specifying whether the widget update is immediate (repaint) or queued (update)
  67. - QCPRange operators +, -, *, / with double operand for range shifting and scaling, and ==, != for range comparison
  68. - Layers now have a visibility property (QCPLayer::setVisible)
  69. - static functions QCPAxis::opposite and QCPAxis::orientation now offer more convenience when handling axis types
  70. - added notification signals for selectability change (selectableChanged) on all objects that have a selected/selectable property
  71. - added notification signal for QCPAxis scaleType property
  72. - added notification signal QCPLayerable::layerChanged
  73. Bugfixes:
  74. - Fixed assert halt, when QCPAxis auto tick labels not disabled but nevertheless a custom non-number tick label ending in "e" given
  75. - Fixed painting glitches when QCustomPlot resized inside a QMdiArea or under certain conditions inside a QLayout
  76. - If changing QCPAxis::scaleType and thus causing range sanitizing and a range modification, rangeChanged wouldn't be emitted
  77. - Fixed documentation bug that caused indentation to be lost in code examples
  78. Bugfixes after beta:
  79. - Fixed bug that caused crash if clicked-on legend item is removed in mousePressEvent.
  80. - On some systems, font size defaults to -1, which used to cause a debug output in QCPAxisPainterPrivate::TickLabelDataQCP. Now it's checked before setting values based on the default font size.
  81. - When using multiple axes on one side, setting one to invisible didn't properly compress the freed space.
  82. - Fixed bug that allowed selection of plottables when clicking in the bottom or top margin of a QCPAxisRect (outside the inner rect)
  83. Other:
  84. - In method QCPAbstractPlottable::getKeyRange/getValueRange, renamed parameter "validRange" to "foundRange", to better reflect its meaning (and contrast it from QCPRange::validRange)
  85. - QCPAxis low-level axis painting methods exported to QCPAxisPainterPrivate
  86. #### Version 1.1.1 released on 09.12.13 ####
  87. Bugfixes:
  88. - Fixed bug causing legends blocking input events from reaching underlying axis rect even if legend is invisible
  89. - Added missing Q_PROPERTY for QCPAxis::setDateTimeSpec
  90. - Fixed behaviour of QCPAxisRect::setupFullAxesBox (now transfers more properties from bottom/left to top/right axes and sets visibility of bottom/left axes to true)
  91. - Made sure PDF export doesn't default to grayscale output on some systems
  92. Other:
  93. - Plotting hint QCP::phForceRepaint is now enabled on all systems (and not only on windows) by default
  94. - Documentation improvements
  95. #### Version 1.1.0 released on 04.11.13 ####
  96. Added features:
  97. - Added QCPRange::expand and QCPRange::expanded
  98. - Added QCPAxis::rescale to rescale axis to all associated plottables
  99. - Added QCPAxis::setDateTimeSpec/dateTimeSpec to allow axis labels either in UTC or local time
  100. - QCPAxis now additionally emits a rangeChanged signal overload that provides the old range as second parameter
  101. Bugfixes:
  102. - Fixed QCustomPlot::rescaleAxes not rescaling properly if first plottable has an empty range
  103. - QCPGraph::rescaleAxes/rescaleKeyAxis/rescaleValueAxis are no longer virtual (never were in base class, was a mistake)
  104. - Fixed bugs in QCPAxis::items and QCPAxisRect::items not properly returning associated items and potentially stalling
  105. Other:
  106. - Internal change from QWeakPointer to QPointer, thus got rid of deprecated Qt functionality
  107. - Qt5.1 and Qt5.2 (beta1) compatibility
  108. - Release packages now extract to single subdirectory and don't place multiple files in current working directory
  109. #### Version 1.0.1 released on 05.09.13 ####
  110. Bugfixes:
  111. - using define flag QCUSTOMPLOT_CHECK_DATA caused debug output when data was correct, instead of invalid (fixed QCP::isInvalidData)
  112. - documentation images are now properly shown when viewed with Qt Assistant
  113. - fixed various documentation mistakes
  114. Other:
  115. - Adapted documentation style sheet to better match Qt5 documentation
  116. #### Version 1.0.0 released on 01.08.13 ####
  117. Quick Summary:
  118. - Layout system for multiple axis rects in one plot
  119. - Multiple axes per side
  120. - Qt5 compatibility
  121. - More flexible and consistent scatter configuration with QCPScatterStyle
  122. - Various interface cleanups/refactoring
  123. - Pixmap-cached axis labels for improved replot performance
  124. Changes that break backward compatibility:
  125. - QCustomPlot::axisRect() changed meaning due to the extensive changes to how axes and axis rects are handled
  126. it now returns a pointer to a QCPAxisRect and takes an integer index as parameter.
  127. - QCPAxis constructor changed to now take QCPAxisRect* as parent
  128. - setAutoMargin, setMarginLeft/Right/Top/Bottom removed due to the axis rect changes (see QCPAxisRect::setMargins/setAutoMargins)
  129. - setAxisRect removed due to the axis rect changes
  130. - setAxisBackground(-Scaled/-ScaledMode) now moved to QCPAxisRect as setBackground(-Scaled/ScaledMode) (access via QCustomPlot::axisRects())
  131. - QCPLegend now is a QCPLayoutElement
  132. - QCPAbstractPlottable::drawLegendIcon parameter "rect" changed from QRect to QRectF
  133. - QCPAbstractLegendItem::draw second parameter removed (position/size now handled via QCPLayoutElement base class)
  134. - removed QCPLegend::setMargin/setMarginLeft/Right/Top/Bottom (now inherits the capability from QCPLayoutElement::setMargins)
  135. - removed QCPLegend::setMinimumSize (now inherits the capability from QCPLayoutElement::setMinimumSize)
  136. - removed enum QCPLegend::PositionStyle, QCPLegend::positionStyle/setPositionStyle/position/setPosition (replaced by capabilities of QCPLayoutInset)
  137. - QCPLegend transformed to work with new layout system (almost everything changed)
  138. - removed entire title interface: QCustomPlot::setTitle/setTitleFont/setTitleColor/setTitleSelected/setTitleSelectedFont/setTitleSelectedColor and
  139. the QCustomPlot::iSelectTitle interaction flag (all functionality is now given by the layout element "QCPPlotTitle" which can be added to the plot layout)
  140. - selectTest functions now take two additional parameters: bool onlySelectable and QVariant *details=0
  141. - selectTest functions now ignores visibility of objects and (if parameter onlySelectable is true) does not anymore ignore selectability of the object
  142. - moved QCustomPlot::Interaction/Interactions to QCP namespace as QCP::Interaction/Interactions
  143. - moved QCustomPlot::setupFullAxesBox() to QCPAxisRect::setupFullAxesBox. Now also accepts parameter to decide whether to connect opposite axis ranges
  144. - moved range dragging/zooming interface from QCustomPlot to QCPAxisRect (setRangeDrag, setRangeZoom, setRangeDragAxes, setRangeZoomAxes,...)
  145. - rangeDrag/Zoom is now set to Qt::Horizontal|Qt::Vertical instead of 0 by default, on the other hand, iRangeDrag/Zoom is unset in interactions by
  146. default (this makes enabling dragging/zooming easier by just adding the interaction flags)
  147. - QCPScatterStyle takes over everything related to handling scatters in all plottables
  148. - removed setScatterPen/Size on QCPGraph and QCPCurve, removed setOutlierPen/Size on QCPStatisticalBox (now handled via QCPScatterStyle)
  149. - modified setScatterStyle on QCPGraph and QCPCurve, and setOutlierStyle on QCPStatisticalBox, to take QCPScatterStyle
  150. - axis grid and subgrid are now reachable via the QCPGrid *QCPAxis::grid() method. (e.g. instead of xAxis->setGrid(true), write xAxis->grid()->setVisible(true))
  151. Added features:
  152. - Axis tick labels are now pixmap-cached, thus increasing replot performance (in usual setups by about 24%). See plotting hint phCacheLabels which is set by default
  153. - Advanced layout system, including the classes QCPLayoutElement, QCPLayout, QCPLayoutGrid, QCPLayoutInset, QCPAxisRect
  154. - QCustomPlot::axisRects() returns all the axis rects in the QCustomPlot.
  155. - QCustomPlot::plotLayout() returns the top level layout (initially a QCPLayoutGrid with one QCPAxisRect inside)
  156. - QCPAxis now may have an offset to the axis rect (setOffset)
  157. - Multiple axes per QCPAxisRect side are now supported (see QCPAxisRect::addAxis)
  158. - QCustomPlot::toPixmap renders the plot into a pixmap and returns it
  159. - When setting tick label rotation to +90 or -90 degrees on a vertical axis, the labels are now centered vertically on the tick height
  160. (This allows space saving vertical tick labels by having the text direction parallel to the axis)
  161. - Substantially increased replot performance when using very large manual tick vectors (> 10000 ticks) via QCPAxis::setTickVector
  162. - QCPAxis and QCPAxisRect now allow easy access to all plottables(), graphs() and items() that are associated with them
  163. - Added QCustomPlot::hasItem method for consistency with plottable interface, hasPlottable
  164. - Added QCPAxisRect::setMinimumMargins as replacement for hardcoded minimum axis margin (15 px) when auto margin is enabled
  165. - Added Flags type QCPAxis::AxisTypes (from QCPAxis::AxisType), used in QCPAxisRect interface
  166. - Automatic margin calculation can now be enabled/disabled on a per-side basis, see QCPAxisRect::setAutoMargins
  167. - QCPAxisRect margins of multiple axis rects can be coupled via QCPMarginGroup
  168. - Added new default layers "background" and "legend" (QCPAxisRect draws its background on the "background" layer, QCPLegend is on the "legend" layer by default)
  169. - Custom scatter style via QCP::ssCustom and respective setCustomScatter functions that take a QPainterPath
  170. - Filled scatters via QCPScatterStyle::setBrush
  171. Added features after beta:
  172. - Added QCustomPlot::toPainter method, to allow rendering with existing painter
  173. - QCPItemEllipse now provides a center anchor
  174. Bugfixes:
  175. - Fixed compile error on ARM
  176. - Wrong legend icons were displayed if using pixmaps for scatters that are smaller than the legend icon rect
  177. - Fixed clipping inaccuracy for rotated tick labels (were hidden too early, because the non-rotated bounding box was used)
  178. - Fixed bug that caused wrong clipping of axis ticks and subticks when the ticks were given manually by QCPAxis::setTickVector
  179. - Fixed Qt5 crash when dragging graph out of view (iterator out of bounds in QCPGraph::getVisibleDataBounds)
  180. - Fixed QCPItemText not scaling properly when using scaled raster export
  181. Bugfixes after beta:
  182. - Fixed bug that clipped the rightmost pixel column of tick labels when caching activated (only visible on windows for superscript exponents)
  183. - Restored compatibility to Qt4.6
  184. - Restored support for -no-RTTI compilation
  185. - Empty manual tick labels are handled more gracefully (no QPainter qDebug messages anymore)
  186. - Fixed type ambiguity in QCPLineEnding::draw causing compile error on ARM
  187. - Fixed bug of grid layouts not propagating the minimum size from their child elements to the parent layout correctly
  188. - Fixed bug of child elements (e.g. axis rects) of inset layouts not properly receiving mouse events
  189. Other:
  190. - Opened up non-amalgamated project structure to public via git repository
  191. #### Version released on 09.06.12 ####
  192. Quick Summary:
  193. - Items (arrows, text,...)
  194. - Layers (easier control over rendering order)
  195. - New antialiasing system (Each objects controls own antialiasing with setAntialiased)
  196. - Performance Improvements
  197. - improved pixel-precise drawing
  198. - easier shared library creation/usage
  199. Changes that (might) break backward compatibility:
  200. - enum QCPGraph::ScatterSymbol was moved to QCP namespace (now QCP::ScatterSymbol).
  201. This replace should fix your code: "QCPGraph::ss" -> "QCP::ss"
  202. - enum QCustomPlot::AntialiasedElement and flag QCustomPlot::AntialiasedElements was moved to QCP namespace
  203. This replace should fix your code: "QCustomPlot::ae" -> "QCP::ae"
  204. - the meaning of QCustomPlot::setAntialiasedElements has changed slightly: It is now an override to force elements to be antialiased. If you want to force
  205. elements to not be drawn antialiased, use the new setNotAntialiasedElements. If an element is mentioned in neither of those functions, it now controls
  206. its antialiasing itself via its "setAntialiased" function(s). (e.g. QCPAxis::setAntialiased(bool), QCPAbstractPlottable::setAntialiased(bool),
  207. QCPAbstractPlottable::setAntialiasedScatters(bool), etc.)
  208. - QCPAxis::setTickVector and QCPAxis::setTickVectorLabels no longer take a pointer but a const reference of the respective QVector as parameter.
  209. (handing over a pointer didn't give any noticeable performance benefits but was inconsistent with the rest of the interface)
  210. - Equally QCPAxis::tickVector and QCPAxis::tickVectorLabels don't return by pointer but by value now
  211. - QCustomPlot::savePngScaled was removed, its purpose is now included as optional parameter "scale" of savePng.
  212. - If you have derived from QCPAbstractPlottable: all selectTest functions now consistently take the argument "const QPointF &pos" which is the test point in pixel coordinates.
  213. (the argument there was "double key, double value" in plot coordinates, before).
  214. - QCPAbstractPlottable, QCPAxis and QCPLegend now inherit from QCPLayerable
  215. - If you have derived from QCPAbstractPlottable: the draw method signature has changed from "draw (..) const" to "draw (..)", i.e. the method
  216. is not const anymore. This allows the draw function of your plottable to perform buffering/caching operations, if necessary.
  217. Added features:
  218. - Item system: QCPAbstractItem, QCPItemAnchor, QCPItemPosition, QCPLineEnding. Allows placing of lines, arrows, text, pixmaps etc.
  219. - New Items: QCPItemStraightLine, QCPItemLine, QCPItemCurve, QCPItemEllipse, QCPItemRect, QCPItemPixmap, QCPItemText, QCPItemBracket, QCPItemTracer
  220. - QCustomPlot::addItem/itemCount/item/removeItem/selectedItems
  221. - signals QCustomPlot::itemClicked/itemDoubleClicked
  222. - the QCustomPlot interactions property now includes iSelectItems (for selection of QCPAbstractItem)
  223. - QCPLineEnding. Represents the different styles a line/curve can end (e.g. different arrows, circle, square, bar, etc.), see e.g. QCPItemCurve::setHead
  224. - Layer system: QCPLayerable, QCPLayer. Allows more sophisticated control over drawing order and a kind of grouping.
  225. - QCPAbstractPlottable, QCPAbstractItem, QCPAxis, QCPGrid, QCPLegend are layerables and derive from QCPLayerable
  226. - QCustomPlot::addLayer/moveLayer/removeLayer/setCurrentLayer/layer/currentLayer/layerCount
  227. - Initially there are three layers: "grid", "main", and "axes". The "main" layer is initially empty and set as current layer, so new plottables/items are put there.
  228. - QCustomPlot::viewport now makes the previously inaccessible viewport rect read-only-accessible (needed that for item-interface)
  229. - PNG export now allows transparent background by calling QCustomPlot::setColor(Qt::transparent) before savePng
  230. - QCPStatisticalBox outlier symbols may now be all scatter symbols, not only hardcoded circles.
  231. - perfect precision of scatter symbol/error bar drawing and clipping in both antialiased and non-antialiased mode, by introducing QCPPainter
  232. that works around some QPainter bugs/inconveniences. Further, more complex symbols like ssCrossSquare used to look crooked, now they look good.
  233. - new antialiasing control system: Each drawing element now has its own "setAntialiased" function to control whether it is drawn antialiased.
  234. - QCustomPlot::setAntialiasedElements and QCustomPlot::setNotAntialiasedElements can be used to override the individual settings.
  235. - Subclasses of QCPAbstractPlottable can now use the convenience functions like applyFillAntialiasingHint or applyScattersAntialiasingHint to
  236. easily make their drawing code comply with the overall antialiasing system.
  237. - QCustomPlot::setNoAntialiasingOnDrag allows greatly improved performance and responsiveness by temporarily disabling all antialiasing while
  238. the user is dragging axis ranges
  239. - QCPGraph can now show scatter symbols at data points and hide its line (see QCPGraph::setScatterStyle, setScatterSize, setScatterPixmap, setLineStyle)
  240. - Grid drawing code was sourced out from QCPAxis to QCPGrid. QCPGrid is mainly an internal class and every QCPAxis owns one. The grid interface still
  241. works through QCPAxis and hasn't changed. The separation allows the grid to be drawn on a different layer as the axes, such that e.g. a graph can
  242. be above the grid but below the axes.
  243. - QCustomPlot::hasPlottable(plottable), returns whether the QCustomPlot contains the plottable
  244. - QCustomPlot::setPlottingHint/setPlottingHints, plotting hints control details about the plotting quality/speed
  245. - export to jpg and bmp added (QCustomPlot::saveJpg/saveBmp), as well as control over compression quality for png and jpg
  246. - multi-select-modifier may now be specified with QCustomPlot::setMultiSelectModifier and is not fixed to Ctrl anymore
  247. Bugfixes:
  248. - fixed QCustomPlot ignores replot after it had size (0,0) even if size becomes valid again
  249. - on Windows, a repaint used to be delayed during dragging/zooming of a complex plot, until the drag operation was done.
  250. This was fixed, i.e. repaints are forced after a replot() call. See QCP::phForceRepaint and setPlottingHints.
  251. - when using the raster paintengine and exporting to scaled PNG, pen widths are now scaled correctly (QPainter bug workaround via QCPPainter)
  252. - PDF export now respects QCustomPlot background color (QCustomPlot::setColor), also Qt::transparent
  253. - fixed a bug on QCPBars and QCPStatisticalBox where auto-rescaling of axis would fail when all data is very small (< 1e-11)
  254. - fixed mouse event propagation bug that prevented range dragging from working on KDE (GNU/Linux)
  255. - fixed a compiler warning on 64-bit systems due to pointer cast to int instead of quintptr in a qDebug output
  256. Other:
  257. - Added support for easier shared library creation (including examples for compiling and using QCustomPlot as shared library)
  258. - QCustomPlot now has the Qt::WA_OpaquePaintEvent widget attribute (gives slightly improved performance).
  259. - QCP::aeGraphs (enum QCP::AntialiasedElement, previously QCustomPlot::aeGraphs) has been marked deprecated since version 02.02.12 and
  260. was now removed. Use QCP::aePlottables instead.
  261. - optional performance-quality-tradeoff for solid graph lines (see QCustomPlot::setPlottingHints).
  262. - marked data classes and QCPRange as Q_MOVABLE_TYPE
  263. - replaced usage of own macro FUNCNAME with Qt macro Q_FUNC_INFO
  264. - QCustomPlot now returns a minimum size hint of 50*50
  265. #### Version released on 31.03.12 ####
  266. Changes that (might) break backward compatibility:
  267. - QCPAbstractLegendItem now inherits from QObject
  268. - mousePress, mouseMove and mouseRelease signals are now emitted before and not after any QCustomPlot processing (range dragging, selecting, etc.)
  269. Added features:
  270. - Interaction system: now allows selecting of objects like plottables, axes, legend and plot title, see QCustomPlot::setInteractions documentation
  271. - Interaction system for plottables:
  272. - setSelectable, setSelected, setSelectedPen, setSelectedBrush, selectTest on QCPAbstractPlottable and all derived plottables
  273. - setSelectionTolerance on QCustomPlot
  274. - selectedPlottables and selectedGraphs on QCustomPlot (returns the list of currently selected plottables/graphs)
  275. - Interaction system for axes:
  276. - setSelectable, setSelected, setSelectedBasePen, setSelectedTickPen, setSelectedSubTickPen, setSelectedLabelFont, setSelectedTickLabelFont,
  277. setSelectedLabelColor, setSelectedTickLabelColor, selectTest on QCPAxis
  278. - selectedAxes on QCustomPlot (returns a list of the axes that currently have selected parts)
  279. - Interaction system for legend:
  280. - setSelectable, setSelected, setSelectedBorderPen, setSelectedIconBorderPen, setSelectedBrush, setSelectedFont, setSelectedTextColor, selectedItems on QCPLegend
  281. - setSelectedFont, setSelectedTextColor, setSelectable, setSelected on QCPAbstractLegendItem
  282. - selectedLegends on QCustomPlot
  283. - Interaction system for title:
  284. - setSelectedTitleFont, setSelectedTitleColor, setTitleSelected on QCustomPlot
  285. - new signals in accordance with the interaction system:
  286. - selectionChangedByUser on QCustomPlot
  287. - selectionChanged on QCPAbstractPlottable
  288. - selectionChanged on QCPAxis
  289. - selectionChanged on QCPLegend and QCPAbstractLegendItem
  290. - plottableClick, legendClick, axisClick, titleClick, plottableDoubleClick, legendDoubleClick, axisDoubleClick, titleDoubleClick on QCustomPlot
  291. - QCustomPlot::deselectAll (deselects everything, i.e. axes and plottables)
  292. - QCPAbstractPlottable::pixelsToCoords (inverse function to the already existing coordsToPixels function)
  293. - QCPRange::contains(double value)
  294. - QCPAxis::setLabelColor and setTickLabelColor
  295. - QCustomPlot::setTitleColor
  296. - QCustomPlot now emits beforeReplot and afterReplot signals. Note that it is safe to make two customPlots mutually call eachothers replot functions
  297. in one of these slots, it will not cause an infinite loop. (usefull for synchronizing axes ranges between two customPlots, because setRange alone doesn't replot)
  298. - If the Qt version is 4.7 or greater, the tick label strings in date-time-mode now support sub-second accuracy (e.g. with format like "hh:mm:ss.zzz").
  299. Bugfixes:
  300. - tick labels/margins should no longer oscillate by one pixel when dragging range or replotting repeatedly while changing e.g. data. This
  301. was caused by a bug in Qt's QFontMetrics::boundingRect function when the font has an integer point size (probably some rounding problem).
  302. The fix hence consists of creating a temporary font (only for bounding-box calculation) which is 0.05pt larger and thus avoiding the
  303. jittering rounding outcome.
  304. - tick label, axis label and plot title colors used to be undefined. This was fixed by providing explicit color properties.
  305. Other:
  306. - fixed some glitches in the documentation
  307. - QCustomPlot::replot and QCustomPlot::rescaleAxes are now slots
  308. #### Version released on 02.02.12 ####
  309. Changes that break backward compatibility:
  310. - renamed all secondary classes from QCustomPlot[...] to QCP[...]:
  311. QCustomPlotAxis -> QCPAxis
  312. QCustomPlotGraph -> QCPGraph
  313. QCustomPlotRange -> QCPRange
  314. QCustomPlotData -> QCPData
  315. QCustomPlotDataMap -> QCPDataMap
  316. QCustomPlotLegend -> QCPLegend
  317. QCustomPlotDataMapIterator -> QCPDataMapIterator
  318. QCustomPlotDataMutableMapIterator -> QCPDataMutableMapIterator
  319. A simple search and replace on all code files should make your code run again, e.g. consider the regex "QCustomPlot(?=[AGRDL])" -> "QCP".
  320. Make sure not to just replace "QCustomPlot" with "QCP" because the main class QCustomPlot hasn't changed to QCP.
  321. This change was necessary because class names became unhandy, pardon my bad naming decision in the beginning.
  322. - QCPAxis::tickLength() and QCPAxis::subTickLength() now each split into two functions for inward and outward ticks (tickLengthIn/tickLengthOut).
  323. - QCPLegend now uses QCPAbstractLegendItem to carry item data (before, the legend was passed QCPGraphs directly)
  324. - QCustomPlot::addGraph() now doesn't return the index of the created graph anymore, but a pointer to the created QCPGraph.
  325. - QCustomPlot::setAutoAddGraphToLegend is replaced by setAutoAddPlottableToLegend
  326. Added features:
  327. - Reversed axis range with QCPAxis::setRangeReversed(bool)
  328. - Tick labels are now only drawn if not clipped by the viewport (widget border) on the sides (e.g. left and right on a horizontal axis).
  329. - Zerolines. Like grid lines only with a separate pen (QCPAxis::setZeroLinePen), at tick position zero.
  330. - Outward ticks. QCPAxis::setTickLength/setSubTickLength now accepts two arguments for inward and outward tick length. This doesn't break
  331. backward compatibility because the second argument (outward) has default value zero and thereby a call with one argument hasn't changed its meaning.
  332. - QCPGraph now inherits from QCPAbstractPlottable
  333. - QCustomPlot::addPlottable/plottable/removePlottable/clearPlottables added to interface with the new QCPAbstractPlottable-based system. The simpler interface
  334. which only acts on QCPGraphs (addGraph, graph, removeGraph, etc.) was adapted internally and is kept for backward compatibility and ease of use.
  335. - QCPLegend items for plottables (e.g. graphs) can automatically wrap their texts to fit the widths, see QCPLegend::setMinimumSize and QCPPlottableLegendItem::setTextWrap.
  336. - QCustomPlot::rescaleAxes. Adapts axis ranges to show all plottables/graphs, by calling QCPAbstractPlottable::rescaleAxes on all plottables in the plot.
  337. - QCPCurve. For plotting of parametric curves.
  338. - QCPBars. For plotting of bar charts.
  339. - QCPStatisticalBox. For statistical box plots.
  340. Bugfixes:
  341. - Fixed QCustomPlot::removeGraph(int) not being able to remove graph index 0
  342. - made QCustomPlot::replot() abort painting when painter initialization fails (e.g. because width/height of QCustomPlot is zero)
  343. - The distance of the axis label from the axis ignored the tick label padding, this could have caused overlapping axis labels and tick labels
  344. - fixed memory leak in QCustomPlot (dtor didn't delete legend)
  345. - fixed bug that prevented QCPAxis::setRangeLower/Upper from setting the value to exactly 0.
  346. Other:
  347. - Changed default error bar handle size (QCustomPlotGraph::setErrorBarSize) from 4 to 6.
  348. - Removed QCustomPlotDataFetcher. Was deprecated and not used class.
  349. - Extended documentation, especially class descriptions.
  350. #### Version released on 15.01.12 ####
  351. Changes that (might) break backward compatibility:
  352. - QCustomPlotGraph now inherits from QObject
  353. Added features:
  354. - Added axis background pixmap (QCustomPlot::setAxisBackground, setAxisBackgroundScaled, setAxisBackgroundScaledMode)
  355. - Added width and height parameter on PDF export function QCustomPlot::savePdf(). This now allows PDF export to
  356. have arbitrary dimensions, independent of the current geometry of the QCustomPlot.
  357. - Added overload of QCustomPlot::removeGraph that takes QCustomPlotGraph* as parameter, instead the index of the graph
  358. - Added all enums to the Qt meta system via Q_ENUMS(). The enums can now be transformed
  359. to QString values easily with the Qt meta system, which makes saving state e.g. as XML
  360. significantly nicer.
  361. - added typedef QMapIterator<double,QCustomPlotData> QCustomPlotDataMapIterator
  362. and typedef QMutableMapIterator<double,QCustomPlotData> QCustomPlotDataMutableMapIterator
  363. for improved information hiding, when using iterators outside QCustomPlot code
  364. Bugfixes:
  365. - Fixed savePngScaled. Axis/label drawing functions used to reset the painter transform
  366. and thereby break savePngScaled. Now they buffer the current transform and restore it afterwards.
  367. - Fixed some glitches in the doxygen comments (affects documentation only)
  368. Other:
  369. - Changed the default tickLabelPadding of top axis from 3 to 6 pixels. Looks better.
  370. - Changed the default QCustomPlot::setAntialiasedElements setting: Graph fills are now antialiased
  371. by default. That's a bit slower, but makes fill borders look better.
  372. #### Version released on 19.11.11 ####
  373. Changes that break backward compatibility:
  374. - QCustomPlotAxis: tickFont and setTickFont renamed to tickLabelFont and setTickLabelFont (for naming consistency)
  375. Other:
  376. - QCustomPlotAxis: Added rotated tick labels, see setTickLabelRotation