QWT 7.0.1
Loading...
Searching...
No Matches
qwt_polar_picker.h
1/******************************************************************************
2 * QwtPolar Widget Library
3 * Copyright (C) 2008 Uwe Rathmann
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the Qwt License, Version 1.0
7 *****************************************************************************/
8
9#ifndef QWT_POLAR_PICKER_H
10#define QWT_POLAR_PICKER_H
11
12#include "qwt_global.h"
13#include "qwt_picker.h"
14
15#include <qvector.h>
16#include <qpainterpath.h>
17
18class QwtPolarPlot;
19class QwtPolarCanvas;
20class QwtPointPolar;
21
28class QWT_EXPORT QwtPolarPicker : public QwtPicker
29{
30 Q_OBJECT
31
32 public:
33 explicit QwtPolarPicker( QwtPolarCanvas* );
34 virtual ~QwtPolarPicker();
35
36 explicit QwtPolarPicker(
37 RubberBand rubberBand, DisplayMode trackerMode,
39
40 QwtPolarPlot* plot();
41 const QwtPolarPlot* plot() const;
42
43 QwtPolarCanvas* canvas();
44 const QwtPolarCanvas* canvas() const;
45
46 virtual QRect pickRect() const;
47
48 Q_SIGNALS:
49
54 void selected( const QwtPointPolar& pos );
55
62 void selected( const QVector< QwtPointPolar >& points );
63
70 void appended( const QwtPointPolar& pos );
71
79 void moved( const QwtPointPolar& pos );
80
81 protected:
82 QwtPointPolar invTransform( const QPoint& ) const;
83
84 virtual QwtText trackerText( const QPoint& ) const QWT_OVERRIDE;
85 virtual QwtText trackerTextPolar( const QwtPointPolar& ) const;
86
87 virtual void move( const QPoint& ) QWT_OVERRIDE;
88 virtual void append( const QPoint& ) QWT_OVERRIDE;
89 virtual bool end( bool ok = true ) QWT_OVERRIDE;
90
91 private:
92 virtual QPainterPath pickArea() const QWT_OVERRIDE;
93
94 class PrivateData;
95 PrivateData* m_data;
96};
97
98#endif
Definition qwt_clipper.h:40
QwtPicker provides selections on a widget / QwtPicker 在一个部件(widget)上提供选择功能
Definition qwt_picker.h:151
DisplayMode
Display mode.
Definition qwt_picker.h:209
virtual void move(const QPoint &)
Move the last point of the selection The moved() signal is emitted.
Definition qwt_picker.cpp:1279
virtual void append(const QPoint &)
Append a point to the selection and update rubber band and tracker.
Definition qwt_picker.cpp:1262
RubberBand
Rubber band style.
Definition qwt_picker.h:175
virtual QwtText trackerText(const QPoint &pos) const
Return the label for a position.
Definition qwt_picker.cpp:486
virtual bool end(bool ok=true)
Close a selection setting the state to inactive.
Definition qwt_picker.cpp:1216
A point in polar coordinates.
Definition qwt_point_polar.h:46
Canvas of a QwtPolarPlot.
Definition qwt_polar_canvas.h:28
QwtPolarPicker provides selections on a plot canvas.
Definition qwt_polar_picker.h:29
void selected(const QwtPointPolar &pos)
A signal emitted in case of selectionFlags() & PointSelection.
void moved(const QwtPointPolar &pos)
A signal emitted whenever the last appended point of the selection has been moved.
void appended(const QwtPointPolar &pos)
A signal emitted when a point has been appended to the selection.
void selected(const QVector< QwtPointPolar > &points)
A signal emitting the selected points, at the end of a selection.
A plotting widget, displaying a polar coordinate system.
Definition qwt_polar_plot.h:47
A class representing a text.
Definition qwt_text.h:69