blob: f56eaeaef41c21cda3d842537ad587e07b78ee34 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* -*- c++ -*- */
/*
* Copyright 2016 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_QTGUI_EDIT_BOX_MSG_IMPL_H
#define INCLUDED_QTGUI_EDIT_BOX_MSG_IMPL_H
#include <gnuradio/qtgui/edit_box_msg.h>
#include <QComboBox>
#include <QGroupBox>
#include <QHBoxLayout>
#include <QLabel>
#include <QLineEdit>
#include <QVBoxLayout>
namespace gr {
namespace qtgui {
class QTGUI_API edit_box_msg_impl : public QObject, public edit_box_msg
{
Q_OBJECT
private:
int d_argc;
char* d_argv;
data_type_t d_type;
bool d_is_pair;
bool d_is_static;
QGroupBox* d_group;
QVBoxLayout* d_vlayout;
QHBoxLayout* d_hlayout;
QLabel* d_label;
QLineEdit* d_val;
QLineEdit* d_key;
QComboBox* d_type_box;
pmt::pmt_t d_msg;
const pmt::pmt_t d_port;
public:
edit_box_msg_impl(gr::qtgui::data_type_t type,
const std::string& value = "",
const std::string& label = "",
bool is_pair = false,
bool is_static = true,
const std::string& key = "",
QWidget* parent = 0);
~edit_box_msg_impl() override;
// Overload the start method of gr::block to emit a message if a
// default value is provided.
bool start() override;
void exec_() override;
QWidget* qwidget() override;
#ifdef ENABLE_PYTHON
PyObject* pyqwidget() override;
#else
void* pyqwidget();
#endif
void set_value(pmt::pmt_t val);
public slots:
void edit_finished();
void set_type(int);
void set_type(gr::qtgui::data_type_t type);
};
} /* namespace qtgui */
} /* namespace gr */
#endif /* INCLUDED_QTGUI_EDIT_BOX_MSG_IMPL_H */
|