From 9584477b2684aa23db696645d541f2c06cac819d Mon Sep 17 00:00:00 2001 From: engelsman Date: Sat, 11 Oct 2008 12:46:11 +0000 Subject: more html to doxygen conversion for {osissues,migration*,development}.dox git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6410 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/development.dox | 66 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 64 insertions(+), 2 deletions(-) (limited to 'documentation/development.dox') diff --git a/documentation/development.dox b/documentation/development.dox index af5058215..f733438ae 100644 --- a/documentation/development.dox +++ b/documentation/development.dox @@ -2,8 +2,7 @@ \page development I - Developer Information -

This chapter describes FLTK development and documentation. -

+This chapter describes FLTK development and documentation. \note documentation with doxygen will be described here. @@ -247,6 +246,7 @@ The following section is \section development_links Creating Links \endcode + \section development_links Creating Links Links to other documents and external links can be embedded with @@ -341,6 +341,68 @@ becomes: \endcode + +\section development_paragraphs Paragraph Layout + +There is no real need to use HTML \ and \ tags within the text +to tell doxygen to start or stop a paragraph. In most cases, when doxygen +encounters a blank line or some, but not all, \b \\commands in the text it +knows that it as reached the start or end of a paragraph. Doxygen also +offers the \b \\par command for special paragraph handling. It can be used +to provide a paragraph title and also to indent a paragraph. Unfortunately +\b \\par won't do what you expect if you want to have doxygen links and +sometimes html tags don't work either. + + + \verbatim + \par Normal Paragraph with title + + This paragraph will have a title, but because there is a blank line + between the \par and the text, it will have the normal layout. + + \par Indented Paragraph with title + This paragraph will also have a title, but because there is no blank + line between the \par and the text, it will be indented. + + \par + It is also possible to have an indented paragraph without title. + This is how you indent subsequent paragraphs. + + \par No link to Fl_Widget::draw() + Note that the paragraph title is treated as plain text. + Doxygen type links will not work. + HTML characters and tags may or may not work. + + Fl_Widget::draw() links and "html" tags work
+ \par + Use a single line ending with
for complicated paragraph titles. + \endverbatim + +The above code produces the following paragraphs: + + \par Normal Paragraph with title + + This paragraph will have a title, but because there is a blank line + between the \\par and the text, it will have the normal layout. + + \par Indented Paragraph with title + This paragraph will also have a title, but because there is no blank + line between the \\par and the text, it will be indented. + + \par + It is also possible to have an indented paragraph without title. + This is how you indent subsequent paragraphs. + + \par No link to Fl_Widget::draw() + Note that the paragraph title is treated as plain text. + Doxygen type links will not work. + HTML characters and tags may or may not work. + + Fl_Widget::draw() links and "html" tags work
+ \par + Use a single line ending with \ for complicated paragraph titles. + + \section development_html_footer Hack for missing "tiny.gif" file \todo -- cgit v1.2.3