Changeset 8127 in ntrip for trunk/BNC/qwt/qwt_plot_rasteritem.h


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_rasteritem.h

    r4271 r8127  
    3939public:
    4040    /*!
    41       - NoCache\n
    42         renderImage() is called, whenever the item has to be repainted
    43       - PaintCache\n
    44         renderImage() is called, whenever the image cache is not valid,
    45         or the scales, or the size of the canvas has changed. This type
    46         of cache is only useful for improving the performance of hide/show
    47         operations. All other situations are already handled by the
    48         plot canvas cache.
    49 
     41      \brief Cache policy
    5042      The default policy is NoCache
    5143     */
    5244    enum CachePolicy
    5345    {
     46        /*!
     47          renderImage() is called each time the item has to be repainted
     48         */
    5449        NoCache,
     50
     51        /*!
     52          renderImage() is called, whenever the image cache is not valid,
     53          or the scales, or the size of the canvas has changed.
     54
     55          This type of cache is useful for improving the performance
     56          of hide/show operations or manipulations of the alpha value.
     57          All other situations are handled by the canvas backing store.
     58         */
    5559        PaintCache
    5660    };
     
    118122      \param area Requested area for the image in scale coordinates
    119123      \param imageSize Requested size of the image
     124   
     125      \return Rendered image
    120126     */
    121127    virtual QImage renderImage( const QwtScaleMap &xMap,
Note: See TracChangeset for help on using the changeset viewer.