blob: 6d96aa36560ae4e9280c8568097471ee7b2ec934 (
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
|
/*
* $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.fo.pagination;
// FOP
import org.apache.fop.fo.*;
import org.apache.fop.fo.properties.*;
import org.apache.fop.layout.RegionArea;
import org.apache.fop.layout.BorderAndPadding;
import org.apache.fop.layout.BackgroundProps;
import org.apache.fop.apps.FOPException;
import org.xml.sax.Attributes;
public class RegionBefore extends Region {
public static final String REGION_CLASS = "before";
private int precedence;
public RegionBefore(FObj parent) {
super(parent);
}
public void handleAttrs(Attributes attlist) throws FOPException {
super.handleAttrs(attlist);
precedence = this.properties.get("precedence").getEnum();
}
RegionArea makeRegionArea(int allocationRectangleXPosition,
int allocationRectangleYPosition,
int allocationRectangleWidth,
int allocationRectangleHeight) {
// Common Border, Padding, and Background Properties
BorderAndPadding bap = propMgr.getBorderAndPadding();
BackgroundProps bProps = propMgr.getBackgroundProps();
// this.properties.get("clip");
// this.properties.get("display-align");
int extent = this.properties.get("extent").getLength().mvalue();
// this.properties.get("overflow");
// this.properties.get("precedence");
// this.properties.get("region-name");
// this.properties.get("reference-orientation");
// this.properties.get("writing-mode");
return new RegionArea(allocationRectangleXPosition,
allocationRectangleYPosition,
allocationRectangleWidth, extent);
}
protected String getDefaultRegionName() {
return "xsl-region-before";
}
protected String getElementName() {
return "fo:region-before";
}
public String getRegionClass() {
return REGION_CLASS;
}
public boolean getPrecedence() {
return (precedence == Precedence.TRUE ? true : false);
}
}
|