mailr14118 - /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 August 04, 2011 - 13:01:
Author: bugman
Date: Thu Aug  4 13:01:11 2011
New Revision: 14118

URL: http://svn.gna.org/viewcvs/relax?rev=14118&view=rev
Log:
Added the 'Help->Licence' menu entry (this is a simple copy of 'User 
functions->gpl').


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=14118&r1=14117&r2=14118&view=diff
==============================================================================
--- branches/gui_testing/gui/menu.py (original)
+++ branches/gui_testing/gui/menu.py Thu Aug  4 13:01:11 2011
@@ -103,16 +103,19 @@
         menu.AppendItem(build_menu_item(menu, id=41, text="Mailing list 
&contact (relax-users@xxxxxxx)", icon=paths.icon_16x16.contact))
         menu.AppendItem(build_menu_item(menu, id=42, text="&References", 
icon=paths.icon_16x16.ref))
         menu.AppendSeparator()
+        menu.AppendItem(build_menu_item(menu, id=45, text="&Licence", 
icon=paths.icon_16x16.gnu_head))
+        menu.AppendSeparator()
         menu.AppendItem(build_menu_item(menu, id=43, text="About relaxG&UI", 
icon=paths.icon_16x16.about_relaxgui))
         menu.AppendItem(build_menu_item(menu, id=44, text="About rela&x", 
icon=paths.icon_16x16.about_relax))
         self.menubar.Append(menu, "&Help")
 
         # The 'Help' menu actions.
-        self.gui.Bind(wx.EVT_MENU, self.gui.relax_manual,   id=40)
-        self.gui.Bind(wx.EVT_MENU, self.gui.contact_relax,  id=41)
-        self.gui.Bind(wx.EVT_MENU, self.gui.references,     id=42)
-        self.gui.Bind(wx.EVT_MENU, self.gui.about_gui,      id=43)
-        self.gui.Bind(wx.EVT_MENU, self.gui.about_relax,    id=44)
+        self.gui.Bind(wx.EVT_MENU, self.gui.relax_manual,               
id=40)
+        self.gui.Bind(wx.EVT_MENU, self.gui.contact_relax,              
id=41)
+        self.gui.Bind(wx.EVT_MENU, self.gui.references,                 
id=42)
+        self.gui.Bind(wx.EVT_MENU, self.gui.about_gui,                  
id=43)
+        self.gui.Bind(wx.EVT_MENU, self.gui.about_relax,                
id=44)
+        self.gui.Bind(wx.EVT_MENU, self.gui.user_functions.gpl.run,     
id=45)
 
         # Add the menu bar GUI item to the main frame.
         self.gui.SetMenuBar(self.menubar)




Related Messages


Powered by MHonArc, Updated Thu Aug 04 13:20:02 2011