Changeset 145
- Timestamp:
- Aug 5, 2010 2:37:03 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r142 r145 10 10 import GSASIIphsGUI as G2phG 11 11 12 [ wxID_ATOMSEDITADD, wxID_ATOMSEDITINSERT, wxID_ATOMSEDITDELETE, 13 ] = [wx.NewId() for _init_coll_Atom_Items in range(3)] 12 [ wxID_ATOMSEDITADD, wxID_ATOMSEDITINSERT, wxID_ATOMSEDITDELETE, wxID_ATOMSREFINE, 13 wxID_ATOMSMODIFY, wxID_ATOMSTRANSFORM, 14 ] = [wx.NewId() for _init_coll_Atom_Items in range(6)] 14 15 15 16 [ wxID_IMCALIBRATE, wxID_IMINTEGRATE, wxID_IMCLEARCALIB, wxID_SAVEINTG, … … 65 66 parent.Append(id=wxID_ATOMSEDITDELETE, kind=wx.ITEM_NORMAL,text='Delete atom', 66 67 help='Select atoms to delete first') 68 parent.Append(id=wxID_ATOMSREFINE, kind=wx.ITEM_NORMAL,text='Set atom refinement flags', 69 help='Select atoms to refine first') 70 parent.Append(id=wxID_ATOMSMODIFY, kind=wx.ITEM_NORMAL,text='Modify atom parameters', 71 help='Select atoms to modify first') 72 parent.Append(id=wxID_ATOMSTRANSFORM, kind=wx.ITEM_NORMAL,text='Transform atoms', 73 help='Select atoms to transform first') 67 74 68 75 def _init_coll_IndPeaks_Items(self,parent): … … 185 192 self.SetCellBackgroundColour(r,c,color) 186 193 self.SetReadOnly(r,c,isReadOnly=readonly) 187 194 188 195 class GSNoteBook(wx.Notebook): 189 196 def __init__(self, parent, name='',size = None):
Note: See TracChangeset
for help on using the changeset viewer.