diff options
Diffstat (limited to 'grc/gui/Actions.py')
-rw-r--r-- | grc/gui/Actions.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/grc/gui/Actions.py b/grc/gui/Actions.py index 284c78f8fc..f633e7ced0 100644 --- a/grc/gui/Actions.py +++ b/grc/gui/Actions.py @@ -236,6 +236,12 @@ BLOCK_DISABLE = Action( stock_id=gtk.STOCK_DISCONNECT, keypresses=(gtk.keysyms.d, NO_MODS_MASK), ) +TOGGLE_HIDE_DISABLED_BLOCKS = ToggleAction( + label='Hide _disabled blocks', + tooltip='Toggle visibility of disabled blocks and connections', + stock_id=gtk.STOCK_MISSING_IMAGE, + keypresses=(gtk.keysyms.d, gtk.gdk.CONTROL_MASK), +) BLOCK_CREATE_HIER = Action( label='C_reate Hier', tooltip='Create hier block from selected blocks', @@ -359,3 +365,11 @@ XML_PARSER_ERRORS_DISPLAY = Action( tooltip='View errors that occured while parsing XML files', stock_id=gtk.STOCK_DIALOG_ERROR, ) +TOOLS_RUN_FDESIGN = Action( + label='Filter design tool', + tooltip='Execute gr_filter_design', + stock_id=gtk.STOCK_EXECUTE, +) +TOOLS_MORE_TO_COME = Action( + label='More to come', +) |