Changeset 4191 for trunk/GSASIIphsGUI.py
- Timestamp:
- Nov 13, 2019 8:18:50 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r4183 r4191 4326 4326 wx.MessageBox('Dysnomia failed to make new structure factors','Dysnomia Error', 4327 4327 style=wx.ICON_ERROR) 4328 4329 4328 4329 ################################################################################ 4330 #### fullrmc Data page 4331 ################################################################################ 4332 4333 def UpdateFullRMC(): 4334 ''' Present the controls for running fullrmc 4335 ''' 4336 generalData = data['General'] 4337 pName = generalData['Name'].replace(' ','_') 4338 4339 def OnSetupFullRMC(event): 4340 print('Setup new run.py - not yet implemented') 4341 4342 def OnLoadFullRMC(event): 4343 print('Load run.py - not yet implemented') 4344 4345 def OnSaveFullRMC(event): 4346 print('Save run.py - not yet implemented') 4347 4348 def OnEditFullRMC(event): 4349 print('Edit run.py - not yet implemented') 4350 4351 def OnRunFullRMC(event): 4352 print('Run run.py - not yet implemented') 4353 4354 4330 4355 ################################################################################ 4331 4356 #### Layer Data page … … 9748 9773 G2gd.SetDataMenuBar(G2frame,G2frame.dataWindow.MEMMenu) 9749 9774 UpdateDysnomia() 9775 elif text == 'fullrmc': 9776 G2gd.SetDataMenuBar(G2frame,G2frame.dataWindow.FRMCMenu) 9777 UpdateFullRMC() 9750 9778 elif text == 'Draw Options': 9751 9779 G2gd.SetDataMenuBar(G2frame,G2frame.dataWindow.DataDrawOptions) … … 9892 9920 G2frame.Bind(wx.EVT_MENU, OnPeaksDelete, id=G2G.wxID_PEAKSDELETE) 9893 9921 G2frame.Bind(wx.EVT_MENU, OnPeaksClear, id=G2G.wxID_PEAKSCLEAR) 9922 # fullrmc 9923 FillSelectPageMenu(TabSelectionIdDict, G2frame.dataWindow.FRMCMenu) 9924 G2frame.Bind(wx.EVT_MENU, OnSetupFullRMC, id=G2G.wxID_SETUPFULLRMC) 9925 G2frame.Bind(wx.EVT_MENU, OnLoadFullRMC, id=G2G.wxID_LOADFULLRMC) 9926 G2frame.Bind(wx.EVT_MENU, OnSaveFullRMC, id=G2G.wxID_SAVEFULLRMC) 9927 G2frame.Bind(wx.EVT_MENU, OnEditFullRMC, id=G2G.wxID_EDITFULLRMC) 9928 G2frame.Bind(wx.EVT_MENU, OnRunFullRMC, id=G2G.wxID_RUNFULLRMC) 9894 9929 # MC/SA 9895 9930 FillSelectPageMenu(TabSelectionIdDict, G2frame.dataWindow.MCSAMenu) … … 9983 10018 G2frame.phaseDisplay.AddPage(G2frame.MCSA,'MC/SA') 9984 10019 Pages.append('MC/SA') 10020 G2frame.FRMC = wx.ScrolledWindow(G2frame.phaseDisplay) 10021 G2frame.phaseDisplay.AddPage(G2frame.FRMC,'fullrmc') 10022 Pages.append('fullrmc') 9985 10023 Texture = wx.ScrolledWindow(G2frame.phaseDisplay) 9986 10024 G2frame.phaseDisplay.AddPage(Texture,'Texture')
Note: See TracChangeset
for help on using the changeset viewer.