- Timestamp:
- Dec 5, 2011 10:38:28 PM (14 years ago)
- Location:
- moxy/trunk/src/moxy
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
moxy/trunk/src/moxy/LICENSE ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/__init__.py ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/about.py ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/axes_set.py ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/connection.py ¶
- Property svn:eol-style set to native
-
TabularUnified moxy/trunk/src/moxy/moxy.py ¶
- Property svn:eol-style set to native
r704 r705 75 75 Menu(HelpAction, Separator(), AboutAction, name='Help'), 76 76 ) 77 78 def connect(self): 79 '''Connect all the axes sets with EPICS''' 80 for a_set in axes_sets: 81 a_set.connect() 82 83 def disconnect(self): 84 '''Disconnect all the axes sets from EPICS''' 85 for a_set in axes_sets: 86 a_set.disconnect() 77 87 78 88 view = View( … … 122 132 } 123 133 124 Moxy( **outer ).configure_traits() 125 #Moxy().configure_traits() 134 mxy = Moxy( **outer ) 135 mxy.connect() 136 mxy.configure_traits() 137 mxy.disconnect() -
moxy/trunk/src/moxy/positions_set.py ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/single_axis.py ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/table_row.py ¶
- Property svn:eol-style set to native
-
moxy/trunk/src/moxy/version.py ¶
- Property svn:eol-style set to native
Note: See TracChangeset
for help on using the changeset viewer.