Changeset 1098
- Timestamp:
- 12/07/06 03:07:17 (2 years ago)
- Files:
-
- gaphor/branches/new-canvas/TODO (modified) (1 diff)
- gaphor/branches/new-canvas/gaphor/adapters/editors.py (modified) (1 diff)
- gaphor/branches/new-canvas/gaphor/diagram/generalization.py (modified) (1 diff)
- gaphor/branches/new-canvas/gaphor/diagram/implementation.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/branches/new-canvas/TODO
r1091 r1098 1 2 - text position of folded InterfaceItem (should be below circle) 3 - extra margin around operations in ClassItem 4 - join/fork node text editing 5 - text placement for action nodes. 1 6 2 7 - Undo functionality gaphor/branches/new-canvas/gaphor/adapters/editors.py
r1097 r1098 80 80 name part or is it text in some compartment 81 81 """ 82 if self._item.drawing_style not in (items.ClassifierItem.DRAW_COMPARTMENT, items.ClassifierItem.DRAW_COMPARTMENT_ICON): 83 self._edit = self._item 84 return True 85 82 86 self._edit = None 83 87 name_comp_height = self._item.get_name_size()[1] gaphor/branches/new-canvas/gaphor/diagram/generalization.py
r1022 r1098 22 22 cr.line_to(15, -10) 23 23 cr.line_to(15, 10) 24 cr.line_to(0, 0) 24 cr.close_path() 25 cr.stroke() 25 26 cr.move_to(15, 0) 26 27 gaphor/branches/new-canvas/gaphor/diagram/implementation.py
r1022 r1098 33 33 cr.line_to(15, -10) 34 34 cr.line_to(15, 10) 35 cr. line_to(0, 0)35 cr.close_path() 36 36 cr.stroke() 37 37 cr.move_to(15, 0)
