mailr10092 - in /branches/bieri_gui/gui_bieri/res: filedialog.py message.py


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

Header


Content

Posted by edward on December 14, 2009 - 14:41:
Author: bugman
Date: Mon Dec 14 14:41:14 2009
New Revision: 10092

URL: http://svn.gna.org/viewcvs/relax?rev=10092&view=rev
Log:
Added the filedialog and message modules.

See Michael's post at 
https://mail.gna.org/public/relax-devel/2009-12/msg00024.html (Message-id:
<4B25B6EE.6060505@xxxxxx>).

These are new files which replace functions within easygui.py.


Added:
    branches/bieri_gui/gui_bieri/res/filedialog.py
    branches/bieri_gui/gui_bieri/res/message.py

Added: branches/bieri_gui/gui_bieri/res/filedialog.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/res/filedialog.py?rev=10092&view=auto
==============================================================================
--- branches/bieri_gui/gui_bieri/res/filedialog.py (added)
+++ branches/bieri_gui/gui_bieri/res/filedialog.py Mon Dec 14 14:41:14 2009
@@ -1,0 +1,95 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2009 Michael Bieri                                           
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
+
+# file dialog script
+
+import wx
+
+def openfile(msg, directory, filetype, default): # open a file
+
+       #Input format:
+       #msg:              message to display
+       #directory:        directory, where dialog opens as default
+       #filetype:         proposed file to open
+       #default:          list of supported files, indicated as "(Label)|os 
command|...
+
+       #command: 
+       #openfile('select file to open','/usr', 'save.relaxGUI', 'relaxGUI 
files (*.relaxGUI)|*.relaxGUI|all files (*.*)|*.*') 
+       #suggests to open /usr/save.relaxGUI, supported files to open are: 
*.relaxGUI, *.*
+
+       application = wx.PySimpleApp()
+        newfile = None
+       dialog = wx.FileDialog ( None, message = msg, style = wx.OPEN, 
defaultDir= directory, defaultFile = filetype, wildcard = default)
+       if dialog.ShowModal() == wx.ID_OK:
+          newfile = dialog.GetPath()
+       dialog.Destroy()
+        return newfile
+
+def multi_openfile(msg, directory, filetype, default): # open multiple file
+
+       #Input format:
+       #msg:              message to display
+       #directory:        directory, where dialog opens as default
+       #filetype:         proposed file to open
+       #default:          list of supported files, indicated as "(Label)|os 
command|...
+
+       #command: 
+       #openfile('select file to open','/usr', 'save.relaxGUI', 'relaxGUI 
files (*.relaxGUI)|*.relaxGUI|all files (*.*)|*.*') 
+       #suggests to open /usr/save.relaxGUI, supported files to open are: 
*.relaxGUI, *.*
+
+       application = wx.PySimpleApp()
+        newfile = []
+       dialog = wx.FileDialog ( None, message = msg, style = wx.OPEN | 
wx.FD_MULTIPLE, defaultDir= directory, defaultFile = filetype, wildcard = 
default)
+       if dialog.ShowModal() == wx.ID_OK:
+          newfile = dialog.GetPaths()
+       dialog.Destroy()
+        return newfile
+
+def savefile(msg, directory, filetype, default): # save a file
+
+       #Input format:
+       #msg:              message to display
+       #directory:        directory, where dialog opens as default
+       #filetype:         proposed file to save
+       #default:          list of supported files, indicated as "(Label)|os 
command|...
+
+       #command: 
+       #savefile('select file to save', '/usr', 'save.relaxGUI', 'relaxGUI 
files (*.relaxGUI)|*.relaxGUI|all files (*.*)|*.*') 
+       #suggests to save /usr/save.relaxGUI, supported files to save are: 
*.relaxGUI, *.*
+
+       application = wx.PySimpleApp()
+        newfile = None
+       dialog = wx.FileDialog ( None, message = msg, style = wx.SAVE, 
defaultDir= directory, defaultFile = filetype, wildcard = default)
+       if dialog.ShowModal() == wx.ID_OK:
+          newfile = dialog.GetPath()
+       dialog.Destroy()
+        return newfile
+
+def opendir(msg, default): # select directory, msg is message to display, 
default is starting directory
+       application = wx.PySimpleApp()
+        newdir = None
+        dlg = wx.DirDialog(None, message = msg, style=wx.DD_DEFAULT_STYLE | 
wx.DD_NEW_DIR_BUTTON, defaultPath = default)
+        if dlg.ShowModal() == wx.ID_OK:
+            newdir= dlg.GetPath() 
+       dlg.Destroy()
+        return newdir
+

