GNU Radio Radar Toolbox
scatter_plot.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2014 Communications Engineering Lab, KIT.
4  *
5  * This is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3, or (at your option)
8  * any later version.
9  *
10  * This software is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this software; see the file COPYING. If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 #include <QApplication>
22 #include <QTimer>
23 
24 #include <qwt_plot.h>
25 #include <qwt_plot_curve.h>
26 #include <qwt_plot_grid.h>
27 #include <qwt_plot_marker.h>
28 #include <qwt_symbol.h>
29 #include <qwt_text.h>
30 
31 namespace gr {
32 namespace radar {
33 
34 class scatter_plot : public QWidget
35 {
36  Q_OBJECT
37 
38 public:
39  scatter_plot(int interval,
40  std::vector<float> axis_x,
41  std::vector<float> axis_y,
42  std::vector<float>* x,
43  std::vector<float>* y,
44  std::string label_x,
45  std::string label_y,
46  bool* xy_read,
47  std::string label,
48  QWidget* parent = 0);
49  ~scatter_plot();
50 
51 private:
52  int d_interval;
53  std::string d_label_x, d_label_y;
54  std::vector<float> d_axis_x, d_axis_y;
55  std::vector<float>*d_x, *d_y;
56  bool* d_xy_read;
57  QwtPlot* d_plot;
58  QwtSymbol* d_symbol;
59  QwtPlotGrid* d_grid;
60  std::vector<QwtPlotMarker*> d_marker;
61  QTimer* d_timer;
62 
63 protected:
64  void resizeEvent(QResizeEvent* event);
65 
66 public slots:
67  void refresh();
68 };
69 
70 } // namespace radar
71 } // namespace gr
Definition: scatter_plot.h:34
void resizeEvent(QResizeEvent *event)
Definition: crop_matrix_vcvc.h:28
scatter_plot(int interval, std::vector< float > axis_x, std::vector< float > axis_y, std::vector< float > *x, std::vector< float > *y, std::string label_x, std::string label_y, bool *xy_read, std::string label, QWidget *parent=0)