Changeset c92e0f2a574ef34db55f8017089dda5856258200
- Timestamp:
- 05/07/10 19:55:20 (21 months ago)
- Children:
- 06c5c29de5c9c613c7ccb1995d2792ecaa925d68
- Parents:
- 7bea8cb34b5f80060aeafc77e2a85da510cd9c37
- git-committer:
- Luper Rouch <luper.rouch@…> (05/07/10 19:55:20)
- Files:
-
- 2 added
- 7 edited
-
hardware/libraries/RadaSheper/RadaSheper.cpp (modified) (1 diff)
-
pyflu/.gitignore (modified) (1 diff)
-
pyflu/pyflu/__init__.py (modified) (1 diff)
-
pyflu/pyflu/qt/base/main_window.py (modified) (3 diffs)
-
pyflu/pyflu/qt/models/tablemodel.py (added)
-
pyflu/pyflu/qt/models/tablenode.py (added)
-
pyflu/pyflu/qt/models/treemodel.py (modified) (1 diff)
-
pyflu/pyflu/qt/models/treenode.py (modified) (1 diff)
-
pyflu/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hardware/libraries/RadaSheper/RadaSheper.cpp
r9a5cd22 rc92e0f2 38 38 tasks[Detector] = &detector; 39 39 // Member variables 40 mode = Radar;40 mode = Intervalometer; 41 41 focus_mode = ManualFocus; 42 42 } -
pyflu/.gitignore
r32adf17 rc92e0f2 3 3 pyflu.egg-info 4 4 .coverage 5 *.cover -
pyflu/pyflu/__init__.py
r70bb1cc rc92e0f2 5 5 6 6 def version(): 7 return "0. 5.1"7 return "0.6.0" 8 8 -
pyflu/pyflu/qt/base/main_window.py
r70bb1cc rc92e0f2 50 50 """ 51 51 A mixin class to handle MRU files lists. 52 53 Subclasses must define the :attr:`mru_load_func` and :attr:`mru_menu` class 54 attributes, which must be names of the load method (taking the file 55 path as argument) and of the MRU menu item. 52 56 """ 53 57 … … 55 59 mru_length = 5 56 60 mru_load_func = None 61 mru_menu = None 57 62 58 63 def mru_list(self): … … 108 113 109 114 def refresh_mru_menu(self): 110 raise NotImplementedError("subclasses of MruMainWindow must provide " 111 "an implementation of refresh_mru_menu()") 115 menu = getattr(self, self.mru_menu) 116 menu.clear() 117 menu.addActions(self.mru_actions()) -
pyflu/pyflu/qt/models/treemodel.py
r70bb1cc rc92e0f2 55 55 return self.num_columns 56 56 57 def data(self, index, role ):57 def data(self, index, role=Qt.DisplayRole): 58 58 if not index.isValid(): 59 59 return QVariant() -
pyflu/pyflu/qt/models/treenode.py
r5d845a9 rc92e0f2 94 94 def row(self): 95 95 """ 96 This property holdsthe row number of this node.96 Return the row number of this node. 97 97 """ 98 98 return self.parent.children.index(self) -
pyflu/setup.py
r33be698 rc92e0f2 33 33 install_requires = ["lxml"], 34 34 35 packages = find_packages( ),35 packages = find_packages("pyflu"), 36 36 )
Note: See TracChangeset
for help on using the changeset viewer.
