summaryrefslogtreecommitdiff
path: root/gr-qtgui/examples/c++/display_qt.h
blob: 9f140e7db57014c9fc728306f0a0179980449001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Copyright 2016 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

// Q_MOC_RUN is a workaround for a QT4 + Boost version issue
#ifndef Q_MOC_RUN
#include <gnuradio/analog/noise_source.h>
#include <gnuradio/analog/sig_source.h>
#include <gnuradio/blocks/add_blk.h>
#include <gnuradio/blocks/throttle.h>
#include <gnuradio/fft/window.h>
#include <gnuradio/qtgui/freq_sink_f.h>
#include <gnuradio/qtgui/histogram_sink_f.h>
#include <gnuradio/qtgui/time_sink_f.h>
#include <gnuradio/qtgui/waterfall_sink_f.h>
#include <gnuradio/top_block.h>
#endif

#include <QHBoxLayout>
#include <QTabWidget>
#include <QWidget>

using namespace gr;

class mywindow : public QWidget
{
    Q_OBJECT

private:
    QHBoxLayout* layout;
    QTabWidget* tab0;
    QTabWidget* tab1;
    QWidget* qtgui_time_sink_win;
    QWidget* qtgui_freq_sink_win;
    QWidget* qtgui_waterfall_sink_win;
    QWidget* qtgui_histogram_sink_win;

#ifndef Q_MOC_RUN
    top_block_sptr tb;
    analog::sig_source_f::sptr src0;
    analog::noise_source_f::sptr src1;
    blocks::add_ff::sptr src;
    blocks::throttle::sptr thr;
    qtgui::time_sink_f::sptr tsnk;
    qtgui::freq_sink_f::sptr fsnk;
    qtgui::waterfall_sink_f::sptr wsnk;
    qtgui::histogram_sink_f::sptr hsnk;
#endif

public slots:
    // Stop the topblock before shutting down the window
    void quitting();

public:
    mywindow();
    virtual ~mywindow();

    // call start() on the topblock
    void start();
};