blob: b7ad5ad29ad0ef9c05aff3566cb668f9bf36ed44 (
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
|
/*
* $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.area.inline;
import org.apache.fop.area.Area;
import org.apache.fop.area.MinOptMax;
import org.apache.fop.area.Trait;
import org.apache.fop.render.Renderer;
import org.apache.fop.layoutmgr.LayoutInfo;
import java.util.List;
import java.util.ArrayList;
/**
* Inline Area
* This area is for all inline areas that can be placed
* in a line area.
* Extensions of this class should render themselves with the
* requested renderer.
*/
public class InlineArea extends Area {
int width;
int height;
// position within the line area, either top or baseline
int verticalPosition;
// width, height, vertical alignment
public LayoutInfo info = null;
// store properties in array list, need better solution
ArrayList props = null;
// inline areas are expected to implement this method
// to render themselves
public void render(Renderer renderer) {
}
public void setWidth(int w) {
width = w;
}
public int getWidth() {
return width;
}
public void setHeight(int h) {
height = h;
}
public int getHeight() {
return height;
}
public MinOptMax getAllocationIPD() {
// Should also account for any borders and padding in the
// inline progression dimension
return new MinOptMax(width);
}
public void setOffset(int v) {
verticalPosition = v;
}
public int getOffset() {
return verticalPosition;
}
public void addTrait(Trait prop) {
if (props == null) {
props = new ArrayList();
}
props.add(prop);
}
public List getTraitList() {
return props;
}
}
|