[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/02: qtgui: apps: with new use of the Tit
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/02: qtgui: apps: with new use of the Title, the titles provided here just take up extra screen real estate. |
Date: |
Sat, 22 Nov 2014 21:10:13 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch maint
in repository gnuradio.
commit f71278d22e2b13b982e301c05c86245064017734
Author: Tom Rondeau <address@hidden>
Date: Tue Nov 11 10:56:46 2014 -0500
qtgui: apps: with new use of the Title, the titles provided here just take
up extra screen real estate.
---
gr-qtgui/apps/gr_constellation_plot | 5 +----
gr-qtgui/apps/gr_psd_plot_b | 2 +-
gr-qtgui/apps/gr_psd_plot_c | 3 +--
gr-qtgui/apps/gr_psd_plot_f | 3 +--
gr-qtgui/apps/gr_psd_plot_i | 3 +--
gr-qtgui/apps/gr_psd_plot_s | 2 +-
gr-qtgui/apps/gr_spectrogram_plot_b | 3 +--
gr-qtgui/apps/gr_spectrogram_plot_c | 3 +--
gr-qtgui/apps/gr_spectrogram_plot_f | 3 +--
gr-qtgui/apps/gr_spectrogram_plot_i | 3 +--
gr-qtgui/apps/gr_spectrogram_plot_s | 3 +--
gr-qtgui/apps/gr_time_plot_b | 2 +-
gr-qtgui/apps/gr_time_plot_c | 3 +--
gr-qtgui/apps/gr_time_plot_f | 2 +-
gr-qtgui/apps/gr_time_plot_i | 2 +-
gr-qtgui/apps/gr_time_plot_s | 2 +-
gr-qtgui/apps/gr_time_raster_b | 2 +-
gr-qtgui/apps/gr_time_raster_f | 2 +-
18 files changed, 18 insertions(+), 30 deletions(-)
diff --git a/gr-qtgui/apps/gr_constellation_plot
b/gr-qtgui/apps/gr_constellation_plot
index 85caed6..528bb97 100755
--- a/gr-qtgui/apps/gr_constellation_plot
+++ b/gr-qtgui/apps/gr_constellation_plot
@@ -69,9 +69,7 @@ class my_top_block(gr.top_block):
self.qapp = QtGui.QApplication(sys.argv)
self.skip = blocks.skiphead(gr.sizeof_gr_complex, self._start)
- self.gui_snk = qtgui.const_sink_c(self._nsamps,
- "GNU Radio Constellation Plot",
- self._nsigs)
+ self.gui_snk = qtgui.const_sink_c(self._nsamps, "", self._nsigs)
n = 0
self.srcs = list()
self._data_min = sys.maxint
@@ -185,4 +183,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_psd_plot_b b/gr-qtgui/apps/gr_psd_plot_b
index 44ea997..606311a 100755
--- a/gr-qtgui/apps/gr_psd_plot_b
+++ b/gr-qtgui/apps/gr_psd_plot_b
@@ -49,7 +49,7 @@ class psd_plot_b(plot_base.plot_base):
self.src_type = plot_base.source_chars_to_float
self.gui_snk = qtgui.freq_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq, self._samp_rate,
- "GNU Radio PSD Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_psd_plot_c b/gr-qtgui/apps/gr_psd_plot_c
index 6cb0657..6df9fae 100755
--- a/gr-qtgui/apps/gr_psd_plot_c
+++ b/gr-qtgui/apps/gr_psd_plot_c
@@ -50,7 +50,7 @@ class psd_plot_c(plot_base.plot_base):
self.src_type = blocks.vector_source_c
self.gui_snk = qtgui.freq_sink_c(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq, self._samp_rate,
- "GNU Radio PSD Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -77,4 +77,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_psd_plot_f b/gr-qtgui/apps/gr_psd_plot_f
index 903a237..f07e3e8 100755
--- a/gr-qtgui/apps/gr_psd_plot_f
+++ b/gr-qtgui/apps/gr_psd_plot_f
@@ -50,7 +50,7 @@ class psd_plot_f(plot_base.plot_base):
self.src_type = blocks.vector_source_f
self.gui_snk = qtgui.freq_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq, self._samp_rate,
- "GNU Radio PSD Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -77,4 +77,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_psd_plot_i b/gr-qtgui/apps/gr_psd_plot_i
index 3413469..1852345 100755
--- a/gr-qtgui/apps/gr_psd_plot_i
+++ b/gr-qtgui/apps/gr_psd_plot_i
@@ -49,7 +49,7 @@ class psd_plot_i(plot_base.plot_base):
self.src_type = plot_base.source_ints_to_float
self.gui_snk = qtgui.freq_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq, self._samp_rate,
- "GNU Radio PSD Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -76,4 +76,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_psd_plot_s b/gr-qtgui/apps/gr_psd_plot_s
index 07a573b..c06076f 100755
--- a/gr-qtgui/apps/gr_psd_plot_s
+++ b/gr-qtgui/apps/gr_psd_plot_s
@@ -49,7 +49,7 @@ class psd_plot_s(plot_base.plot_base):
self.src_type = plot_base.source_shorts_to_float
self.gui_snk = qtgui.freq_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq, self._samp_rate,
- "GNU Radio PSD Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_b
b/gr-qtgui/apps/gr_spectrogram_plot_b
index b20567c..0d7a16e 100755
--- a/gr-qtgui/apps/gr_spectrogram_plot_b
+++ b/gr-qtgui/apps/gr_spectrogram_plot_b
@@ -49,7 +49,7 @@ class spectrogram_plot_b(plot_base.plot_base):
self.src_type = plot_base.source_chars_to_float
self.gui_snk = qtgui.waterfall_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq,
self._samp_rate,
- "GNU Radio Spectrogram Plot",
self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -76,4 +76,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_c
b/gr-qtgui/apps/gr_spectrogram_plot_c
index 122f4ec..52b0d4d 100755
--- a/gr-qtgui/apps/gr_spectrogram_plot_c
+++ b/gr-qtgui/apps/gr_spectrogram_plot_c
@@ -50,7 +50,7 @@ class spectrogram_plot_c(plot_base.plot_base):
self.src_type = blocks.vector_source_c
self.gui_snk = qtgui.waterfall_sink_c(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq,
self._samp_rate,
- "GNU Radio Spectrogram Plot",
self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -77,4 +77,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_f
b/gr-qtgui/apps/gr_spectrogram_plot_f
index 41212ea..6ea5afc 100755
--- a/gr-qtgui/apps/gr_spectrogram_plot_f
+++ b/gr-qtgui/apps/gr_spectrogram_plot_f
@@ -50,7 +50,7 @@ class spectrogram_plot_f(plot_base.plot_base):
self.src_type = blocks.vector_source_f
self.gui_snk = qtgui.waterfall_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq,
self._samp_rate,
- "GNU Radio Spectrogram Plot",
self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -77,4 +77,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_i
b/gr-qtgui/apps/gr_spectrogram_plot_i
index 6a076c9..893df2a 100755
--- a/gr-qtgui/apps/gr_spectrogram_plot_i
+++ b/gr-qtgui/apps/gr_spectrogram_plot_i
@@ -49,7 +49,7 @@ class spectrogram_plot_i(plot_base.plot_base):
self.src_type = plot_base.source_ints_to_float
self.gui_snk = qtgui.waterfall_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq,
self._samp_rate,
- "GNU Radio Spectrogram Plot",
self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -76,4 +76,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_spectrogram_plot_s
b/gr-qtgui/apps/gr_spectrogram_plot_s
index 61fa826..82a22f7 100755
--- a/gr-qtgui/apps/gr_spectrogram_plot_s
+++ b/gr-qtgui/apps/gr_spectrogram_plot_s
@@ -49,7 +49,7 @@ class spectrogram_plot_s(plot_base.plot_base):
self.src_type = plot_base.source_shorts_to_float
self.gui_snk = qtgui.waterfall_sink_f(self._psd_size,
filter.firdes.WIN_BLACKMAN_hARRIS,
self._center_freq,
self._samp_rate,
- "GNU Radio Spectrogram Plot",
self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
@@ -76,4 +76,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_time_plot_b b/gr-qtgui/apps/gr_time_plot_b
index 2052209..d822557 100755
--- a/gr-qtgui/apps/gr_time_plot_b
+++ b/gr-qtgui/apps/gr_time_plot_b
@@ -47,7 +47,7 @@ class plot_time_b(plot_base.plot_base):
self.dsize = gr.sizeof_float # already converted
self.src_type = plot_base.source_chars_to_float
self.gui_snk = qtgui.time_sink_f(self._nsamps, self._samp_rate,
- "GNU Radio Time Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_time_plot_c b/gr-qtgui/apps/gr_time_plot_c
index d3d00b5..202e0f8 100755
--- a/gr-qtgui/apps/gr_time_plot_c
+++ b/gr-qtgui/apps/gr_time_plot_c
@@ -48,7 +48,7 @@ class plot_time_c(plot_base.plot_base):
self.dsize = gr.sizeof_gr_complex
self.src_type = blocks.vector_source_c
self.gui_snk = qtgui.time_sink_c(self._nsamps, self._samp_rate,
- "GNU Radio Time Plot", self._nsigs)
+ "", self._nsigs)
self._nsigs *= 2 # complex plots have real/imag
self.setup()
@@ -74,4 +74,3 @@ if __name__ == "__main__":
main()
except KeyboardInterrupt:
pass
-
diff --git a/gr-qtgui/apps/gr_time_plot_f b/gr-qtgui/apps/gr_time_plot_f
index 9140b61..8f5ad9f 100755
--- a/gr-qtgui/apps/gr_time_plot_f
+++ b/gr-qtgui/apps/gr_time_plot_f
@@ -48,7 +48,7 @@ class plot_time_f(plot_base.plot_base):
self.dsize = gr.sizeof_float
self.src_type = blocks.vector_source_f
self.gui_snk = qtgui.time_sink_f(self._nsamps, self._samp_rate,
- "GNU Radio Time Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_time_plot_i b/gr-qtgui/apps/gr_time_plot_i
index 04229de..8a7888b 100755
--- a/gr-qtgui/apps/gr_time_plot_i
+++ b/gr-qtgui/apps/gr_time_plot_i
@@ -47,7 +47,7 @@ class plot_time_i(plot_base.plot_base):
self.dsize = gr.sizeof_float # already converted
self.src_type = plot_base.source_ints_to_float
self.gui_snk = qtgui.time_sink_f(self._nsamps, self._samp_rate,
- "GNU Radio Time Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_time_plot_s b/gr-qtgui/apps/gr_time_plot_s
index cc4a8a7..7cee262 100755
--- a/gr-qtgui/apps/gr_time_plot_s
+++ b/gr-qtgui/apps/gr_time_plot_s
@@ -47,7 +47,7 @@ class plot_time_s(plot_base.plot_base):
self.dsize = gr.sizeof_float # already converted
self.src_type = plot_base.source_shorts_to_float
self.gui_snk = qtgui.time_sink_f(self._nsamps, self._samp_rate,
- "GNU Radio Time Plot", self._nsigs)
+ "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_time_raster_b b/gr-qtgui/apps/gr_time_raster_b
index 3e81c31..ad86914 100755
--- a/gr-qtgui/apps/gr_time_raster_b
+++ b/gr-qtgui/apps/gr_time_raster_b
@@ -51,7 +51,7 @@ class plot_time_raster_b(plot_base.plot_base):
self.dsize = gr.sizeof_char
self.src_type = blocks.vector_source_b
self.gui_snk = qtgui.time_raster_sink_b(self._samp_rate, self._nrows,
self._ncols,
- [], [], "GNU Radio Time Plot",
self._nsigs)
+ [], [], "", self._nsigs)
self.setup()
def main():
diff --git a/gr-qtgui/apps/gr_time_raster_f b/gr-qtgui/apps/gr_time_raster_f
index 6b5e5c2..5d6a838 100755
--- a/gr-qtgui/apps/gr_time_raster_f
+++ b/gr-qtgui/apps/gr_time_raster_f
@@ -51,7 +51,7 @@ class plot_time_raster_f(plot_base.plot_base):
self.dsize = gr.sizeof_float
self.src_type = blocks.vector_source_f
self.gui_snk = qtgui.time_raster_sink_f(self._samp_rate, self._nrows,
self._ncols,
- [], [], "GNU Radio Time Plot",
self._nsigs)
+ [], [], "", self._nsigs)
self.setup()
def main():