mailr11570 - /branches/bieri_gui/gui_bieri/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 15, 2010 - 21:08:
Author: bugman
Date: Wed Sep 15 21:08:35 2010
New Revision: 11570

URL: http://svn.gna.org/viewcvs/relax?rev=11570&view=rev
Log:
The relax PDF manual is now opened in a os native app with 'F1' or 
'Help->Manual'.


Modified:
    branches/bieri_gui/gui_bieri/relax_gui.py

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=11570&r1=11569&r2=11570&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/relax_gui.py (original)
+++ branches/bieri_gui/gui_bieri/relax_gui.py Wed Sep 15 21:08:35 2010
@@ -25,7 +25,9 @@
 """Main module for the relax graphical user interface."""
 
 # Python module imports.
-from os import getcwd, mkdir, sep
+import __main__
+import os
+from os import F_OK, access, getcwd, mkdir, sep
 import platform
 from re import search
 from string import lower, lowercase, replace
@@ -58,7 +60,7 @@
 from controller import Controller
 from derived_wx_classes import StructureTextCtrl
 from filedialog import multi_openfile, opendir, openfile, savefile
-from message import dir_message, exec_relax, missing_data, question, 
relax_run_ok
+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 references import References
 from settings import import_file_settings, load_sequence, 
relax_global_settings
@@ -324,6 +326,7 @@
         menubar.Append(menu, "&Help")
 
         # The 'Help' menu actions.
+        self.Bind(wx.EVT_MENU, self.relax_manual,  id=40)
         self.Bind(wx.EVT_MENU, self.contact_relax, id=30)
         self.Bind(wx.EVT_MENU, self.references, id=31)
         self.Bind(wx.EVT_MENU, self.about_gui,  id=41)
@@ -594,6 +597,35 @@
                 ds.relax_gui.file_setting = tmp_setting
 
 
+    def relax_manual(self, event):
+        """Display the relax manual.
+
+        @param event:   The wx event.
+        @type event:    wx event
+        """
+
+        # The PDF manual.
+        file = __main__.install_path + sep+"docs"+sep+"relax.pdf"
+
+        # Test if it exists.
+        if not access(file, F_OK):
+            error_message("The relax manual '%s' cannot be found.  Please 
compile using the scons program." % file)
+
+        # Open the relax PDF manual using the native PDF reader.
+        else:
+            # Windows.
+            if platform.uname()[0] in ['Windows', 'Microsoft']:
+                os.startfile(file)
+
+            # Mac OS X.
+            elif platform.uname()[0] == 'Darwin':
+                os.system('open %s' % file)
+
+            # POSIX Systems with xdg-open.
+            else:
+                os.system('/usr/bin/xdg-open %s' % file)
+
+
     def references(self, event):
         """Display the references relevant for relax.
 




Related Messages


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