All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.poi.xssf.usermodel.extensions.XSSFHeaderFooter Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

package org.apache.poi.xssf.usermodel.extensions;

import org.apache.poi.ss.usermodel.HeaderFooter;
import org.apache.poi.xssf.usermodel.helpers.HeaderFooterHelper;
import org.apache.poi.util.Internal;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTHeaderFooter;

/**
 * Parent class of all XSSF headers and footers.
 *
 * For a list of all the different fields that can be placed into a header or
 * footer, such as page number, bold, underline etc, see the follow formatting
 * syntax
 *
 * Header/Footer Formatting Syntax
 *

* There are a number of formatting codes that can be written inline with the * actual header / footer text, which affect the formatting in the header or * footer. *

* * This example shows the text "Center Bold Header" on the first line (center * section), and the date on the second line (center section). &CCenter * &"-,Bold"Bold &"-,Regular"Header_x000A_&D * * General Rules: There is no required order in which these codes must * appear. The first occurrence of the following codes turns the formatting ON, * the second occurrence turns it OFF again: * *
*
&L
*
code for "left section" (there are three header / footer locations, * "left", "center", and "right"). When two or more occurrences of this section * marker exist, the contents from all markers are concatenated, in the order of * appearance, and placed into the left section.
*
&P
*
code for "current page #"
*
&N
*
code for "total pages"
*
&font size
*
code for "text font size", where font size is a font size in points.
*
&K
*
code for "text font color" RGB Color is specified as RRGGBB Theme Color * is specifed as TTSNN where TT is the theme color Id, S is either "+" or "-" * of the tint/shade value, NN is the tint/shade value.
*
&S
*
code for "text strikethrough" on / off
*
&X
*
code for "text super script" on / off
*
&Y
*
code for "text subscript" on / off
*
&C
*
code for "center section". When two or more occurrences of this section * marker exist, the contents from all markers are concatenated, in the order of * appearance, and placed into the center section. SpreadsheetML Reference * Material - Worksheets 1966
*
&D
*
code for "date"
*
&T
*
code for "time"
*
&G
*
code for "picture as background"
*
&U
*
code for "text single underline"
*
&E
*
code for "double underline"
*
&R
*
code for "right section". When two or more occurrences of this section * marker exist, the contents from all markers are concatenated, in the order of * appearance, and placed into the right section.
*
&Z
*
code for "this workbook's file path"
*
&F
*
code for "this workbook's file name"
*
&A
*
code for "sheet tab name"
*
&+
*
code for add to page #.
*
&-
*
code for subtract from page #.
*
&"font name,font type" - code for "text font name" and "text font type", * where font name and font type are strings specifying the name and type of the * font, separated by a comma. When a hyphen appears in font name, it means * "none specified". Both of font name and font type can be localized * values. *
&"-,Bold"
*
code for "bold font style"
*
&B
*
also means "bold font style"
*
&"-,Regular"
*
code for "regular font style"
*
&"-,Italic"
*
code for "italic font style"
*
&I
*
also means "italic font style"
*
&"-,Bold Italic"
*
code for "bold italic font style"
*
&O
*
code for "outline style"
*
&H
*
code for "shadow style"
*
* * */ public abstract class XSSFHeaderFooter implements HeaderFooter { private HeaderFooterHelper helper; private CTHeaderFooter headerFooter; private boolean stripFields = false; /** * Create an instance of XSSFHeaderFooter from the supplied XML bean * * @param headerFooter */ public XSSFHeaderFooter(CTHeaderFooter headerFooter) { this.headerFooter = headerFooter; this.helper = new HeaderFooterHelper(); } /** * Returns the underlying CTHeaderFooter xml bean * * @return the underlying CTHeaderFooter xml bean */ @Internal public CTHeaderFooter getHeaderFooter() { return this.headerFooter; } public String getValue() { String value = getText(); if (value == null) return ""; return value; } /** * Are fields currently being stripped from the text that this * {@link XSSFHeaderFooter} returns? Default is false, but can be changed */ public boolean areFieldsStripped() { return stripFields; } /** * Should fields (eg macros) be stripped from the text that this class * returns? Default is not to strip. * * @param stripFields */ public void setAreFieldsStripped(boolean stripFields) { this.stripFields = stripFields; } /** * Removes any fields (eg macros, page markers etc) from the string. * Normally used to make some text suitable for showing to humans, and the * resultant text should not normally be saved back into the document! */ public static String stripFields(String text) { return org.apache.poi.hssf.usermodel.HeaderFooter.stripFields(text); } public abstract String getText(); protected abstract void setText(String text); /** * get the text representing the center part of this element */ public String getCenter() { String text = helper.getCenterSection(getText()); if (stripFields) return stripFields(text); return text; } /** * get the text representing the left part of this element */ public String getLeft() { String text = helper.getLeftSection(getText()); if (stripFields) return stripFields(text); return text; } /** * get the text representing the right part of this element */ public String getRight() { String text = helper.getRightSection(getText()); if (stripFields) return stripFields(text); return text; } /** * set a centered string value for this element */ public void setCenter(String newCenter) { setText(helper.setCenterSection(getText(), newCenter)); } /** * set a left string value for this element */ public void setLeft(String newLeft) { setText(helper.setLeftSection(getText(), newLeft)); } /** * set a right string value for this element */ public void setRight(String newRight) { setText(helper.setRightSection(getText(), newRight)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy