aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* remove extraneous import statementWilliam Victor Mote2003-09-081-13/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196890 13f79535-47bb-0310-9956-ffa450edef68
* Moved three committers to inactive status.Glen Mazza2003-09-041-46/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196889 13f79535-47bb-0310-9956-ffa450edef68
* Remove storage of apps/FOUserAgent from fo/FONode in favor of storing it ↵William Victor Mote2003-09-029-25/+43
| | | | | | once in a higher level class (currently Driver), and accessing it from there. Cleaner design, uses less memory, at the expense of some additional processing time to come up the tree to find the information. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196888 13f79535-47bb-0310-9956-ffa450edef68
* Remove all storage of fo/FOInputHandler from within the FO Tree itself, in ↵William Victor Mote2003-09-0215-86/+31
| | | | | | favor of storing it one time in apps/Document and getting it from there when needed. Makes everything cleaner, and uses less memory, at the probable expense of some processing time (to go up the tree to get to Document). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196887 13f79535-47bb-0310-9956-ffa450edef68
* move storage of ID references from fo/FOInputHandler to fo/FOTreeControl ↵William Victor Mote2003-09-014-19/+25
| | | | | | (implemented in apps/Document) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196886 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
* checkstyle/javadoc changes onlyWilliam Victor Mote2003-09-019-37/+111
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196884 13f79535-47bb-0310-9956-ffa450edef68
* clean up some gump javadoc warningsWilliam Victor Mote2003-09-014-23/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196883 13f79535-47bb-0310-9956-ffa450edef68
* 1. reduce visibility of many classesWilliam Victor Mote2003-09-011-15/+11
| | | | | | | 2. some style/javadoc changes git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196882 13f79535-47bb-0310-9956-ffa450edef68
* style/javadoc changes onlyWilliam Victor Mote2003-09-015-0/+30
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196881 13f79535-47bb-0310-9956-ffa450edef68
* style/javadoc changes onlyWilliam Victor Mote2003-09-015-30/+41
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196880 13f79535-47bb-0310-9956-ffa450edef68
* add comments about current implementation of block-container object, ↵William Victor Mote2003-09-011-1/+4
| | | | | | | | | submitted by Chris Bowditch [bowditch_chris@hotmail.com]; see http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22811 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196879 13f79535-47bb-0310-9956-ffa450edef68
* 1. Partial implementation of fo:region-xxx and background-color propertyGlen Mazza2003-09-018-73/+203
| | | | | | | | | | | | | | | in AWTRenderer. 2. ColorType has a new getAWTColor() method, also alpha() function renamed to getAlpha(). Definition of Alpha values switched to make consistent with java.awt.Color (i.e., 0 is transparent and 1 is opaque). 3. AbstractRenderer's handleViewportTraits() renamed to handleRegionTraits() to lesson confusion (FOP has three types of viewports-- Page, Region, and Block--handleViewportTraits() was only good for Region.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196878 13f79535-47bb-0310-9956-ffa450edef68
* Document paging within AWTRenderer & PreviewDialog activated (no content ↵Glen Mazza2003-08-303-79/+74
| | | | | | yet, just blank pages). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196877 13f79535-47bb-0310-9956-ffa450edef68
* 1. move some data structures related to used glyphs from fonts/MultiByteFont ↵William Victor Mote2003-08-303-83/+70
| | | | | | | | | to superclass fonts/CIDFont 2. move getSubsetWidths() from fonts/CIDFont (and subclass) to pdf/PDFFactory git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196876 13f79535-47bb-0310-9956-ffa450edef68
* remove todo item for disconnecting image processing from pdfWilliam Victor Mote2003-08-301-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196875 13f79535-47bb-0310-9956-ffa450edef68
* for generic FOP image processing (i.e. not related to rendering), use ↵William Victor Mote2003-08-306-75/+75
| | | | | | java.awt.Color instead of pdf.PDFColor git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196874 13f79535-47bb-0310-9956-ffa450edef68
* store a collection of StaticContentLayoutManager objects, keyed by ↵William Victor Mote2003-08-291-1/+14
| | | | | | flow-name, to be used instead of creating new ones each time one is needed git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196873 13f79535-47bb-0310-9956-ffa450edef68
* (Very) initial steps in activating AWTRenderer & PreviewDialog in 1.0 ↵Glen Mazza2003-08-282-8/+80
| | | | | | (creating outer page). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196872 13f79535-47bb-0310-9956-ffa450edef68
* move svg classes related to the FO Tree building from svg to fo/extensions/svgWilliam Victor Mote2003-08-289-14/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196871 13f79535-47bb-0310-9956-ffa450edef68
* move layoutmgr/MinOptMax to traits/MinOptMaxWilliam Victor Mote2003-08-2825-12/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196870 13f79535-47bb-0310-9956-ffa450edef68
* move fo/pagination/StaticContent.getLayoutManager() to ↵William Victor Mote2003-08-282-16/+11
| | | | | | layoutmgr/PageLayoutManager.getStaticContentLayoutManager() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196869 13f79535-47bb-0310-9956-ffa450edef68
* move renderXML() from apps/FOUserAgent to render/AbstractRendererWilliam Victor Mote2003-08-286-43/+41
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196868 13f79535-47bb-0310-9956-ffa450edef68
* move setDefaultXMLHandler() and addXMLHandler() from apps/FOUserAgent to ↵William Victor Mote2003-08-286-32/+34
| | | | | | render/AbstractRenderer git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196867 13f79535-47bb-0310-9956-ffa450edef68
* move fo/pagination/Title.getTitleArea() to layoutmgr/LayoutManagerLSWilliam Victor Mote2003-08-272-32/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196866 13f79535-47bb-0310-9956-ffa450edef68
* make some classes more readable by reversing the sense of some conditional logicWilliam Victor Mote2003-08-272-50/+49
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196865 13f79535-47bb-0310-9956-ffa450edef68
* remove region code from /area/RegionReference in favor of those in ↵William Victor Mote2003-08-277-97/+81
| | | | | | fo/pagination/Region git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196864 13f79535-47bb-0310-9956-ffa450edef68
* duplicate the area.RegionReference region codes in fo/pagination/Region, and ↵William Victor Mote2003-08-277-35/+39
| | | | | | use the codes in Region from within the Region subclasses git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196863 13f79535-47bb-0310-9956-ffa450edef68
* move fo/pagination/Region.setRegionPosition() to layoutmgr/PageLayoutManagerWilliam Victor Mote2003-08-272-18/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196862 13f79535-47bb-0310-9956-ffa450edef68
* 1. move fo/pagination/Region.makeRegionReferenceArea() to ↵William Victor Mote2003-08-273-43/+48
| | | | | | | | | layoutmgr/PageLayoutManager.makeRegionReferenceArea() 2. move fo/pagination/RegionBody.makeRegionReferenceArea() layoutmgr/PageLayoutManager.makeRegionBodyReferenceArea() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196861 13f79535-47bb-0310-9956-ffa450edef68
* move makeRegionViewport() and setRegionViewportTraits() from ↵William Victor Mote2003-08-277-42/+41
| | | | | | fo/pagination/Region to layoutmgr/PageLayoutManager git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196860 13f79535-47bb-0310-9956-ffa450edef68
* remove remaining references to layout/PageMaster (all unused), and remove ↵William Victor Mote2003-08-273-84/+0
| | | | | | the class itself git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196859 13f79535-47bb-0310-9956-ffa450edef68
* instead of storing and cloning page reference-area and viewport objects for ↵William Victor Mote2003-08-271-19/+12
| | | | | | each SimplePageMaster, create them on the fly (there will shortly be no convenient place to store the templates, and any performance benefit to cloning would appear to be small) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196858 13f79535-47bb-0310-9956-ffa450edef68
* 1. extract method getSimpleMasterPageToUse()William Victor Mote2003-08-271-18/+15
| | | | | | | 2. clean up signature for createPage() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196857 13f79535-47bb-0310-9956-ffa450edef68
* remove unused methodWilliam Victor Mote2003-08-271-9/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196856 13f79535-47bb-0310-9956-ffa450edef68
* move field that tracks which SimplePageMaster to use ↵William Victor Mote2003-08-272-36/+44
| | | | | | (currentSimplePageMaster) from fo/pagination/PageSequence to layoutmgr/PageLayoutManager git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196855 13f79535-47bb-0310-9956-ffa450edef68
* remove unused importsWilliam Victor Mote2003-08-261-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196854 13f79535-47bb-0310-9956-ffa450edef68
* move logic from fo/pagination/SimplePageMaster.end() to ↵William Victor Mote2003-08-263-71/+77
| | | | | | layoutmgr/PageLayoutManager.createSimplePageMasterAreas() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196853 13f79535-47bb-0310-9956-ffa450edef68
* Update to indicate the border-collapse property is partially implemented ↵Glen Mazza2003-08-261-1/+3
| | | | | | (instead of not implemented.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196852 13f79535-47bb-0310-9956-ffa450edef68
* move fo/pagination/PageSequence.createPage() to layoutmgr/PageLayoutManagerWilliam Victor Mote2003-08-262-57/+60
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196850 13f79535-47bb-0310-9956-ffa450edef68
* 1. make fo/flow/Table.columns store fo columns instead of column layout managersWilliam Victor Mote2003-08-263-14/+18
| | | | | | | | 2. move fo/flow/TableColumn.getLayoutManager() to layoutmgr/AddLMVisitor.getTableColumnLayoutManager() 3. have layoutmgr/AddLMVisitor.serveVisitor(Table node) loop through the fo/flow/Table.columns collection and build its layout manager collection from it git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196849 13f79535-47bb-0310-9956-ffa450edef68
* remove unused importWilliam Victor Mote2003-08-261-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196848 13f79535-47bb-0310-9956-ffa450edef68
* don't try to create bookmarks in output unless there are some in the input ↵William Victor Mote2003-08-262-1/+4
| | | | | | (getting NPE) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196847 13f79535-47bb-0310-9956-ffa450edef68
* remove invalid importsWilliam Victor Mote2003-08-262-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196846 13f79535-47bb-0310-9956-ffa450edef68
* move extensions package to fo.extensions (primarily to show that these ↵William Victor Mote2003-08-2610-18/+24
| | | | | | 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
* remove unused fieldWilliam Victor Mote2003-08-261-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196844 13f79535-47bb-0310-9956-ffa450edef68
* move fo/flow/PageNumberCitation.getInlineArea() to ↵William Victor Mote2003-08-262-54/+56
| | | | | | layoutmgr/AddLMVisitor.getPageNumberCitationInlineArea() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196843 13f79535-47bb-0310-9956-ffa450edef68
* remove unused fieldWilliam Victor Mote2003-08-261-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196842 13f79535-47bb-0310-9956-ffa450edef68
* change cryptic method nameWilliam Victor Mote2003-08-261-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196841 13f79535-47bb-0310-9956-ffa450edef68
* move fo/flow/ListItemLabel.getItemLayoutManager() to ↵William Victor Mote2003-08-262-12/+12
| | | | | | layoutmgr/AddLMVisitor.getListItemLabelLayoutManager() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196840 13f79535-47bb-0310-9956-ffa450edef68