QWT API (English) 7.0.1
Qt Widget Library for Technical Applications - English API Documentation
Loading...
Searching...
No Matches
qwt_plot_series_data_picker_group.h
1#ifndef QWT_PLOT_SERIES_DATA_PICKER_GROUP_H
2#define QWT_PLOT_SERIES_DATA_PICKER_GROUP_H
3#include <QObject>
4#include "qwt_global.h"
42class QWT_EXPORT QwtPlotSeriesDataPickerGroup : public QObject
43{
44 Q_OBJECT
45 QWT_DECLARE_PRIVATE(QwtPlotSeriesDataPickerGroup)
46public:
48 QwtPlotSeriesDataPickerGroup(QObject* par = nullptr);
52 void addPicker(QwtPlotSeriesDataPicker* pick);
54 void removePicker(QwtPlotSeriesDataPicker* pick);
58 void setEnabled(bool on);
60 bool isEnabled() const;
61public Q_SLOTS:
62 void onPickerMove(const QPoint& pos);
63 void onPickerActivated(bool on);
64 void onPickerDestroy(QObject* obj);
65};
66
67#endif // QWT_PLOT_SERIES_DATA_PICKER_GROUP_H
Definition qwt_dyngrid_layout.h:33
Group manager for synchronizing multiple QwtPlotSeriesDataPicker instances across plot widgets.
Definition qwt_plot_series_data_picker_group.h:43
~QwtPlotSeriesDataPickerGroup()
Destructor.
A plot data picker class for displaying current y-values or nearest points.
Definition qwt_plot_series_data_picker.h:28