diff options
author | jblum | 2009-05-01 20:28:04 +0000 |
---|---|---|
committer | jblum | 2009-05-01 20:28:04 +0000 |
commit | a3ba8cf268816af51c4bb39ea7ecd7e85ea0807b (patch) | |
tree | 21dbd446e92672a56b323e005088d3c03edc238f /grc/src/gui/Bars.py | |
parent | 6ce881caaacdd60a8bea37584c7286e08bea97a7 (diff) | |
download | gnuradio-a3ba8cf268816af51c4bb39ea7ecd7e85ea0807b.tar.gz gnuradio-a3ba8cf268816af51c4bb39ea7ecd7e85ea0807b.tar.bz2 gnuradio-a3ba8cf268816af51c4bb39ea7ecd7e85ea0807b.zip |
Merged grc developer branch r10679:10938
Misc fixes and internal changes.
Added help menu for usage tips.
Added drag and drop for blocks.
Removed callback controls, adopted forms.
Any type can have enumerated options.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10941 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'grc/src/gui/Bars.py')
-rw-r--r-- | grc/src/gui/Bars.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/grc/src/gui/Bars.py b/grc/src/gui/Bars.py index c89aea580..52e7ba1f8 100644 --- a/grc/src/gui/Bars.py +++ b/grc/src/gui/Bars.py @@ -1,5 +1,5 @@ """ -Copyright 2007 Free Software Foundation, Inc. +Copyright 2007, 2008, 2009 Free Software Foundation, Inc. This file is part of GNU Radio GNU Radio Companion is free software; you can redistribute it and/or @@ -43,8 +43,8 @@ TOOLBAR_LIST = ( Actions.FLOW_GRAPH_EXEC, Actions.FLOW_GRAPH_KILL, None, - Actions.BLOCK_ROTATE_LEFT, - Actions.BLOCK_ROTATE_RIGHT, + Actions.BLOCK_ROTATE_CCW, + Actions.BLOCK_ROTATE_CW, None, Actions.BLOCK_ENABLE, Actions.BLOCK_DISABLE, @@ -73,8 +73,8 @@ MENU_BAR_LIST = ( Actions.BLOCK_PASTE, Actions.ELEMENT_DELETE, None, - Actions.BLOCK_ROTATE_LEFT, - Actions.BLOCK_ROTATE_RIGHT, + Actions.BLOCK_ROTATE_CCW, + Actions.BLOCK_ROTATE_CW, None, Actions.BLOCK_ENABLE, Actions.BLOCK_DISABLE, @@ -87,6 +87,8 @@ MENU_BAR_LIST = ( Actions.FLOW_GRAPH_KILL, ]), (gtk.Action('Help', '_Help', None, None), [ + Actions.HELP_WINDOW_DISPLAY, + None, Actions.ABOUT_WINDOW_DISPLAY, ]), ) |