Changeset 1132 for gaphor/trunk/doc/gaphor.txt
- Timestamp:
- 02/18/07 20:40:28 (2 years ago)
- Files:
-
- gaphor/trunk/doc/gaphor.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor/trunk/doc/gaphor.txt
r173 r1132 2 2 ~~~~~~ 3 3 4 Gaphor is a UML CASE tool aiming for symplicity. It is written in Python and 5 C. The goal is to write as much as possible in Python (easy scriptable for 6 code generators) and only some elementary parts are written in C (this involves 7 mainly the graphical items). 4 Gaphor is a UML CASE tool aiming for symplicity. It is written in Python. 5 The goal is to write as much as possible in Python (easy scriptable for 6 code generators). 8 7 9 8 So here's what has to be created: … … 40 39 ~~~~~~~~~~~~~~~ 41 40 Of course we need something to draw. The items that are to be placed on the 42 diagrams need to be created. Since graphical stuff can take up a lot of time 43 I think it is wise to create those things in C, instead of Python. 44 We will however create hooks for the graphical items, so we can at least move 45 them around and place them on a diagram from within Python. 41 diagrams need to be created. 46 42 47 43
