/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/output/text/ |
H A D | TextRawReportTarget.java | 31 import com.sun.star.report.pentaho.OfficeNamespaces; 378 sectionProperties.setNamespace(OfficeNamespaces.STYLE_NS); in generateSectionStyle() 387 columns.setNamespace(OfficeNamespaces.STYLE_NS); in generateSectionStyle() 404 column.setNamespace(OfficeNamespaces.STYLE_NS); in generateSectionStyle() 414 style.setNamespace(OfficeNamespaces.STYLE_NS); in generateSectionStyle() 416 style.setAttribute(OfficeNamespaces.STYLE_NS, NAME, styleName); in generateSectionStyle() 417 style.setAttribute(OfficeNamespaces.STYLE_NS, "family", "section"); in generateSectionStyle() 472 paragraphProps.setNamespace(OfficeNamespaces.STYLE_NS); in createVariablesStyle() 482 textProps.setNamespace(OfficeNamespaces.STYLE_NS); in createVariablesStyle() 486 textProps.setAttribute(OfficeNamespaces.FO_NS, "color", "#ffffff"); in createVariablesStyle() [all …]
|
H A D | MasterPageFactory.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 263 masterPage.setNamespace(OfficeNamespaces.STYLE_NS); in createMasterPage() 280 header.setNamespace(OfficeNamespaces.STYLE_NS); in setupMasterPage() 289 footer.setNamespace(OfficeNamespaces.STYLE_NS); in setupMasterPage() 312 headerStyle.setNamespace(OfficeNamespaces.STYLE_NS); in createPageStyle() 321 footerStyle.setNamespace(OfficeNamespaces.STYLE_NS); in createPageStyle() 371 headerStyle.setNamespace(OfficeNamespaces.STYLE_NS); in derivePageStyle() 384 footerStyle.setNamespace(OfficeNamespaces.STYLE_NS); in derivePageStyle() 403 …Element headerFooterProps = headerFooterStyle.findFirstChild(OfficeNamespaces.STYLE_NS, "header-fo… in applyHeaderFooterHeight() 407 headerFooterProps.setNamespace(OfficeNamespaces.STYLE_NS); in applyHeaderFooterHeight() [all …]
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/output/ |
H A D | OfficeDocumentReportTarget.java | 32 import com.sun.star.report.pentaho.OfficeNamespaces; 371 rootAttributes.addNamespaceDeclaration("fo", OfficeNamespaces.FO_NS); in startReport() 391 rootAttributes.setAttribute(OfficeNamespaces.OFFICE_NS, "version", in startReport() 888 if (OfficeNamespaces.OOREPORT_NS.equals(namespace)) in isFilteredNamespace() 1456 frameList.setAttribute(OfficeNamespaces.SVG_NS, "z-index", "0"); in startImageProcessing() 1465 frameList.setAttribute(OfficeNamespaces.SVG_NS, in startImageProcessing() 1471 frameList.setAttribute(OfficeNamespaces.SVG_NS, in startImageProcessing() 1687 oleList.setAttribute(OfficeNamespaces.XLINK_NS, "href", "./" + href); in startChartProcessing() 1688 oleList.setAttribute(OfficeNamespaces.XLINK_NS, "type", "simple"); in startChartProcessing() 1689 oleList.setAttribute(OfficeNamespaces.XLINK_NS, "show", "embed"); in startChartProcessing() [all …]
|
H A D | StylesWriter.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 332 if (OfficeNamespaces.OOREPORT_NS.equals(namespace)) in isFilteredNamespace() 344 OfficeNamespaces.OFFICE_NS); in performWriteRootTag() 349 rootAttributes.addNamespaceDeclaration("fo", OfficeNamespaces.FO_NS); in performWriteRootTag() 351 rootAttributes.addNamespaceDeclaration("dc", OfficeNamespaces.PURL_NS); in performWriteRootTag() 354 OfficeNamespaces.DATASTYLE_NS); in performWriteRootTag() 362 OfficeNamespaces.SCRIPT_NS); in performWriteRootTag() 367 OfficeNamespaces.XML_EVENT_NS); in performWriteRootTag() 369 OfficeNamespaces.XFORMS_NS); in performWriteRootTag() 373 rootAttributes.setAttribute(OfficeNamespaces.OFFICE_NS, "version", in performWriteRootTag() [all …]
|
H A D | StyleUtilities.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 151 autostyle.setNamespace(OfficeNamespaces.STYLE_NS); in copyStyle() 215 …final String fontName = (String) textProperties.getAttribute(OfficeNamespaces.STYLE_NS, "font-name… in performFontFaceProcessing() 225 … final String fontNameAsian = (String) textProperties.getAttribute(OfficeNamespaces.STYLE_NS, in performFontFaceProcessing() 237 … final String fontNameComplex = (String) textProperties.getAttribute(OfficeNamespaces.STYLE_NS, in performFontFaceProcessing() 283 final Object attribute = style.getAttribute(OfficeNamespaces.STYLE_NS, attributeName); in performDataStyleProcessing() 443 autostyle.setNamespace(OfficeNamespaces.STYLE_NS); in deriveStyle() 469 autostyle.setNamespace(OfficeNamespaces.STYLE_NS); in deriveCommonStyle() 497 autostyle.setNamespace(OfficeNamespaces.STYLE_NS); in deriveAutomaticStyle() 546 … final Element section = officeStyle.findFirstChild(OfficeNamespaces.STYLE_NS, sectionName); in queryStyleByProperties() [all …]
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/ |
H A D | FormatValueUtility.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 70 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE_TYPE, "time"); in applyValueForVariable() 72 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, "time-value", ret); in applyValueForVariable() 76 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE_TYPE, "date"); in applyValueForVariable() 78 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, "date-value", ret); in applyValueForVariable() 82 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE_TYPE, "float"); in applyValueForVariable() 84 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE, ret); in applyValueForVariable() 88 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE_TYPE, "float"); in applyValueForVariable() 111 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, STRING_VALUE, ""); in applyValueForVariable() 135 variableSection.setAttribute(OfficeNamespaces.OFFICE_NS, VALUE_TYPE, "float"); in applyValueForCell() [all …]
|
H A D | FormattedTextLayoutController.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 116 Element.NAMESPACE_ATTRIBUTE, OfficeNamespaces.TEXT_NS); in delegateContentGeneration() 117 variablesGet.setAttribute(OfficeNamespaces.TEXT_NS, "name", name); in delegateContentGeneration() 123 … variablesGet.setAttribute(OfficeNamespaces.STYLE_NS, "data-style-name", dataStyleName); in delegateContentGeneration() 127 … variablesGet.setAttribute(OfficeNamespaces.OFFICE_NS, FormatValueUtility.VALUE_TYPE, valueType); in delegateContentGeneration() 144 …if (cell != null && "string".equals(cell.getAttribute(OfficeNamespaces.OFFICE_NS, FormatValueUtili… in delegateContentGeneration() 193 …final String cellStyleName = (String) tce.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYL… in computeValueStyle() 205 return (String) style.getAttribute(OfficeNamespaces.STYLE_NS, "data-style-name"); in computeValueStyle() 217 …final String type = (String) tce.getAttribute(OfficeNamespaces.OFFICE_NS, FormatValueUtility.VALUE… in computeValueType()
|
H A D | ImageElementLayoutController.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 131 …nt rowSpan = TextUtilities.parseInt((String) tableCell.getAttribute(OfficeNamespaces.TABLE_NS, "nu… in createContext() 132 …nt colSpan = TextUtilities.parseInt((String) tableCell.getAttribute(OfficeNamespaces.TABLE_NS, "nu… in createContext() 165 …final Section columns = (Section) table.findFirstChild(OfficeNamespaces.TABLE_NS, OfficeToken.TABL… in createContext() 233 …if (OfficeNamespaces.TABLE_NS.equals(element.getNamespace()) && "table-cell".equals(element.getTyp… in findParentCell() 275 …if (!ObjectUtilities.equal(column.getNamespace(), OfficeNamespaces.TABLE_NS) || !ObjectUtilities.e… in addColumnStyles() 281 …final String colStyle = (String) column.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_… in addColumnStyles() 303 …if (!ObjectUtilities.equal(row.getNamespace(), OfficeNamespaces.TABLE_NS) || !ObjectUtilities.equa… in addRowStyles() 309 …final String rowStyle = (String) row.getAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAM… in addRowStyles()
|
H A D | TableCellLayoutController.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 67 …final String definedStyle = (String) attributeMap.getAttribute(OfficeNamespaces.TABLE_NS, OfficeTo… in computeAttributes() 68 …attributeMap.setAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME, getDisplayStyleName((… in computeAttributes() 73 …final String valueType = (String) attributeMap.getAttribute(OfficeNamespaces.OFFICE_NS, FormatValu… in computeAttributes() 80 attributeMap.setAttribute(OfficeNamespaces.OFFICE_NS, in computeAttributes() 87 attributeMap.setAttribute(OfficeNamespaces.OFFICE_NS, in computeAttributes() 114 attributeMap.setAttribute(OfficeNamespaces.OFFICE_NS, in computeValue()
|
H A D | VariablesDeclarationLayoutController.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 126 map.setAttribute(OfficeNamespaces.TEXT_NS, "name", varName); in advance() 139 …Attribute(JFreeReportInfo.REPORT_NAMESPACE, Element.NAMESPACE_ATTRIBUTE, OfficeNamespaces.TEXT_NS); in generateVariableSetSection() 141 variableSection.setAttribute(OfficeNamespaces.TEXT_NS, "display", "none"); in generateVariableSetSection() 156 variableSection.setAttribute(OfficeNamespaces.TEXT_NS, "formula", "ooow:" + formula); in generateVariableSetSection()
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/ |
H A D | SpreadsheetRawReportTarget.java | 30 import com.sun.star.report.pentaho.OfficeNamespaces; 233 final String y = (String) attrs.getAttribute(OfficeNamespaces.SVG_NS, "y"); in startOther() 254 if (OfficeNamespaces.TABLE_NS.equals(namespace) && OfficeToken.TABLE.equals(elementType)) in startOther() 326 if (ReportTargetUtil.isElementOfType(OfficeNamespaces.TABLE_NS, OfficeToken.TABLE, attrs)) in processElement() 352 …til.isElementOfType(OfficeNamespaces.TABLE_NS, OfficeToken.TABLE_COLUMN, attrs) || ReportTargetUti… in processElement() 394 tableRowProperties.setNamespace(OfficeNamespaces.STYLE_NS); in processElement() 424 textProperties.setAttribute(OfficeNamespaces.FO_NS, i, null); in processElement() 426 textProperties.setAttribute(OfficeNamespaces.TEXT_NS, "display", null); in processElement() 429 textProperties.setAttribute(OfficeNamespaces.STYLE_NS, i, null); in processElement() 443 attrs.setAttribute(OfficeNamespaces.TABLE_NS, OfficeToken.STYLE_NAME, styleName); in processElement() [all …]
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/model/ |
H A D | OfficeStyle.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 42 setNamespace(OfficeNamespaces.STYLE_NS); in OfficeStyle() 48 return (String) getAttribute(OfficeNamespaces.STYLE_NS, "name"); in getStyleName() 53 setAttribute(OfficeNamespaces.STYLE_NS, "name", name); in setStyleName() 70 setAttribute(OfficeNamespaces.STYLE_NS, "parent-style-name", parentName); in setStyleParent() 75 return (String) getAttribute(OfficeNamespaces.STYLE_NS, "family"); in getStyleFamily() 80 setAttribute(OfficeNamespaces.STYLE_NS, "family", family); in setStyleFamily() 89 return findFirstChild(OfficeNamespaces.STYLE_NS, "paragraph-properties"); in getParagraphProperties() 94 return findFirstChild(OfficeNamespaces.STYLE_NS, "text-properties"); in getTextProperties() 104 return findFirstChild(OfficeNamespaces.STYLE_NS, "table-properties"); in getTableProperties() [all …]
|
H A D | PageLayout.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 41 setNamespace(OfficeNamespaces.STYLE_NS); in PageLayout() 47 return (String) getAttribute(OfficeNamespaces.STYLE_NS, "name"); in getStyleName() 52 setAttribute(OfficeNamespaces.STYLE_NS, "name", name); in setStyleName() 57 return (Section) findFirstChild(OfficeNamespaces.STYLE_NS, "header-style"); in getHeaderStyle() 62 return (Section) findFirstChild(OfficeNamespaces.STYLE_NS, "footer-style"); in getFooterStyle()
|
H A D | OfficeMasterPage.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 45 return (String) getAttribute(OfficeNamespaces.STYLE_NS, "name"); in getStyleName() 50 setAttribute(OfficeNamespaces.STYLE_NS, "name", name); in setStyleName() 55 return (String) getAttribute(OfficeNamespaces.STYLE_NS, "page-layout-name"); in getPageLayout() 60 setAttribute(OfficeNamespaces.STYLE_NS, "page-layout-name", name); in setPageLayout()
|
H A D | ReportElement.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 60 …return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "print-when-group-change… in isPrintWhenGroupChanges() 65 setAttribute(OfficeNamespaces.OOREPORT_NS, "print-when-group-changes", in setPrintWhenGroupChanges() 78 …return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "print-repeated-values")… in isPrintRepeatedValues() 83 setAttribute(OfficeNamespaces.OOREPORT_NS, "print-repeated-values", in setPrintRepeatedValues()
|
H A D | ImageElement.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 57 String val = (String) getAttribute(OfficeNamespaces.OOREPORT_NS, OfficeToken.SCALE); in getScaleMode() 71 …return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, OfficeToken.PRESERVE_IRI… in isPreserveIRI() 76 … setAttribute(OfficeNamespaces.OOREPORT_NS, OfficeToken.PRESERVE_IRI, String.valueOf(preserveIRI)); in setPreserveIRI() 81 return (String) getAttribute(OfficeNamespaces.FORM_NS, OfficeToken.IMAGE_DATA); in getImageData()
|
H A D | OfficeGroup.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 48 … return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "start-new-column")); in isStartNewColumn() 53 … return OfficeToken.TRUE.equals(getAttribute(OfficeNamespaces.OOREPORT_NS, "reset-page-number")); in isResetPageNumber() 64 …return (OfficeGroupSection) instanceSection.findFirstChild(OfficeNamespaces.OOREPORT_NS, "group-he… in getHeader() 76 …return (OfficeGroupSection) instanceSection.findFirstChild(OfficeNamespaces.OOREPORT_NS, "group-fo… in getFooter()
|
H A D | OfficeStylesCollection.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 64 automaticStyles.setNamespace(OfficeNamespaces.OFFICE_NS); in OfficeStylesCollection() 68 commonStyles.setNamespace(OfficeNamespaces.OFFICE_NS); in OfficeStylesCollection() 72 masterStyles.setNamespace(OfficeNamespaces.OFFICE_NS); in OfficeStylesCollection()
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/ |
H A D | FunctionReadHandler.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 62 final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing() 68 final String name = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "name"); in startParsing() 73 … final String initialFormula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "initial-formula"); in startParsing() 74 … final String deepTraversing = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "deep-traversing"); in startParsing() 92 final String preEvaluated = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "pre-evaluated"); in startParsing()
|
H A D | ImageReadHandler.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 66 final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing() 77 contentElement.setNamespace(OfficeNamespaces.FORM_NS); in startParsing() 94 if (OfficeNamespaces.DRAWING_NS.equals(uri) && OfficeToken.IMAGE_DATA.equals(tagName)) in getHandlerForChild() 100 if (OfficeNamespaces.OOREPORT_NS.equals(uri)) in getHandlerForChild() 128 contentElement.setAttribute(OfficeNamespaces.OOREPORT_NS, in doneParsing()
|
H A D | MasterDetailReadHandler.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 69 final String master = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "master"); in startParsing() 72 final String detail = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "detail"); in startParsing() 91 if (OfficeNamespaces.OOREPORT_NS.equals(uri) && "master-detail-field".equals(tagName)) in getHandlerForChild()
|
H A D | FormatConditionReadHandler.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 63 attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing() 69 attrs.getValue(OfficeNamespaces.OOREPORT_NS, OfficeToken.STYLE_NAME); in startParsing() 77 final String enabledText = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "enabled"); in startParsing()
|
H A D | ReportElementReadHandler.java | 26 import com.sun.star.report.pentaho.OfficeNamespaces; 68 …final String printWhenGroupChanges = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "print-when-grou… in startParsing() 70 …final String printRepeatingValues = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "print-repeated-v… in startParsing() 87 if (!OfficeNamespaces.OOREPORT_NS.equals(uri)) in getHandlerForChild()
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/parser/xlink/ |
H A D | XLinkReadHandler.java | 25 import com.sun.star.report.pentaho.OfficeNamespaces; 57 uri = attrs.getValue(OfficeNamespaces.XLINK_NS, "uri"); in startParsing() 58 type = attrs.getValue(OfficeNamespaces.XLINK_NS, "type"); in startParsing() 59 show = attrs.getValue(OfficeNamespaces.XLINK_NS, "show"); in startParsing() 60 actuate = attrs.getValue(OfficeNamespaces.XLINK_NS, "actuate"); in startParsing()
|
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/output/chart/ |
H A D | ChartRawReportTarget.java | 30 import com.sun.star.report.pentaho.OfficeNamespaces; 99 … xmlWriter.writeTag(OfficeNamespaces.OFFICE_NS, getStartContent(), null, XmlWriterSupport.OPEN); in startContent() 158 if (OfficeNamespaces.TABLE_NS.equals(namespace)) in endOther() 173 else if (OfficeNamespaces.CHART_NS.equals(namespace) && "chart".equals(elementType)) in endOther() 203 if (OfficeNamespaces.TABLE_NS.equals(namespace)) in processElement()
|