Home
last modified time | relevance | path

Searched refs:TextStyle (Results 1 – 21 of 21) sorted by relevance

/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DWseTextRun.java116 TextStyle ts = (TextStyle)t.getResolved(); in WseTextRun()
118 if (ts.isSet(TextStyle.BOLD) && ts.getAttribute(TextStyle.BOLD)) in WseTextRun()
120 if (ts.isSet(TextStyle.ITALIC) && ts.getAttribute(TextStyle.ITALIC)) in WseTextRun()
122 if (ts.isSet(TextStyle.UNDERLINE) && ts.getAttribute(TextStyle.UNDERLINE)) in WseTextRun()
124 if (ts.isSet(TextStyle.STRIKETHRU) && ts.getAttribute(TextStyle.STRIKETHRU)) in WseTextRun()
126 if (ts.isSet(TextStyle.SUPERSCRIPT) && ts.getAttribute(TextStyle.SUPERSCRIPT)) in WseTextRun()
128 if (ts.isSet(TextStyle.SUBSCRIPT) && ts.getAttribute(TextStyle.SUBSCRIPT)) in WseTextRun()
284 int mask = TextStyle.BOLD | TextStyle.ITALIC in makeStyle()
285 | TextStyle.UNDERLINE in makeStyle()
286 | TextStyle.STRIKETHRU | TextStyle.SUPERSCRIPT in makeStyle()
[all …]
H A DDocumentSerializerImpl.java137 classes[0] = TextStyle.class; in serialize()
139 classes[2] = TextStyle.class; in serialize()
244 styleCat.add(new TextStyle(styleName, "paragraph", null, in traverseParagraph()
251 TextStyle defParaTextStyle = (TextStyle) in traverseParagraph()
252 styleCat.lookup(styleName, "paragraph", null, TextStyle.class); in traverseParagraph()
264 private void traverseParaContents(Node node, TextStyle defTextStyle) { in traverseParaContents()
267 TextStyle style = (TextStyle) in traverseParaContents()
268 styleCat.lookup(styleName, "text", null, TextStyle.class); in traverseParaContents()
H A DDocumentDeserializerImpl.java145 classes[0] = TextStyle.class; in readStyleCatalog()
147 classes[2] = TextStyle.class; in readStyleCatalog()
174 private ParaStyle matchParaByText(Style paraStyles[], TextStyle tStyle) { in matchParaByText()
180 TextStyle t = (TextStyle)txtMatches[j]; in matchParaByText()
393 TextStyle trStyle = null; in buildDocument()
415 trStyle = (TextStyle)matches[0]; in buildDocument()
424 trStyle = (TextStyle)matches[0]; in buildDocument()
/trunk/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/
H A DParagraphTextSegment.java26 import org.openoffice.xmerge.converter.xml.TextStyle;
46 private TextStyle pStyle;
56 public ParagraphTextSegment (String data, TextStyle style) { in ParagraphTextSegment()
85 public void setStyle (TextStyle style) { in setStyle()
95 public TextStyle getStyle () { in getStyle()
130 if (pStyle.isSet(TextStyle.BOLD) && pStyle.getAttribute(TextStyle.BOLD)) { in getData()
134 if (pStyle.isSet(TextStyle.ITALIC) && pStyle.getAttribute(TextStyle.ITALIC)) { in getData()
138 if (pStyle.isSet(TextStyle.UNDERLINE) && pStyle.getAttribute(TextStyle.UNDERLINE)) { in getData()
142 … if (pStyle.isSet(TextStyle.STRIKETHRU) && pStyle.getAttribute(TextStyle.STRIKETHRU)) { in getData()
H A DParagraph.java37 import org.openoffice.xmerge.converter.xml.TextStyle;
178 int mask = TextStyle.BOLD | TextStyle.ITALIC | TextStyle.UNDERLINE in parseText()
179 | TextStyle.STRIKETHRU; in parseText()
188 TextStyle ts = null; in parseText()
293 modifiers |= TextStyle.BOLD; in parseText()
298 modifiers ^= TextStyle.BOLD; in parseText()
307 modifiers |= TextStyle.ITALIC; in parseText()
311 modifiers ^= TextStyle.ITALIC; in parseText()
320 modifiers |= TextStyle.UNDERLINE; in parseText()
324 modifiers ^= TextStyle.UNDERLINE; in parseText()
[all …]
H A DDocumentSerializerImpl.java39 import org.openoffice.xmerge.converter.xml.TextStyle;
136 Class classes[] = new Class[] { TextStyle.class, in loadStyles()
138 TextStyle.class }; in loadStyles()
218 TextStyle tstyle = (TextStyle)styleCat.lookup(styleName, in traverseParagraph()
220 TextStyle.class); in traverseParagraph()
222 tstyle = (TextStyle)tstyle.getResolved(); in traverseParagraph()
243 private void traverseParagraphContents (Node node, TextStyle defTextStyle) in traverseParagraphContents()
247 TextStyle tStyle = (TextStyle)styleCat.lookup(styleName, in traverseParagraphContents()
249 TextStyle.class); in traverseParagraphContents()
H A DPocketWordDocument.java28 import org.openoffice.xmerge.converter.xml.TextStyle;
335 public void addParagraphData(String data, TextStyle style) { in addParagraphData()
H A DDocumentDeserializerImpl.java35 import org.openoffice.xmerge.converter.xml.TextStyle;
196 TextStyle ts = pts.getStyle(); in buildDocument()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DTextStyle.java42 public class TextStyle extends Style implements Cloneable { class
83 public TextStyle(Node node, StyleCatalog sc) { in TextStyle() method in TextStyle
151 public TextStyle(String name, String family, String parent, in TextStyle() method in TextStyle
372 TextStyle resolved = null; in getResolved()
374 resolved = (TextStyle)this.clone(); in getResolved()
381 TextStyle parentStyle = null; in getResolved()
384 parentStyle = (TextStyle)sc.lookup(parent, family, null, in getResolved()
390 parentStyle = (TextStyle)parentStyle.getResolved(); in getResolved()
393 parentStyle = (TextStyle)sc.lookup("DEFAULT_STYLE", null, in getResolved()
401 parentStyle = (TextStyle)parentStyle.getResolved(); in getResolved()
[all …]
H A DStyleCatalog.java309 TextStyle.dumpHdr(); in dumpCSV()
313 if (s.getClass().equals(TextStyle.class)) in dumpCSV()
314 ((TextStyle)s).dumpCSV(); in dumpCSV()
/trunk/main/toolkit/source/helper/
H A Dformpdfexport.cxx368 _rpDescriptor->TextStyle = 0; in describePDFControl()
378 _rpDescriptor->TextStyle |= TEXT_DRAW_MULTILINE | TEXT_DRAW_WORDBREAK; in describePDFControl()
390 case awt::TextAlign::LEFT: _rpDescriptor->TextStyle |= TEXT_DRAW_LEFT; break; in describePDFControl()
391 case awt::TextAlign::CENTER: _rpDescriptor->TextStyle |= TEXT_DRAW_CENTER; break; in describePDFControl()
392 case awt::TextAlign::RIGHT: _rpDescriptor->TextStyle |= TEXT_DRAW_RIGHT; break; in describePDFControl()
407 case VerticalAlignment_TOP: _rpDescriptor->TextStyle |= TEXT_DRAW_TOP; break; in describePDFControl()
408 … case VerticalAlignment_MIDDLE: _rpDescriptor->TextStyle |= TEXT_DRAW_VCENTER; break; in describePDFControl()
409 … case VerticalAlignment_BOTTOM: _rpDescriptor->TextStyle |= TEXT_DRAW_BOTTOM; break; in describePDFControl()
442 pEditWidget->MultiLine = ( _rpDescriptor->TextStyle & TEXT_DRAW_MULTILINE ) != 0; in describePDFControl()
529 if ( !pButtonWidget->TextStyle ) in describePDFControl()
[all …]
/trunk/main/instsetoo_native/inc_ooolangpack/windows/msi_templates/
H A DTextStyl.idt1 TextStyle FaceName Size Color StyleBits
3 TextStyle TextStyle
H A D_Validat.idt435 TextStyle Color Y 0 16777215 A long integer indicating the color of the string in the RGB forma…
436 TextStyle FaceName N Text A string indicating the name of the font used. Required. The string …
437 TextStyle Size N 0 32767 The size of the font used. This size is given in our units (1/12 of th…
438 TextStyle StyleBits Y 0 15 A combination of style bits.
439 TextStyle TextStyle N Identifier Name of the style. The primary key of this table. This name i…
/trunk/main/instsetoo_native/inc_sdkoo/windows/msi_templates/
H A DTextStyl.idt1 TextStyle FaceName Size Color StyleBits
3 TextStyle TextStyle
H A D_Validat.idt435 TextStyle Color Y 0 16777215 A long integer indicating the color of the string in the RGB forma…
436 TextStyle FaceName N Text A string indicating the name of the font used. Required. The string …
437 TextStyle Size N 0 32767 The size of the font used. This size is given in our units (1/12 of th…
438 TextStyle StyleBits Y 0 15 A combination of style bits.
439 TextStyle TextStyle N Identifier Name of the style. The primary key of this table. This name i…
/trunk/main/instsetoo_native/inc_ure/windows/msi_templates/
H A DTextStyl.idt1 TextStyle FaceName Size Color StyleBits
3 TextStyle TextStyle
H A D_Validat.idt435 TextStyle Color Y 0 16777215 A long integer indicating the color of the string in the RGB forma…
436 TextStyle FaceName N Text A string indicating the name of the font used. Required. The string …
437 TextStyle Size N 0 32767 The size of the font used. This size is given in our units (1/12 of th…
438 TextStyle StyleBits Y 0 15 A combination of style bits.
439 TextStyle TextStyle N Identifier Name of the style. The primary key of this table. This name i…
/trunk/main/instsetoo_native/inc_openoffice/windows/msi_templates/
H A DTextStyl.idt1 TextStyle FaceName Size Color StyleBits
3 TextStyle TextStyle
H A D_Validat.idt435 TextStyle Color Y 0 16777215 A long integer indicating the color of the string in the RGB forma…
436 TextStyle FaceName N Text A string indicating the name of the font used. Required. The string …
437 TextStyle Size N 0 32767 The size of the font used. This size is given in our units (1/12 of th…
438 TextStyle StyleBits Y 0 15 A combination of style bits.
439 TextStyle TextStyle N Identifier Name of the style. The primary key of this table. This name i…
/trunk/main/vcl/inc/vcl/
H A Dpdfwriter.hxx229 sal_uInt16 TextStyle; // style flags member
258 TextStyle( 0 ), in AnyWidget()
281 ,TextStyle( rSource.TextStyle ) in AnyWidget()
/trunk/main/vcl/source/gdi/
H A Dpdfwriter_impl.cxx441 aEditBox.TextStyle = TEXT_DRAW_LEFT | TEXT_DRAW_VCENTER; in doTestCode()
11953 rNewWidget.m_nTextStyle = rControl.TextStyle & in createControl()
12059 aLBox.TextStyle = rBox.TextStyle; in createControl()

Completed in 141 milliseconds