Added: branches/bieri_gui/gui_bieri/res/message.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/res/message.py?rev=10092&view=auto
==============================================================================
--- branches/bieri_gui/gui_bieri/res/message.py (added)
+++ branches/bieri_gui/gui_bieri/res/message.py Mon Dec 14 14:41:14 2009
@@ -1,0 +1,100 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2009 Michael Bieri                                           
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
+
+import wx
+
+class relax_is_running(wx.Dialog):
+    def __init__(self, *args, **kwds):
+        # begin relax_is_running.__init__
+        kwds["style"] = wx.DEFAULT_FRAME_STYLE
+        wx.Dialog.__init__(self, *args, **kwds)
+        self.label_1 = wx.StaticText(self, -1, "relax is running...")
+        self.bitmap_1 = wx.StaticBitmap(self, -1, 
wx.Bitmap("/home/michael/Dokumente/relaxGUI/res/pics/relax.gif", 
wx.BITMAP_TYPE_ANY))
+        self.abort_relax = wx.Button(self, -1, "Cancel")
+
+        self.__set_properties()
+        self.__do_layout()
+
+        self.Bind(wx.EVT_BUTTON, self.cancel_relax_run, self.abort_relax)
+        # end wxGlade
+
+    def __set_properties(self):
+        # begin relax_is_running.__set_properties
+        self.SetTitle("relaxGUI")
+        _icon = wx.EmptyIcon()
+        
_icon.CopyFromBitmap(wx.Bitmap("/home/michael/Dokumente/relaxGUI/res/pics/relax_start.gif",
 wx.BITMAP_TYPE_ANY))
+        self.SetIcon(_icon)
+        self.label_1.SetFont(wx.Font(11, wx.DEFAULT, wx.NORMAL, wx.BOLD, 0, 
""))
+        # end 
+
+    def __do_layout(self):
+        # begin relax_is_running.__do_layout
+        sizer_1 = wx.BoxSizer(wx.VERTICAL)
+        sizer_1.Add(self.label_1, 0, wx.ALIGN_CENTER_HORIZONTAL, 0)
+        sizer_1.Add(self.bitmap_1, 0, wx.ALL|wx.ALIGN_CENTER_HORIZONTAL, 15)
+        sizer_1.Add(self.abort_relax, 0, wx.ALIGN_CENTER_HORIZONTAL, 0)
+        self.SetSizer(sizer_1)
+        sizer_1.Fit(self)
+        self.Layout()
+        # end 
+
+    def cancel_relax_run(self, event): # wxGlade: 
relax_is_running.<event_handler>
+        self.Close()
+        event.Skip()
+
+# end of class relax_is_running
+
+
+
+def relax_run_ok(msg1):
+    appilcation = wx.PySimpleApp()
+    wx.MessageBox(msg1, style = wx.OK)
+
+def exec_relax():
+    application = wx.PySimpleApp()
+    check = False
+    startrelax = wx.MessageDialog(None, message = 'Start relax?', style = 
wx.YES_NO | wx.NO_DEFAULT)
+    if startrelax.ShowModal() == wx.ID_YES:
+        check = True
+    else:
+        check = False 
+    return check
+
+def missing_data():
+    application = wx.PySimpleApp()
+    wx.MessageBox('Missing Data!', style = wx.OK | wx.ICON_ERROR)
+
+def question(msg):
+    application = wx.PySimpleApp()
+    check = False
+    startrelax = wx.MessageDialog(None, message = msg, style = wx.YES_NO | 
wx.NO_DEFAULT)
+    if startrelax.ShowModal() == wx.ID_YES:
+        check = True
+    else:
+        check = False 
+    return check
+
+def dir_message(msg):
+    application = wx.PySimpleApp()
+    wx.MessageBox(msg, style = wx.OK | wx.ICON_INFORMATION)
+
+    




Related Messages


Powered by MHonArc, Updated Mon Dec 14 15:00:02 2009