annotate README.h @ 101:d6f9af55b0d0

More documentation. 1. main page 2. copyright
author Thinker K.F. Li <thinker@branda.to>
date Wed, 10 Sep 2008 13:35:56 +0800
parents
children 19f09c343dcc
rev   line source
101
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
1 /*! \mainpage
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
2 *
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
3 * \image html madbutterfly.png
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
4 *
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
5 * MadButterfly ( http://www.assembla.com/spaces/MadButtefly) is a toolkit
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
6 * for GUI environment. It is designed for embedded
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
7 * system. It make GUI designers and programmers work seperately. Designer
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
8 * export their artifacts to files with SVG format. MadButterfly provides
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
9 * a tool to translate graphics in SVG into C code and a framework that
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
10 * programmer can manipulate graphics. It works like a Javascript programmer
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
11 * to manipulate DOM object. Programmers using MadButterfly manipulate
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
12 * objects corresponding to SVG tags to interact with users of application.
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
13 *
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
14 * \section SVG What is SVG?
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
15 * SVG is a W3C standard, you can find it at
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
16 * http://www.w3.org/Graphics/SVG/ . MadButterfly implements SVG Tiny 1.2,
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
17 * at http://www.w3.org/TR/SVGMobile12/ . SVG is a vector graphics file
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
18 * format with XML techinology. Major browsers, except IE, support to view
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
19 * SVG files. SVG graphics can also be embedded in HTML pages. Another
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
20 * project, MadSwatter; brother of MadButterfly, is running on Firefox
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
21 * as a platform and using SVG techinology to construct it's functions.
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
22 * (see, http://www.assembla.com/spaces/MadSwatter )
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
23 *
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
24 * Inkscape is an open source project to provide a vector graphics editor.
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
25 * Inkscape saves graphics in SVG format. You can use it to design your
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
26 * graphics that can be used with MadBufferfly.
d6f9af55b0d0 More documentation.
Thinker K.F. Li <thinker@branda.to>
parents:
diff changeset
27 */