diff options
author | Nicholas McCarthy <namccart@gmail.com> | 2013-07-07 18:08:20 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-08 07:19:33 -0700 |
commit | cd99526b5d1c8b1130ac1ba87e21f96c621b1bdc (patch) | |
tree | 12836648bf75868b17b04a2c3ead9c1b6fa2d4c5 /grc/gui/Actions.py | |
parent | 2dc1b6f2ed0cabd2bccbcc58487e93be4295df84 (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.py | 10 |
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, +) |