summaryrefslogtreecommitdiff
path: root/grc/gui/Actions.py
diff options
context:
space:
mode:
authorNicholas McCarthy <namccart@gmail.com>2013-07-07 18:08:20 -0400
committerJohnathan Corgan <johnathan@corganlabs.com>2013-07-08 07:19:33 -0700
commitcd99526b5d1c8b1130ac1ba87e21f96c621b1bdc (patch)
tree12836648bf75868b17b04a2c3ead9c1b6fa2d4c5 /grc/gui/Actions.py
parent2dc1b6f2ed0cabd2bccbcc58487e93be4295df84 (diff)
grc: add bus ports
Bus ports allow ganging together of block input or output ports into a single display item for connection to other bus ports.
Diffstat (limited to 'grc/gui/Actions.py')
-rw-r--r--grc/gui/Actions.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/grc/gui/Actions.py b/grc/gui/Actions.py
index 9225b0bd52..5832e08bf0 100644
--- a/grc/gui/Actions.py
+++ b/grc/gui/Actions.py
@@ -295,3 +295,13 @@ OPEN_HIER = Action(
tooltip='Open the source of the selected hierarchical block',
stock_id=gtk.STOCK_JUMP_TO,
)
+BUSSIFY_SOURCES = Action(
+ label='Toggle So_urce Bus',
+ tooltip='Gang source ports into a single bus port',
+ stock_id=gtk.STOCK_JUMP_TO,
+)
+BUSSIFY_SINKS = Action(
+ label='Toggle S_ink Bus',
+ tooltip='Gang sink ports into a single bus port',
+ stock_id=gtk.STOCK_JUMP_TO,
+)