Ignore:
Timestamp:
May 10, 2017, 3:20:54 PM (7 years ago)
Author:
stoecker
Message:

update qwt and qwtpolar, many QT5 fixes (unfinished)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/qwt/qwt_plot_spectrogram.h

    r4271 r8127  
    2121  \brief A plot item, which displays a spectrogram
    2222
    23   A spectrogram displays threedimenional data, where the 3rd dimension
     23  A spectrogram displays 3-dimensional data, where the 3rd dimension
    2424  ( the intensity ) is displayed using colors. The colors are calculated
    2525  from the values using a color map.
     26
     27  On multi-core systems the performance of the image composition
     28  can often be improved by dividing the area into tiles - each of them
     29  rendered in a different thread ( see QwtPlotItem::setRenderThreadCount() ).
    2630
    2731  In ContourMode contour lines are painted for the contour levels.
     
    2933  \image html spectrogram3.png
    3034
    31   \sa QwtRasterData, QwtColorMap
     35  \sa QwtRasterData, QwtColorMap, QwtPlotItem::setRenderThreadCount()
    3236*/
    3337
     
    5559    virtual ~QwtPlotSpectrogram();
    5660
    57     void setRenderThreadCount( uint numThreads );
    58     uint renderThreadCount() const;
    59 
    6061    void setDisplayMode( DisplayMode, bool on = true );
    6162    bool testDisplayMode( DisplayMode ) const;
     
    7172    virtual QRectF pixelHint( const QRectF & ) const;
    7273
     74    void setDefaultContourPen( const QColor &,
     75        qreal width = 0.0, Qt::PenStyle = Qt::SolidLine );
    7376    void setDefaultContourPen( const QPen & );
    7477    QPen defaultContourPen() const;
Note: See TracChangeset for help on using the changeset viewer.