Home
last modified time | relevance | path

Searched refs:rtfDoc (Results 1 – 6 of 6) sorted by relevance

/dports/devel/itext/itext-4.2.0/rtf/com/lowagie/text/rtf/
H A DRtfWriter2.java81 private RtfDocument rtfDoc = null; field in RtfWriter2
93 rtfDoc = new RtfDocument(); in RtfWriter2()
113 this.rtfDoc.getDocumentHeader().setHeader(hf); in setHeader()
120 this.rtfDoc.getDocumentHeader().setHeader(null); in resetHeader()
129 this.rtfDoc.getDocumentHeader().setFooter(hf); in setFooter()
160 this.rtfDoc.open(); in open()
169 rtfDoc.writeDocument(os); in close()
171 this.rtfDoc = new RtfDocument(); in close()
190 rtfDoc.add(rtfElements[i]); in add()
205 rtfDoc.add(new RtfNewPage(rtfDoc)); in newPage()
[all …]
H A DRtfMapper.java99 RtfDocument rtfDoc; field in RtfMapper
107 this.rtfDoc = doc; in RtfMapper()
124 rtfElement.setRtfDocument(this.rtfDoc); in mapElement()
134 rtfElements.add(new RtfNewPage(rtfDoc)); in mapElement()
138 tab.setRtfDocument(rtfDoc); in mapElement()
149 rtfElements.add(new RtfPhrase(rtfDoc, (Phrase) element)); in mapElement()
155 rtfElements.add(new RtfAnchor(rtfDoc, (Anchor) element)); in mapElement()
180 rtfElements.add(new RtfSection(rtfDoc, (Section) element)); in mapElement()
183 rtfElements.add(new RtfChapter(rtfDoc, (Chapter) element)); in mapElement()
187 rtfElements.add(new RtfTable(rtfDoc, (Table) element)); in mapElement()
[all …]
/dports/devel/itext/itext-4.2.0/rtf/com/lowagie/text/rtf/parser/
H A DRtfImportMgr.java97 private RtfDocument rtfDoc = null; field in RtfImportMgr
110 public RtfImportMgr(RtfDocument rtfDoc, Document doc) { in RtfImportMgr() argument
111 this.rtfDoc = rtfDoc; in RtfImportMgr()
128 rtfFont.setRtfDocument(this.rtfDoc); in importFont()
129 …this.importFontMapping.put(fontNr, Integer.toString(this.rtfDoc.getDocumentHeader().getFontNumber(… in importFont()
144 rtfFont.setRtfDocument(this.rtfDoc); in importFont()
163 rtfFont.setRtfDocument(this.rtfDoc); in importFont()
164 …this.importFontMapping.put(fontNr, Integer.toString(this.rtfDoc.getDocumentHeader().getFontNumber(… in importFont()
193 RtfColor rtfColor = new RtfColor(this.rtfDoc, color); in importColor()
241 RtfList rtfList = new RtfList(this.rtfDoc, listIn); in importStylesheetList()
[all …]
H A DRtfParser.java107 private RtfDocument rtfDoc = null; field in RtfParser
486 if(readerIn == null || rtfDoc == null) return; in importRtfDocument()
487 this.init(TYPE_IMPORT_FULL, rtfDoc, readerIn, this.document, null); in importRtfDocument()
517 if(readerIn == null || rtfDoc == null || elem == null) return; in importRtfDocumentIntoElement()
577 this.init(TYPE_IMPORT_FRAGMENT, rtfDoc, readerIn, null, null); in importRtfFragment()
629 this.rtfDoc = rtfDoc; in init()
635 this.importMgr = new RtfImportMgr(this.rtfDoc, this.document); in init()
943 RtfParser.outputDebug(this.rtfDoc, groupLevel, ""); in handleCloseGroup()
953 RtfParser.outputDebug(this.rtfDoc, groupLevel, ""); in handleCloseGroup()
995 RtfParser.outputDebug(this.rtfDoc, groupLevel, "DEBUG: SKIPPED"); in handleCtrlWord()
[all …]
/dports/devel/itext/itext-4.2.0/rtf/com/lowagie/text/rtf/parser/destinations/
H A DRtfDestinationInfo.java121 RtfDocument rtfDoc = this.rtfParser.getRtfDocument(); in handleCloseGroup() local
122 if(rtfDoc != null) { in handleCloseGroup()
125 RtfInfoElement elem = new RtfInfoElement(rtfDoc, meta); in handleCloseGroup()
126 rtfDoc.getDocumentHeader().addInfoElement(elem); in handleCloseGroup()
130 RtfInfoElement elem = new RtfInfoElement(rtfDoc, meta); in handleCloseGroup()
131 rtfDoc.getDocumentHeader().addInfoElement(elem); in handleCloseGroup()
135 RtfInfoElement elem = new RtfInfoElement(rtfDoc, meta); in handleCloseGroup()
136 rtfDoc.getDocumentHeader().addInfoElement(elem); in handleCloseGroup()
H A DRtfDestinationDocument.java83 private RtfDocument rtfDoc = null; field in RtfDestinationDocument
140 this.rtfDoc = parser.getRtfDocument(); in RtfDestinationDocument()
163 this.rtfDoc = parser.getRtfDocument(); in setParser()
527 this.rtfDoc.add(new RtfDirectContent("{")); in writeText()
531 this.rtfDoc.add(new RtfDirectContent(value)); in writeText()