Changeset 2083 for trunk/GSASII.py
- Timestamp:
- Dec 5, 2015 1:49:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r2077 r2083 73 73 import GSASIIpwdGUI as G2pdG 74 74 import GSASIIphsGUI as G2phsG 75 import GSASIIimgGUI as G2imG 75 76 import GSASIIspc as G2spc 76 77 import GSASIIstrMain as G2stMn … … 2027 2028 self.Bind(wx.EVT_MENU, obj.Exporter, id=item.GetId()) 2028 2029 self.ExportLookup[item.GetId()] = typ # lookup table for submenu item 2029 2030 #code to debug an Exporter. hard-coded the routine below, to allow a reload before use 2030 item = imagemenu.Append(wx.ID_ANY, 2031 help='Export image controls and masks for multiple images', 2032 kind=wx.ITEM_NORMAL, 2033 text='Multiple image controls and masks') 2034 self.Bind(wx.EVT_MENU, self.OnSaveMultipleImg, id=item.GetId()) 2035 #code to debug an Exporter. hard-code the routine below, to allow a reload before use 2031 2036 # def DebugExport(event): 2032 2037 # print 'start reload' … … 3678 3683 dlg.Destroy() 3679 3684 return result 3680 3685 3686 def OnSaveMultipleImg(self,event): 3687 '''Select and save multiple image parameter and mask files 3688 ''' 3689 G2IO.SaveMultipleImg(self) 3690 3681 3691 class GSASIImain(wx.App): 3682 3692 '''Defines a wxApp for GSAS-II
Note: See TracChangeset
for help on using the changeset viewer.