1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
"""
This module provides wxPython widgets specially designed to work as
Epics Controls. In general, these controls combine a wx widget with
an Epics PV, and allow automatic updating of the widget when the
associated PV changes.
"""
from . import motorpanel, motordetailframe, wxlib, ogllib, wxutils
MotorPanel = motorpanel.MotorPanel
MotorDetailPanel = motordetailframe.MotorDetailPanel
MotorDetailFrame = motordetailframe.MotorDetailFrame
PVText = pvText = wxlib.PVText
PVAlarm = pvAlarm = wxlib.PVAlarm
PVFloatCtrl = pvFloatCtrl = wxlib.PVFloatCtrl
PVTextCtrl = pvTextCtrl = wxlib.PVTextCtrl
PVStaticText = pvStaticText = wxlib.PVStaticText
PVEnumButtons = pvEnumButtons = wxlib.PVEnumButtons
PVEnumChoice = pvEnumChoice = wxlib.PVEnumChoice
PVBitmap = pvBitmap = wxlib.PVBitmap
PVCheckBox = pvCheckBox = wxlib.PVCheckBox
PVFloatSpin = pvFloatSpin = wxlib.PVFloatSpin
PVSpinCtrl = pvSpinCtrl = wxlib.PVSpinCtrl
PVButton = pvButton = wxlib.PVButton
PVBitmapButton = pvBitmapButton = wxlib.PVBitmapButton
PVRadioButton = pvRadioButton = wxlib.PVRadioButton
PVComboBox = pvComboBox = wxlib.PVComboBox
PVEnumComboBox = pvEnumComboBox = wxlib.PVEnumComboBox
PVCollapsiblePane = pvCollapsiblePane = wxlib.PVCollapsiblePane
# OGL shapes
PVRectangle = pvRectangle = ogllib.PVRectangle
PVCircle = pvCircle = ogllib.PVCircle
set_sizer = wxutils.set_sizer
set_float = wxutils.set_float
Closure = wxutils.Closure
FloatCtrl = wxutils.FloatCtrl
DelayedEpicsCallback = wxlib.DelayedEpicsCallback
EpicsFunction = wxlib.EpicsFunction
finalize_epics = wxlib.finalize_epics
EpicsTimer = wxlib.EpicsTimer
|