aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/layout/Page.java
blob: eaf3d4e1e269662f320d02183ae230c5a3f903f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* $Id$
 * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
 * For details on use and redistribution please refer to the
 * LICENSE file included with these sources.
 */

package org.apache.fop.layout;

// FOP
import org.apache.fop.render.Renderer;
import org.apache.fop.fo.flow.*;
import org.apache.fop.fo.*;
import org.apache.fop.apps.*;

// Java
import java.util.Vector;
import java.util.Enumeration;

public class Page {

    private int height;
    private int width;

    private BodyAreaContainer body;
    private AreaContainer before;
    private AreaContainer after;
    private AreaContainer start;
    private AreaContainer end;
	
    private AreaTree areaTree;

    protected int pageNumber = 0;

    protected Vector linkSets = new Vector();

    private Vector idList = new Vector();

    private Vector footnotes = null;

    Page(AreaTree areaTree, int height, int width) {
	this.areaTree = areaTree;
	this.height = height;
	this.width = width;
    }

    public void setNumber(int number) {
	this.pageNumber = number;
    }

    public int getNumber() {
	return this.pageNumber;
    }

    void addAfter(AreaContainer area) {
	this.after = area;
	area.setPage(this);
    }

    void addBefore(AreaContainer area) {
	this.before = area;
	area.setPage(this);
    }

	/**
	 * Ensure that page is set not only on B.A.C. but also on the
	 * three top-level reference areas.
	 * @param area The region-body area container (special)
	 */
    public void addBody(BodyAreaContainer area) {
	this.body = area;
	area.setPage(this);
	((BodyAreaContainer)area).getMainReferenceArea().setPage(this);
	((BodyAreaContainer)area).getBeforeFloatReferenceArea().setPage(this);
	((BodyAreaContainer)area).getFootnoteReferenceArea().setPage(this);
    }
		
    void addEnd(AreaContainer area) {
	this.end = area;
	area.setPage(this);
    }

    void addStart(AreaContainer area) {
	this.start = area;
	area.setPage(this);
    }

    public void render(Renderer renderer) {
	renderer.renderPage(this);
    }

    public AreaContainer getAfter() {
	return this.after;
    }

    public AreaContainer getBefore() {
	return this.before;
    }

    public AreaContainer getStart() {
	return this.start;
    }

    public AreaContainer getEnd() {
	return this.end;
    }

    public BodyAreaContainer getBody() {
	return this.body;
    }

    public int getHeight() {
	return this.height;
    }

    public int getWidth() {
	return this.width;
    }

    public FontInfo getFontInfo() {
	return this.areaTree.getFontInfo();
    }

    public void addLinkSet(LinkSet linkSet) {
	this.linkSets.addElement(linkSet);
    }

    public Vector getLinkSets() {
	return this.linkSets;
    }

    public boolean hasLinks() {
	return (!this.linkSets.isEmpty());
    }

    public void addToIDList(String id){
        idList.addElement(id);
    }

    public Vector getIDList(){
        return idList;
    }

    public Vector getPendingFootnotes() {
        return footnotes;
    }

    public void setPendingFootnotes(Vector v) {
        footnotes = v;
    	if(footnotes != null) {
            for(Enumeration e = footnotes.elements(); e.hasMoreElements(); ) {
                FootnoteBody fb = (FootnoteBody)e.nextElement();
                if(!Footnote.layoutFootnote(this, fb, null)) {
                    // footnotes are too large to fit on empty page
                }
            }
	        footnotes = null;
	    }
    }

    public void addPendingFootnote(FootnoteBody fb) {
        if(footnotes == null) {
            footnotes = new Vector();
        }
        footnotes.addElement(fb);
    }
}