Changeset 4844
- Timestamp:
- Mar 8, 2021 12:34:29 PM (3 years ago)
- Files:
-
- 21 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r4833 r4844 3322 3322 self.list.InsertColumn(i+inc, lbl, width=wid, format=colPosition) 3323 3323 for i,item in enumerate(choices): 3324 if item[0].startswith(' '): 3325 item[0] = '--- '+item[0].strip() 3324 3326 if checkLbl: 3325 3327 def OnCheck(event,row=i): … … 3336 3338 for j,item in enumerate(item[1:len(colLabels)]): 3337 3339 item = wordwrap(StripIndents(item,True), colWidths[j+1], wx.ClientDC(self)) 3340 item += "\n===========================================" 3338 3341 self.list.SetStringItem(i,1+j+inc, item) 3339 3342 # make buttons … … 6312 6315 before beginning Rietveld refinement.'''], 6313 6316 6317 ['LeBail', 'LeBailSucrose.htm', 'Le Bail Intensity Extraction in GSAS-II - Sucrose', 6318 '''Shows the process of setting up a Le Bail fit, where reflection 6319 intensities are treated as arbitrary, and how to converge the Le Bail 6320 intensities before a combined Le Bail/Least-Squares fit that 6321 optimizes lattice, peak shape and background parameters.'''], 6322 6314 6323 ['RietPlot', 'PublicationPlot.htm', 'Create a Publication-Ready Rietveld Plot', 6315 6324 '''Shows how to create a customized version of a plot from a fit, … … 6528 6537 sizer1.Add(label, 0, wx.ALIGN_CENTRE|wx.ALL, 0) 6529 6538 sizer1.Add((-1,-1),1, wx.EXPAND, 0) 6530 sizer1.Add(hlp ,0,wx.ALIGN_RIGHT|wx.ALL)6539 sizer1.Add(hlp) 6531 6540 sizer.Add(sizer1,0,wx.EXPAND|wx.ALL,0) 6532 6541 sizer.Add((10,10)) … … 6700 6709 '''Select tutorials from a two-column table, when possible 6701 6710 ''' 6702 lbls = ('tutorial name ','description')6711 lbls = ('tutorial name (indent indicates previous is required)','description') 6703 6712 colWidths=[400,400] 6704 6713 dlg = MultiColumnSelection(self,'select tutorial',lbls,choices,colWidths) -
trunk/GSASIIpwdGUI.py
r4842 r4844 2511 2511 G2frame.Bind(wx.EVT_MENU,OnInstCopy,id=G2G.wxID_SASDINSTCOPY) 2512 2512 MakeParameterWindow() 2513 2513 G2frame.dataWindow.SendSizeEvent() 2514 2514 2515 2515 ################################################################################
Note: See TracChangeset
for help on using the changeset viewer.