mailr13272 - /branches/gui_testing/gui/menu.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on June 28, 2011 - 22:18:
Author: bugman
Date: Tue Jun 28 22:18:09 2011
New Revision: 13272

URL: http://svn.gna.org/viewcvs/relax?rev=13272&view=rev
Log:
Created the new 'View->Results viewer' menu entry.

This is currently missing the method bound to it.


Modified:
    branches/gui_testing/gui/menu.py

Modified: branches/gui_testing/gui/menu.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/menu.py?rev=13272&r1=13271&r2=13272&view=diff
==============================================================================
--- branches/gui_testing/gui/menu.py (original)
+++ branches/gui_testing/gui/menu.py Tue Jun 28 22:18:09 2011
@@ -72,12 +72,14 @@
         menu.AppendItem(self.build_menu_item(menu, id=50, 
text="&Controller\tCtrl+Z", icon=paths.icon_16x16.controller))
         menu.AppendItem(self.build_menu_item(menu, id=51, text="relax 
&prompt\tCtrl+P", icon=paths.icon_16x16.relax_prompt))
         menu.AppendItem(self.build_menu_item(menu, id=52, text="&Spin 
view\tCtrl+T", icon=paths.icon_16x16.spin))
+        menu.AppendItem(self.build_menu_item(menu, id=53, text="&Results 
viewer\tCtrl+R", icon=paths.icon_16x16.view_statistics))
         self.menubar.Append(menu, "&View")
 
         # The 'View' actions.
-        self.gui.Bind(wx.EVT_MENU, self.gui.show_controller,    id=50)
-        self.gui.Bind(wx.EVT_MENU, self.gui.show_prompt,        id=51)
-        self.gui.Bind(wx.EVT_MENU, self.gui.show_tree,          id=52)
+        self.gui.Bind(wx.EVT_MENU, self.gui.show_controller,        id=50)
+        self.gui.Bind(wx.EVT_MENU, self.gui.show_prompt,            id=51)
+        self.gui.Bind(wx.EVT_MENU, self.gui.show_tree,              id=52)
+        self.gui.Bind(wx.EVT_MENU, self.gui.show_results_viewer,    id=53)
 
         # The 'User functions' menu entries.
         self._user_functions()




Related Messages


Powered by MHonArc, Updated Tue Jun 28 22:40:02 2011