Changeset 780 for moxy/trunk
- Timestamp:
- Feb 2, 2012 2:36:47 PM (13 years ago)
- Location:
- moxy/trunk/src/moxy
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified moxy/trunk/src/moxy/m_axis.py ¶
r770 r780 25 25 26 26 # - - - - - - - - - - - - - - - - - - Global 27 27 28 28 29 __svnid__ = "$Id$" -
TabularUnified moxy/trunk/src/moxy/m_pv.py ¶
r769 r780 25 25 26 26 # - - - - - - - - - - - - - - - - - - Global 27 27 28 28 29 __svnid__ = "$Id$" -
TabularUnified moxy/trunk/src/moxy/m_set.py ¶
r778 r780 20 20 21 21 22 #from threading import Thread23 22 from m_axis import SingleAxis 24 23 25 24 26 25 # - - - - - - - - - - - - - - - - - - Global 26 27 27 28 28 __svnid__ = "$Id$" … … 62 62 axis.move(value) 63 63 64 def connect(self, handler = None): # TODO: should we name a handler here?64 def connect(self, handler = None): 65 65 '''connect all axes with EPICS PVs''' 66 66 for axis in self.axes: -
TabularUnified moxy/trunk/src/moxy/m_settings.py ¶
r779 r780 24 24 25 25 # - - - - - - - - - - - - - - - - - - Global 26 26 27 27 28 __svnid__ = "$Id$" -
TabularUnified moxy/trunk/src/moxy/paxis.py ¶
r770 r780 32 32 33 33 34 # - - - - - - - - - - - - - - - - - - Imports 35 36 34 37 import epics 38 39 40 # - - - - - - - - - - - - - - - - - - Global 41 42 43 __svnid__ = "$Id$" 44 45 46 # - - - - - - - - - - - - - - - - - - classes 35 47 36 48 … … 121 133 122 134 135 # - - - - - - - - - - - - - - - - - - methods 136 137 138 # - - - - - - - - - - - - - - - - - - main 139 140 123 141 if __name__ == '__main__': 124 142 '''show how to use this class''' -
TabularUnified moxy/trunk/src/moxy/template.py ¶
r726 r780 25 25 # - - - - - - - - - - - - - - - - - - Global 26 26 27 27 28 __svnid__ = "$Id$" 28 29 -
TabularUnified moxy/trunk/src/moxy/vc_axis.py ¶
r777 r780 232 232 233 233 def motorControlsDialog(self): 234 # TODO: implement this with a button235 234 if self.axis_parent.axis.isMotorRecord: 236 235 pv = self.axis_parent.axis.axis.get_pv('VAL').pvname 237 # FIXME: what is the correct parent to use here?238 # TODO: Look at implementation of epics.wx.motordetailframe.MotorDetailFrame()239 236 parent = wx.GetTopLevelParent(self.axis_parent) 240 237 MotorControlsFrame(parent, m_pv.GetBasePv(pv))
Note: See TracChangeset
for help on using the changeset viewer.