[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 14/37: grc: fixing xml files of some blocks
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 14/37: grc: fixing xml files of some blocks with message control ports to be able to hide/show them as wanted. |
Date: |
Thu, 17 Jul 2014 20:23:40 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch master
in repository gnuradio.
commit 264383735a267b665569b949e0c5d2232b3bfd24
Author: Tom Rondeau <address@hidden>
Date: Fri Jul 11 15:53:04 2014 -0400
grc: fixing xml files of some blocks with message control ports to be able
to hide/show them as wanted.
---
gr-blocks/grc/blocks_copy.xml | 19 ++++++++++++++
.../grc/digital_constellation_receiver_cb.xml | 19 ++++++++++++++
gr-qtgui/grc/qtgui_freq_sink_x.xml | 17 +++++++++++++
gr-qtgui/grc/qtgui_sink_x.xml | 29 ++++++++++++++++++----
gr-qtgui/grc/qtgui_waterfall_sink_x.xml | 17 +++++++++++++
5 files changed, 96 insertions(+), 5 deletions(-)
diff --git a/gr-blocks/grc/blocks_copy.xml b/gr-blocks/grc/blocks_copy.xml
index 4d505d9..48676b5 100644
--- a/gr-blocks/grc/blocks_copy.xml
+++ b/gr-blocks/grc/blocks_copy.xml
@@ -61,7 +61,25 @@ self.$(id).set_enabled($enabled)</make>
<value>1</value>
<type>int</type>
</param>
+
+ <param>
+ <name>Show Msg Ports</name>
+ <key>showports</key>
+ <value>True</value>
+ <type>enum</type>
+ <hide>part</hide>
+ <option>
+ <name>Yes</name>
+ <key>False</key>
+ </option>
+ <option>
+ <name>No</name>
+ <key>True</key>
+ </option>
+ </param>
+
<check>$vlen > 0</check>
+
<sink>
<name>in</name>
<type>$type</type>
@@ -71,6 +89,7 @@ self.$(id).set_enabled($enabled)</make>
<name>en</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</sink>
<source>
<name>out</name>
diff --git a/gr-digital/grc/digital_constellation_receiver_cb.xml
b/gr-digital/grc/digital_constellation_receiver_cb.xml
index 134e027..978020f 100644
--- a/gr-digital/grc/digital_constellation_receiver_cb.xml
+++ b/gr-digital/grc/digital_constellation_receiver_cb.xml
@@ -29,6 +29,23 @@
<key>fmax</key>
<type>real</type>
</param>
+
+ <param>
+ <name>Show Msg Ports</name>
+ <key>showports</key>
+ <value>True</value>
+ <type>enum</type>
+ <hide>part</hide>
+ <option>
+ <name>Yes</name>
+ <key>False</key>
+ </option>
+ <option>
+ <name>No</name>
+ <key>True</key>
+ </option>
+ </param>
+
<sink>
<name>in</name>
<type>complex</type>
@@ -38,12 +55,14 @@
<name>set_constellation</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</sink>
<sink>
<name>rotate_phase</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</sink>
<source>
diff --git a/gr-qtgui/grc/qtgui_freq_sink_x.xml
b/gr-qtgui/grc/qtgui_freq_sink_x.xml
index beed7fa..c19ee03 100644
--- a/gr-qtgui/grc/qtgui_freq_sink_x.xml
+++ b/gr-qtgui/grc/qtgui_freq_sink_x.xml
@@ -202,6 +202,21 @@ $(gui_hint()($win))</make>
<hide>part</hide>
</param>
+ <param>
+ <name>Show Msg Ports</name>
+ <key>showports</key>
+ <value>True</value>
+ <type>enum</type>
+ <hide>part</hide>
+ <option>
+ <name>Yes</name>
+ <key>False</key>
+ </option>
+ <option>
+ <name>No</name>
+ <key>True</key>
+ </option>
+ </param>
<param>
<name>Line 1 Label</name>
@@ -558,12 +573,14 @@ $(gui_hint()($win))</make>
<name>freq</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</sink>
<source>
<name>freq</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</source>
<doc>
diff --git a/gr-qtgui/grc/qtgui_sink_x.xml b/gr-qtgui/grc/qtgui_sink_x.xml
index 618973e..897eb63 100644
--- a/gr-qtgui/grc/qtgui_sink_x.xml
+++ b/gr-qtgui/grc/qtgui_sink_x.xml
@@ -176,22 +176,41 @@ Qt.QObject.connect(self._$(id)_win,
Qt.SIGNAL("plotPointSelected(QPointF, int)")
<hide>part</hide>
</param>
- <sink>
- <name>in</name>
- <type>$type</type>
- <nports>$num_inputs</nports>
- </sink>
+
+ <param>
+ <name>Show Msg Ports</name>
+ <key>showports</key>
+ <value>True</value>
+ <type>enum</type>
+ <hide>part</hide>
+ <option>
+ <name>Yes</name>
+ <key>False</key>
+ </option>
+ <option>
+ <name>No</name>
+ <key>True</key>
+ </option>
+ </param>
+
+ <sink>
+ <name>in</name>
+ <type>$type</type>
+ <nports>$num_inputs</nports>
+ </sink>
<sink>
<name>freq</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</sink>
<source>
<name>freq</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</source>
<doc>
diff --git a/gr-qtgui/grc/qtgui_waterfall_sink_x.xml
b/gr-qtgui/grc/qtgui_waterfall_sink_x.xml
index 36df704..2321acc 100644
--- a/gr-qtgui/grc/qtgui_waterfall_sink_x.xml
+++ b/gr-qtgui/grc/qtgui_waterfall_sink_x.xml
@@ -160,6 +160,21 @@ $(gui_hint()($win))</make>
<hide>part</hide>
</param>
+ <param>
+ <name>Show Msg Ports</name>
+ <key>showports</key>
+ <value>True</value>
+ <type>enum</type>
+ <hide>part</hide>
+ <option>
+ <name>Yes</name>
+ <key>False</key>
+ </option>
+ <option>
+ <name>No</name>
+ <key>True</key>
+ </option>
+ </param>
<param>
@@ -420,12 +435,14 @@ $(gui_hint()($win))</make>
<name>freq</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</sink>
<source>
<name>freq</name>
<type>message</type>
<optional>1</optional>
+ <hide>$showports</hide>
</source>
<doc>
- [Commit-gnuradio] [gnuradio] 22/37: Merge remote-tracking branch 'gnuradio-wg-grc/grc_port_view_options', (continued)
- [Commit-gnuradio] [gnuradio] 22/37: Merge remote-tracking branch 'gnuradio-wg-grc/grc_port_view_options', git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 09/37: uhd: Added example for re-tuning through messages, git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 06/37: uhd: Refactored common stuff from usrp sink and source, git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 23/37: qtgui: time raster display updates., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 11/37: build: missed gnuradio-uhd in static libs build., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 15/37: grc: fixing some spacing issues in various xml files., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 13/37: Merge remote-tracking branch 'gnuradio-wg-grc/grc_hide_ports', git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 18/37: Merge branch 'maint', git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 24/37: qtgui: fixes waterfall plots., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 25/37: qtgui: adding menu item to frequency sink to set y min/max., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 14/37: grc: fixing xml files of some blocks with message control ports to be able to hide/show them as wanted.,
git <=
- [Commit-gnuradio] [gnuradio] 21/37: qtgui: updates number sink behavor., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 20/37: grc: toogle action to disable auto-hiding port labels, git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 19/37: grc: auto-hide port labels, git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 34/37: Merge remote-tracking branch 'mbant/uhd/msg_format' into qt_the_things, git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 30/37: qtgui: minor fix to how number sink handles autoscale., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 37/37: Merge branch 'qt_the_things', git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 29/37: Merge remote-tracking branch 'mbant/qtify-examples', git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 28/37: qtgui: adding a formatter to qtgui label widget to behave like formatter in the wxgui static text widget., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 32/37: zeromq: updated zeromq examples to use qtgui., git, 2014/07/17
- [Commit-gnuradio] [gnuradio] 35/37: fec: updated fecapi blocks in grc to use new var_value concept., git, 2014/07/17