mailr11580 - in /branches/bieri_gui/gui_bieri: paths.py relax_gui.py


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

Header


Content

Posted by edward on September 16, 2010 - 10:53:
Author: bugman
Date: Thu Sep 16 10:53:11 2010
New Revision: 11580

URL: http://svn.gna.org/viewcvs/relax?rev=11580&view=rev
Log:
Created the 'View->relax prompt' menu entry with icon.

This currently does nothing.


Modified:
    branches/bieri_gui/gui_bieri/paths.py
    branches/bieri_gui/gui_bieri/relax_gui.py

Modified: branches/bieri_gui/gui_bieri/paths.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/paths.py?rev=11580&r1=11579&r2=11580&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/paths.py (original)
+++ branches/bieri_gui/gui_bieri/paths.py Thu Sep 16 10:53:11 2010
@@ -49,6 +49,7 @@
 MANUAL_ICON = ICON_PATH + '16x16'+sep+'actions'+sep+'help-contents.png'
 NEW_ICON = ICON_PATH + '16x16'+sep+'actions'+sep+'document-new.png'
 OPEN_ICON = ICON_PATH + '16x16'+sep+'actions'+sep+'document-open.png'
+RELAX_PROMPT_ICON = ICON_PATH + 
'16x16'+sep+'mimetypes'+sep+'application-x-executable-script.png'
 REMOVE_ICON = ICON_PATH + '16x16'+sep+'actions'+sep+'list-remove.png'
 SAVE_ICON = ICON_PATH + '16x16'+sep+'actions'+sep+'document-save.png'
 SAVE_AS_ICON = ICON_PATH + '16x16'+sep+'actions'+sep+'document-save-as.png'

Modified: branches/bieri_gui/gui_bieri/relax_gui.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/relax_gui.py?rev=11580&r1=11579&r2=11580&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/relax_gui.py (original)
+++ branches/bieri_gui/gui_bieri/relax_gui.py Thu Sep 16 10:53:11 2010
@@ -61,7 +61,7 @@
 from derived_wx_classes import StructureTextCtrl
 from filedialog import multi_openfile, opendir, openfile, savefile
 from message import dir_message, error_message, exec_relax, missing_data, 
question, relax_run_ok
-from paths import ABOUT_RELAX_ICON, ABOUT_RELAXGUI_ICON, CONTACT_ICON, 
CONTROLLER_ICON, EXIT_ICON, IMAGE_PATH, LOAD_ICON, MANUAL_ICON, NEW_ICON, 
OPEN_ICON, REF_ICON, SAVE_ICON, SAVE_AS_ICON, SETTINGS_ICON, 
SETTINGS_GLOBAL_ICON, SETTINGS_RESET_ICON
+from paths import ABOUT_RELAX_ICON, ABOUT_RELAXGUI_ICON, CONTACT_ICON, 
CONTROLLER_ICON, EXIT_ICON, IMAGE_PATH, LOAD_ICON, MANUAL_ICON, NEW_ICON, 
OPEN_ICON, REF_ICON, RELAX_PROMPT_ICON, SAVE_ICON, SAVE_AS_ICON, 
SETTINGS_ICON, SETTINGS_GLOBAL_ICON, SETTINGS_RESET_ICON
 from references import References
 from settings import import_file_settings, load_sequence, 
relax_global_settings
 
@@ -287,10 +287,12 @@
         # The 'View' menu entries.
         menu = wx.Menu()
         menu.AppendItem(self.build_menu_sub_item(menu, id=50, 
text="&Controller\tCtrl+Z", icon=CONTROLLER_ICON))
+        menu.AppendItem(self.build_menu_sub_item(menu, id=51, text="relax 
&prompt\tCtrl+P", icon=RELAX_PROMPT_ICON))
         menubar.Append(menu, "&View")
 
         # The 'View' actions.
         self.Bind(wx.EVT_MENU, self.show_controller,    id=50)
+        self.Bind(wx.EVT_MENU, self.relax_prompt,       id=51)
 
         # The 'Molecule' menu entries.
         menu = wx.Menu()
@@ -599,6 +601,18 @@
                 ds.relax_gui.file_setting = tmp_setting
 
 
+    def references(self, event):
+        """Display the references relevant for relax.
+
+        @param event:   The wx event.
+        @type event:    wx event
+        """
+
+        # Build and show the references window.
+        self.references = References(self)
+        self.references.Show()
+
+
     def relax_manual(self, event):
         """Display the relax manual.
 
@@ -628,16 +642,12 @@
                 os.system('/usr/bin/xdg-open %s' % file)
 
 
-    def references(self, event):
-        """Display the references relevant for relax.
-
-        @param event:   The wx event.
-        @type event:    wx event
-        """
-
-        # Build and show the references window.
-        self.references = References(self)
-        self.references.Show()
+    def relax_prompt(self, event):
+        """Display the relax prompt.
+
+        @param event:   The wx event.
+        @type event:    wx event
+        """
 
 
     def reset_setting(self, event): #reset all settings




Related Messages


Powered by MHonArc, Updated Thu Sep 16 11:00:02 2010