Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_plot_zoomer.h


Ignore:
Timestamp:
Mar 19, 2021, 9:15:03 AM (3 years ago)
Author:
stoecker
Message:

update to qwt verion 6.1.1 to fix build with newer Qt5

File:
1 edited

Legend:

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

    r8127 r9383  
    2323  the coordinates of the current mouse position.
    2424
    25   Zooming can be repeated as often as possible, limited only by 
     25  Zooming can be repeated as often as possible, limited only by
    2626  maxStackDepth() or minZoomSize().  Each rectangle is pushed on a stack.
    2727
    28   The default setting how to select rectangles is 
     28  The default setting how to select rectangles is
    2929  a QwtPickerDragRectMachine with the following bindings:
    3030
    3131  - QwtEventPattern::MouseSelect1\n
    32     The first point of the zoom rectangle is selected by a mouse press, 
     32    The first point of the zoom rectangle is selected by a mouse press,
    3333    the second point from the position, where the mouse is released.
    3434
     
    4545  - QwtEventPattern::MouseSelect3, QwtEventPattern::KeyUndo\n
    4646    Zoom out one position on the zoom stack
    47    
     47
    4848  - QwtEventPattern::MouseSelect6, QwtEventPattern::KeyRedo\n
    4949    Zoom in one position on the zoom stack
     
    5353
    5454  The setKeyPattern() and setMousePattern() functions can be used
    55   to configure the zoomer actions. The following example 
    56   shows, how to configure the 'I' and 'O' keys for zooming in and out 
    57   one position on the zoom stack. The "Home" key is used to 
     55  to configure the zoomer actions. The following example
     56  shows, how to configure the 'I' and 'O' keys for zooming in and out
     57  one position on the zoom stack. The "Home" key is used to
    5858  "unzoom" the plot.
    5959
     
    103103
    104104public Q_SLOTS:
    105     void moveBy( double x, double y );
     105    void moveBy( double dx, double dy );
    106106    virtual void moveTo( const QPointF & );
    107107
    108108    virtual void zoom( const QRectF & );
    109     virtual void zoom( int up );
     109    virtual void zoom( int offset );
    110110
    111111Q_SIGNALS:
Note: See TracChangeset for help on using the changeset viewer.