aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/LayoutManagerLS.java
Commit message (Collapse)AuthorAgeFilesLines
* Folded the layout strategy into apps.Document.Glen Mazza2004-05-181-141/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197605 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-05-151-5/+1
| | | | | | | | | | Obtained from: Submitted by: Reviewed by: Moved FOUserAgent, FObj initialization from AddLMVisitor to constructors of respective LayoutManagers. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197602 13f79535-47bb-0310-9956-ffa450edef68
* Removed currently unused Document object from the LayoutStrategy (the latterGlen Mazza2004-04-241-3/+2
| | | | | | | class is already a child of Document, and a two-way interface appears unneeded.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197536 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2004-03-181-3/+3
| | | | | | | | | | | Obtained from: Submitted by: Reviewed by: Switch from init() to clearer initialize() in Layout classes; removed unneeded logger reference in ContentLayoutManager. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197460 13f79535-47bb-0310-9956-ffa450edef68
* Applied Apache License Version 2.0 by following the instructions at ↵Jeremias Maerki2004-02-271-48/+16
| | | | | | http://www.apache.org/dev/apply-license.html. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197384 13f79535-47bb-0310-9956-ffa450edef68
* remove unused variableWilliam Victor Mote2003-10-071-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196948 13f79535-47bb-0310-9956-ffa450edef68
* move creation of bookmarks in AreaTree from LayoutManagerLS to Document, so ↵William Victor Mote2003-10-061-2/+0
| | | | | | that it automatically occurs for all LayoutStrategies git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196945 13f79535-47bb-0310-9956-ffa450edef68
* 1. add an AreaTreeControl interfaceWilliam Victor Mote2003-10-061-1/+1
| | | | | | | | | 2. make apps/Document implement it 3. tie the AreaTree to an AreaTreeControl object 4. clean up AreaTree to use its parent AreaTreeControl object git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196944 13f79535-47bb-0310-9956-ffa450edef68
* move logic for creating area tree bookmarks from layoutmgr/LayoutManagerLS ↵William Victor Mote2003-10-061-41/+1
| | | | | | | | | | to area/AreaTree: 1. because it is not layout related 2. so that it can be reused by other Layout Strategies git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196942 13f79535-47bb-0310-9956-ffa450edef68
* Organize imports. Joerg Pietschmann2003-09-191-4/+3
| | | | | | | A bit of JavaDoc cosmetics. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196923 13f79535-47bb-0310-9956-ffa450edef68
* 1. tie the LMIter objects to their LM "parent"William Victor Mote2003-09-121-2/+26
| | | | | | | | | | | 2. tie the PageLayoutManager object to its parent LayoutManagerLS 3. create methods for going up the LM tree to get to the LayoutManagerLS 4. store an AddLMVisitor object in LayoutManagerLS so that subclasses can be stored there and used instead of AddLMVisitor itself (so that third-party users can subclass instead of modifying AddLMVisitor) 5. use the stored AddLMVisitor instead of creating one for each LMIter 6. add some accessor methods to AddLMVisitor so that subclasses can use Lists stored therein git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196901 13f79535-47bb-0310-9956-ffa450edef68
* remove global import statementsWilliam Victor Mote2003-09-081-2/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196891 13f79535-47bb-0310-9956-ffa450edef68
* remove some convoluted and unnecessary logic -- we already know the Document ↵William Victor Mote2003-09-011-7/+3
| | | | | | that is being processed git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196885 13f79535-47bb-0310-9956-ffa450edef68
* move fo/pagination/Title.getTitleArea() to layoutmgr/LayoutManagerLSWilliam Victor Mote2003-08-271-1/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196866 13f79535-47bb-0310-9956-ffa450edef68
* don't try to create bookmarks in output unless there are some in the input ↵William Victor Mote2003-08-261-0/+3
| | | | | | (getting NPE) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196847 13f79535-47bb-0310-9956-ffa450edef68
* move extensions package to fo.extensions (primarily to show that these ↵William Victor Mote2003-08-261-1/+2
| | | | | | classes are only related to the FO Tree itself) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196845 13f79535-47bb-0310-9956-ffa450edef68
* move fo/FOUserAgent to apps/FOUserAgent, as it manages configuration ↵William Victor Mote2003-08-221-0/+1
| | | | | | information for the application as a whole git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196827 13f79535-47bb-0310-9956-ffa450edef68
* move extensions/Outline.getData() to ↵William Victor Mote2003-08-211-1/+18
| | | | | | layoutmgr/LayoutManagerLS.createBookmarkData() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196821 13f79535-47bb-0310-9956-ffa450edef68
* move extensions/BookmarkData to area/extensions/BookmarkDataWilliam Victor Mote2003-08-211-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196820 13f79535-47bb-0310-9956-ffa450edef68
* move logic for creating bookmarks/outlines in the area tree from ↵William Victor Mote2003-08-201-0/+32
| | | | | | extensions/Bookmarks to layoutmgr/LayoutManagerLS git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196818 13f79535-47bb-0310-9956-ffa450edef68
* style/javadoc changes onlyWilliam Victor Mote2003-08-201-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196816 13f79535-47bb-0310-9956-ffa450edef68
* move startup of laying out a PageSequence from PageSequence.format() and ↵William Victor Mote2003-08-201-0/+60
| | | | | | Document.foPageSequenceComplete to the LayoutStrategy implementation (layoutmgr/LayoutManagerLS) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196815 13f79535-47bb-0310-9956-ffa450edef68
* 1. Remove fo/FOTreeExternal and layoutmgr/LMFOTreeExternal (in favor of ↵William Victor Mote2003-08-191-9/+0
| | | | | | | | | | Visitor concept, see item 2) 2. Add fo/FOTreeVisitor and layoutmgr/AddLMVisitor 3. Remove all occurrences of addLayoutManager in fo/FObj subclasses, replacing them with equivalent methods in AddLMVisitor git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196809 13f79535-47bb-0310-9956-ffa450edef68
* 1. add infrastructure for LayoutStrategyWilliam Victor Mote2003-08-141-0/+72
2. add infrastructure for move of layoutmgr logic out of fo package git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196801 13f79535-47bb-0310-9956-ffa450edef68