Changeset 2355
- Timestamp:
- 09/11/08 04:18:31 (3 months ago)
- Files:
-
- gaphas/trunk/README.txt (modified) (2 diffs)
- gaphas/trunk/gaphas/__init__.py (modified) (1 diff)
- gaphas/trunk/state.txt (modified) (2 diffs)
- gaphas/trunk/undo.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/README.txt
r2094 r2355 28 28 The item's parent/child relationships are maintained here (not in the Item!). 29 29 30 An Item can have a set of Handle's ( also from item.py) which can be used to30 An Item can have a set of Handle's (from connector.py) which can be used to 31 31 manipulate the item (although this is not necessary). Each item has it's own 32 32 coordinate system (a (0, 0) point). Item.matrix is the transformation … … 208 208 209 209 item.py: 210 Canvas item and handle 210 Canvas item 211 connector.py: 212 Handle and Port for items 211 213 canvas.py: 212 214 Canvas class gaphas/trunk/gaphas/__init__.py
r1130 r2355 13 13 14 14 from canvas import Canvas 15 from item import Item, Line, Element, Handle 15 from connector import Handle 16 from item import Item, Line, Element 16 17 from view import View, GtkView 17 18 gaphas/trunk/state.txt
r2095 r2355 56 56 57 57 The ``@observed`` decorator can also be applied to properties, as is done in 58 gaphas/ item.py's Handle class:58 gaphas/connector.py's Handle class: 59 59 60 60 >>> from gaphas.solver import Variable … … 169 169 add() and remove() 170 170 171 connector.py: 172 Connector: 173 x and y properties 174 Handle: 175 connectable, movable, visible, connected_to and disconnect properties 176 171 177 item.py: 172 Handle:173 x, y, connectable, movable, visible, connected_to and disconnect properties174 178 Item: 175 179 canvas and matrix properties gaphas/trunk/undo.txt
r2214 r2355 270 270 [<gaphas.item.Item object at 0x...>] 271 271 272 item.py: Handle272 connector.py: Handle 273 273 --------------- 274 274 Changing the Handle's position is reversible:
