blob: 94d572fab3e868366e9f4e3cb3a6afb253281b07 (
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
|
/*
* $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;
import org.apache.fop.layout.FontState;
import org.apache.fop.layout.FontInfo;
import org.apache.fop.apps.FOPException;
import org.apache.fop.apps.StructureHandler;
import org.apache.fop.datatypes.ColorType;
import org.apache.fop.layoutmgr.InlineStackingBPLayoutManager;
import org.apache.fop.layoutmgr.LMiter;
import java.util.List;
/**
* base class for representation of mixed content formatting objects
* and their processing
*/
public class FObjMixed extends FObj {
TextInfo textInfo = null;
protected FontInfo fontInfo = null;
public FObjMixed(FONode parent) {
super(parent);
}
public void setStructHandler(StructureHandler st) {
super.setStructHandler(st);
fontInfo = st.getFontInfo();
}
public void addLayoutManager(List lms) {
lms.add(new InlineStackingBPLayoutManager(this,
new LMiter(children.listIterator())));
// set start and end properties for this element, id, etc.
// int numChildren = this.children.size();
// for (int i = 0; i < numChildren; i++) {
// Object o = children.get(i);
// if (o instanceof FObj) {
// FObj fo = (FObj) o;
// fo.addLayoutManager(lms);
// }
// }
}
protected void addCharacters(char data[], int start, int length) {
if(textInfo == null) {
// Really only need one of these, but need to get fontInfo
// stored in propMgr for later use.
propMgr.setFontInfo(fontInfo);
textInfo = propMgr.getTextLayoutProps(fontInfo);
}
FOText ft = new FOText(data, start, length, textInfo);
ft.setUserAgent(userAgent);
ft.setStructHandler(structHandler);
addChild(ft);
}
public void setup() {
if (this.properties != null) {
setupID();
}
}
public CharIterator charIterator() {
return new RecursiveCharIterator(this);
}
}
|