Skip to content

Commit 5b992d4

Browse files
committed
qtgui: Added a 'vector sink'.
This is a sink similar to the freq sink, which takes vectors as input and plots them as-is.
1 parent df693a9 commit 5b992d4

16 files changed

+3199
-6
lines changed

gr-qtgui/examples/alt.qss

+17
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,23 @@ FrequencyDisplayPlot {
5151
qproperty-marker_noise_floor_amplitude_visible: false;
5252
}
5353

54+
VectorDisplayPlot {
55+
qproperty-line_color1: cyan;
56+
qproperty-line_color2: magenta;
57+
qproperty-line_color3: purple;
58+
qproperty-line_style1: SolidLine;
59+
qproperty-line_style2: DashLine;
60+
qproperty-line_style3: DotLine;
61+
qproperty-max_vec_color: palegreen;
62+
qproperty-min_vec_color: darkblue;
63+
qproperty-marker_lower_intensity_color: white;
64+
qproperty-marker_upper_intensity_color: red;
65+
qproperty-marker_lower_intensity_visible: false;
66+
qproperty-marker_upper_intensity_visible: false;
67+
qproperty-marker_ref_level_color: red;
68+
qproperty-marker_ref_level_visible: false;
69+
}
70+
5471
QwtPlotCanvas
5572
{
5673
border: 1px solid White;

gr-qtgui/examples/dark.qss

+11
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,17 @@ FrequencyDisplayPlot {
3838
qproperty-marker_noise_floor_amplitude_visible: false;
3939
}
4040

41+
VectorDisplayPlot {
42+
qproperty-max_vec_color: palegreen;
43+
qproperty-min_vec_color: palegreen;
44+
qproperty-marker_lower_intensity_color: white;
45+
qproperty-marker_upper_intensity_color: red;
46+
qproperty-marker_lower_intensity_visible: false;
47+
qproperty-marker_upper_intensity_visible: false;
48+
qproperty-marker_ref_level_amplitude_color: red;
49+
qproperty-marker_ref_level_amplitude_visible: false;
50+
}
51+
4152
QwtPlotCanvas
4253
{
4354
border: 1px solid White;

0 commit comments

Comments
 (0)