Changeset 8127 in ntrip for trunk/BNC/qwt/qwt_plot_grid.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_grid.h

    r4271 r8127  
    2525  The QwtPlotGrid class can be used to draw a coordinate grid.
    2626  A coordinate grid consists of major and minor vertical
    27   and horizontal gridlines. The locations of the gridlines
     27  and horizontal grid lines. The locations of the grid lines
    2828  are determined by the X and Y scale divisions which can
    2929  be assigned with setXDiv() and setYDiv().
     
    5858    const QwtScaleDiv &yScaleDiv() const;
    5959
    60     void setPen( const QPen &p );
     60    void setPen( const QColor &, qreal width = 0.0, Qt::PenStyle = Qt::SolidLine );
     61    void setPen( const QPen & );
    6162
    62     void setMajPen( const QPen &p );
    63     const QPen& majPen() const;
     63    void setMajorPen( const QColor &, qreal width = 0.0, Qt::PenStyle = Qt::SolidLine );
     64    void setMajorPen( const QPen & );
     65    const QPen& majorPen() const;
    6466
    65     void setMinPen( const QPen &p );
    66     const QPen& minPen() const;
     67    void setMinorPen( const QColor &, qreal width = 0.0, Qt::PenStyle = Qt::SolidLine );
     68    void setMinorPen( const QPen &p );
     69    const QPen& minorPen() const;
    6770
    6871    virtual void draw( QPainter *p,
Note: See TracChangeset for help on using the changeset viewer.