]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Combine content of design/understanding/area_tree.xml into design/areas.xml.
authorWilliam Victor Mote <vmote@apache.org>
Tue, 22 Apr 2003 00:21:04 +0000 (00:21 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Tue, 22 Apr 2003 00:21:04 +0000 (00:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196301 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/design/areas.xml
src/documentation/content/xdocs/design/book.xml
src/documentation/content/xdocs/design/understanding/area_tree.xml [deleted file]
src/documentation/content/xdocs/design/understanding/book.xml

index 958ef30566466fc7ea770542169f51d5934c6eb0..70039ea5b991259abedd791096effb7c0c9a5a76 100644 (file)
@@ -24,6 +24,16 @@ area tree. The area tree model can then handle the new page. The data in
 the area tree must be minimal and independant. This means that the data
 uses less memory and can be serialized to an output stream if needed.
   </p>
+<p>The Area Tree is an internal representation of the result document. This
+is a set of java classes that can put together a set of objects that
+represent the pages and their contents.</p>
+<p>This information is created by the layout managers and is rendered to the
+output using a renderer.</p>
+<p>The Area Tree follows the description of the area tree in the XSL:FO
+specification.</p>
+<p>The Area Tree consists of a set of pages, the actual implemenation places
+these in
+a set of page sequences.</p>
 <section>
   <title>Structure</title>
 <p>
@@ -35,7 +45,12 @@ at the root level but lets the area tree model handle each page as it is added.
   </section>
 <section>
   <title>Page</title>
-<p>
+<p>A page consists of a page+viewport pair.</p>
+<p>The PageViewPort and Page with the regions is created by the
+LayoutMasterSet. The contents are then placed by the layout managers. Once
+the layout of a page is complete then it is added to the Area Tree.</p>
+<p>Inside the page is a set of RegionViewport+Region pairs for each region on
+the page.</p><p>
 A page is made up of five area regions. These are before, start, body,
 end and after. Each region has a viewport and contains the areas
 produced from the children in the FO object heirarchy.
@@ -57,6 +72,9 @@ then the other regions can be done layed out and added.
   </section>
 <section>
   <title>Block Areas</title>
+<p>Block level areas contain either other blocks or line areas (which is a
+special block area).</p><p>
+A block is either positoned or stacked with other block areas.</p>
 <p>
 Block areas are created and/or returned by all top level elements
 in the flow. The spacing between block areas is handled by an
@@ -92,6 +110,14 @@ Unresolved areas can reserve some space to allow for possible
 sizes once it is resolved. Then the line can be re-justified
 and finalised.
   </p>
+<p>Inline areas are stacked in a line area. Inline areas are objects such as
+character, viewport, inline-container, leader and space. A special inline
+area Word is also used for a group of consecutive characters.</p>
+<p>The image and instream foreign object areas are placed inside a viewport.
+The leader (with use content) and unresolved page number areas are
+resolved to other inline areas.</p>
+<p>Once a LineArea is filled with inline areas then the inline areas need to
+be aligned and adjusted to fill the line properly.</p>
   </section>
 <section>
   <title>Repeated Areas</title>
@@ -103,6 +129,23 @@ the subtree data can be cached in the output. Examples of this are:
 static areas, table header/footer, svg.
   </p>
   </section>
+<section>
+  <title>Traits</title>
+
+<p>A trait is information associated with an area. This could be information
+such as text colour or is-first.</p>
+<p>Traits provide information about an area. The traits are derived from
+properties on the formatting object or are generated during the layout
+process. Many of the layout traits do not have actual values but can be
+derived from the Area Tree. Other traits that apply when rendering the
+areas are set on the area. Since setting the same value on every area
+would use a lot of memory then the traits are derived from default or
+parent values.</p>
+<p>A dominant trait on a block area is set, for example font colour, so that
+every line area with the same dominant value can derive it. The text
+inline areas then get the font colour set on the inline area or from the
+line area or from the block area.</p>
+</section>
 <section>
   <title>Classes</title>
 <p>
@@ -142,6 +185,54 @@ object.
   </section>
   </section>
 
+<section>
+  <title>Forward References</title>
+<p>The Area Tree maintains a set of mappings from the reference to pages.</p>
+<p>The PageViewPort holds the list of forward references that need resolving
+so that if a references is resolved during layout the page can be easily
+found and then fixed. Once all the forward references are resolved then
+the page is ready to be rendered.</p>
+<p>To layout a page any areas that cannot be resolved need to reserve space.
+Once the inline area is resolved then the complete line should be adjusted
+to accomodate any change in space used by the area.</p>
+</section>
+
+<section>
+  <title>Caching</title>
+<p>We may need to cache pages due to forward references or when keeping all
+pages.</p>
+<p>This is done by serializing the Page. The PageViewport is retained to be
+used as a key for page references and backward references.
+The Page is serialized to an object stream and then all of the page
+contents are released. The Page is then recoved by reading from the object
+stream.</p>
+<p>The PageViewport retains information about id areas for easy access.</p>
+</section>
+
+<section>
+  <title>Extensions</title>
+<p>The Area Tree holds the Output Document extensions. This is information
+such as pdf bookmarks or other output document specific information that
+is not handled by XSL:FO.</p>
+<p>It is also possible to create custom areas that extend a normal area. The
+actual data that is rendered could be set in a different way or depend on
+resolving a forward reference.</p>
+</section>
+
+<section>
+  <title>Area Tree Handlers</title>
+<p>To handle different situations the handler for the Area Tree handles each
+page as it is added.</p><p>
+The RenderPagesModel sends the page directly to the renderer if the page
+is ready to be rendered. Once a page is rendered it is discarded.
+The StorePagesModel stores all the pages so that any page can be later
+accessed.</p>
+<p>The Area Tree retains the concept of page sequences (this is not in the
+area tree in the spec) so that this information can be passed to the
+renderer. This is useful for setting the title and organising the groups
+of page sequences.</p>
+</section>
+
 <section>
   <title>Rendering Area Tree</title>
 <p>
index 81c1be8951054870f5805ec580d75e518e5d3fe3..fceab025234e0546b0d7783f5b3bfc2597ebc4c2 100644 (file)
@@ -28,7 +28,6 @@ understanding/book.xml, WHICH SEE FOR AN EXPLANATION.
       <menu-item label="FO Tree" href="understanding/fo_tree.html"/>
       <menu-item label="Properties" href="understanding/properties.html"/>
       <menu-item label="Layout Managers" href="understanding/layout_managers.html"/>
-      <menu-item label="Area Tree" href="understanding/area_tree.html"/>
     </menu>
     <menu label="Extras">
       <menu-item label="Images" href="understanding/images.html"/>
diff --git a/src/documentation/content/xdocs/design/understanding/area_tree.xml b/src/documentation/content/xdocs/design/understanding/area_tree.xml
deleted file mode 100644 (file)
index 69adee7..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN"
-    "http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-forrest/src/resources/schema/dtd/document-v11.dtd">
-
-<document>
-    <header>
-        <title>Area Tree</title>
-    </header>
-
-    <body>
-<section>
-  <title>Area Tree</title>
-<p>The Area Tree is an internal representation of the result document. This
-is a set of java classes that can put together a set of objects that
-represent the pages and their contents.</p>
-<p>This information is created by the layout managers and is rendered to the
-output using a renderer.</p>
-<p>The Area Tree follows the description of the area tree in the XSL:FO
-specification.</p>
-<p>The Area Tree consists of a set of pages, the actual implemenation places
-these in
-a set of page sequences.</p>
-</section>
-
-<section>
-  <title>Pages</title>
-<p>A page consists of a page+viewport pair.</p>
-<p>The PageViewPort and Page with the regions is created by the
-LayoutMasterSet. The contents are then placed by the layout managers. Once
-the layout of a page is complete then it is added to the Area Tree.</p>
-<p>Inside the page is a set of RegionViewport+Region pairs for each region on
-the page.</p></section>
-
-
-<section>
-  <title>Blocks</title>
-<p>Block level areas contain either other blocks or line areas (which is a
-special block area).</p><p>
-A block is either positoned or stacked with other block areas.</p>
-</section>
-
-<section>
-  <title>Inline Areas</title>
-<p>Inline areas are stacked in a line area. Inline areas are objects such as
-character, viewport, inline-container, leader and space. A special inline
-area Word is also used for a group of consecutive characters.</p>
-<p>The image and instream foreign object areas are placed inside a viewport.
-The leader (with use content) and unresolved page number areas are
-resolved to other inline areas.</p>
-<p>Once a LineArea is filled with inline areas then the inline areas need to
-be aligned and adjusted to fill the line properly.</p>
-</section>
-
-<section>
-  <title>Traits</title>
-
-<p>A trait is information associated with an area. This could be information
-such as text colour or is-first.</p>
-<p>Traits provide information about an area. The traits are derived from
-properties on the formatting object or are generated during the layout
-process. Many of the layout traits do not have actual values but can be
-derived from the Area Tree. Other traits that apply when rendering the
-areas are set on the area. Since setting the same value on every area
-would use a lot of memory then the traits are derived from default or
-parent values.</p>
-<p>A dominant trait on a block area is set, for example font colour, so that
-every line area with the same dominant value can derive it. The text
-inline areas then get the font colour set on the inline area or from the
-line area or from the block area.</p>
-</section>
-
-<section>
-  <title>Forward References</title>
-<p>The Area Tree maintains a set of mappings from the reference to pages.</p>
-<p>The PageViewPort holds the list of forward references that need resolving
-so that if a references is resolved during layout the page can be easily
-found and then fixed. Once all the forward references are resolved then
-the page is ready to be rendered.</p>
-<p>To layout a page any areas that cannot be resolved need to reserve space.
-Once the inline area is resolved then the complete line should be adjusted
-to accomodate any change in space used by the area.</p>
-</section>
-
-<section>
-  <title>Caching</title>
-<p>We may need to cache pages due to forward references or when keeping all
-pages.</p>
-<p>This is done by serializing the Page. The PageViewport is retained to be
-used as a key for page references and backward references.
-The Page is serialized to an object stream and then all of the page
-contents are released. The Page is then recoved by reading from the object
-stream.</p>
-<p>The PageViewport retains information about id areas for easy access.</p>
-</section>
-
-<section>
-  <title>Extensions</title>
-<p>The Area Tree holds the Output Document extensions. This is information
-such as pdf bookmarks or other output document specific information that
-is not handled by XSL:FO.</p>
-<p>It is also possible to create custom areas that extend a normal area. The
-actual data that is rendered could be set in a different way or depend on
-resolving a forward reference.</p>
-</section>
-
-<section>
-  <title>Area Tree Handlers</title>
-<p>To handle different situations the handler for the Area Tree handles each
-page as it is added.</p><p>
-The RenderPagesModel sends the page directly to the renderer if the page
-is ready to be rendered. Once a page is rendered it is discarded.
-The StorePagesModel stores all the pages so that any page can be later
-accessed.</p>
-<p>The Area Tree retains the concept of page sequences (this is not in the
-area tree in the spec) so that this information can be passed to the
-renderer. This is useful for setting the title and organising the groups
-of page sequences.</p>
-</section>
-
-    </body>
-</document>
-
index af2828295e20fb832d85c7b316dd479706392876..f2afa5d551bbdcd0de53d1e6b2ee02af71dd5607 100644 (file)
@@ -32,7 +32,6 @@ PARENT DIRECTORY!
       <menu-item label="FO Tree" href="fo_tree.html"/>
       <menu-item label="Properties" href="properties.html"/>
       <menu-item label="Layout Managers" href="layout_managers.html"/>
-      <menu-item label="Area Tree" href="area_tree.html"/>
     </menu>
     <menu label="Extras">
       <menu-item label="Images" href="images.html"/>