GNU Radio Radar Toolbox
time_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_grid.h>
26 #include <qwt_plot_curve.h>
27 #include <qwt_symbol.h>
28 #include <qwt_plot_marker.h>
29 
30 namespace gr {
31  namespace radar {
32 
33  class time_plot : public QWidget
34  {
35  Q_OBJECT
36 
37  public:
38  time_plot(int interval, std::string label_y, std::vector<float> axis_y, float range_time, std::vector<float>* y, bool* y_read, std::string label,
39  QWidget* parent = 0);
40  ~time_plot();
41 
42  private:
43  int d_interval;
44  std::string d_label_y;
45  std::vector<float> d_axis_y;
46  std::vector<float>* d_y;
47  bool* d_y_read;
48  float d_range_time;
49 
50  QwtPlot* d_plot;
51  QwtSymbol* d_symbol;
52  QwtPlotGrid* d_grid;
53  std::vector<std::vector<QwtPlotMarker*> > d_marker;
54 
55  QTimer *d_timer;
56 
57  int d_refresh_counter;
58 
59  protected:
60  void resizeEvent(QResizeEvent * event);
61 
62  public slots:
63  void refresh();
64 
65  };
66 
67  }
68 }
void resizeEvent(QResizeEvent *event)
Definition: time_plot.h:33
Definition: crop_matrix_vcvc.h:28
time_plot(int interval, std::string label_y, std::vector< float > axis_y, float range_time, std::vector< float > *y, bool *y_read, std::string label, QWidget *parent=0)