descriptionDia CVS mirror
homepage URLhttp://live.gnome.org/Dia
ownerpclouds@gmail.com
last changeTue, 5 Dec 2006 22:08:34 +0000 (5 22:08 +0000)
content tags
add:
README
Dia is a program for drawing structured diagrams.

Dia is a GNU program, and is Free Software.  See the COPYING file for
the licence.

Documentation is a bit sparse at the moment.  Some info can be
found in the doc/ directory.

--

I haven't had time to write anything here yet.
Read INSTALL for some brief installation instructions.

Homepage for dia is at:
 http://www.gnome.org/projects/dia

Some comments about the source:
-------------------------------

 Everything on the screen 'inherits' from the structure Object 
in lib/object.h. (ps. this is a nice place to start reading the code.).
Inherits in C means (as in gtk) that it begins with a copy of that structure. 
Some base classes exists in lib/, like element.h (for doing 'box-like' 
objects), connection.h (for doing 'line-like' objects), orth_conn.h (for doing 
connections with orthogonal lines, like the uml-stuff) and render_object.h 
(for doing picture-like objects). These base classes are then subclassed in 
the different object in the object-libraries like objects/standard object/UML 
and object/network.

 The objects work by filling out two structures that the main program (app/*) 
uses to handle the objects. The ObjectType structure which consists of some 
info and a pointer to the type-operations (create+load+save). There's one 
ObjectType per object type currently loaded. Then the Object structure, there 
exists a copy of this for each object of the kind on screen (and in 
copy-buffers). This contains some info like: type, bounding_box, position, 
handles (the rectangles you move with the mouse) and connections. It also 
contains a pointer to the object-operations. These are called from the main 
program when if wants the object to do something. All ops take an Object as 
the first argument. This is usually casted to the subtype in the function 
headed (gives all those pita warnings) so that you directly can use the info 
stored in the subclasses. Most ops are quite self-describing, and the code can 
be copy-pasted from an object like the one you're doing. Rendering to 
screen/postscript is done through a 'Renderer' abstraction that can be found 
in lib/render.h.
 
XML based objects:
------------------
You can (from version 0.80) create new objects using a SVG like XML languange.
The file doc/custom-shapes has more information about this.
 
Note on handles and connection points:
--------------------------------------

An object has handles to resize it. A handle can be moved either because
the user dragged it with the mouse, or the handle is attached to another
object, which moved itself. The handles are diplayed as little squares
(red: normal, green: attached to an object, blue: can't be moved).

When the handle of an object is connected to another object, it's always
on special points called connection points, displayed as crosses.

Implementation:
- each object has an array of pointer to ConnectionPoint.
- each object has an array of pointer to Handle.
- each Handle has a pointer to 1 ConnectionPoint (NULL if the handle if
the Handle is not connected).
- each ConnectionPoint has a list of all objects connected to it.

The Object type does not manage the allocation/deallocation of handles and
connection points. When saving a diagram the pointer from the handle to
the connectionpoint is saved as the index of the connectionpoint. So make
sure the order of the connectionpoints is the same when loading the saved
object.
shortlog
2006-12-05 dlodge2006-12-05 David Lodge <dave@cirt.net>master
2006-12-03 dglezos2006-12-03 Dimitris Glezos <dimitris@glezos.com>
2006-12-03 lclausenShortcuts for properties, connpoints patch, potfiles.
2006-12-02 lclausenEven-odd rule.
2006-12-02 lclausenAdded hint on Space use, added items with holes to...
2006-12-02 lclausenSample updated, units of measure inserted.
2006-12-02 lclausenRemoved debugging include.
2006-12-02 lclausenoffset fixes, admit to textline, proper updating of...
2006-12-01 lclausenFix text crash bugs, text still funky. Fix from bug...
2006-12-01 sdteffen* lib/text.h: Added text_get_line() declaration
2006-11-30 lclausenFixed lack-of-set-font error, and removed alloc/free...
2006-11-29 lclausenTextLine in Text
2006-11-28 lclausenMoved includes, updated libdia, fixed function call.
2006-11-28 lclausenFix of includes in .h files and start of textline in...
2006-11-26 lclausenText objects are now internally encapsulated, simplifyi...
2006-11-25 lclausenRemoving _scaled_ functions, having replaced them with...
...
heads
17 years ago master