textrecord.java
来自「EXCEL read and write」· Java 代码 · 共 715 行 · 第 1/2 页
JAVA
715 行
/* ==================================================================== 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.hssf.record;import org.apache.poi.util.BitField;import org.apache.poi.util.BitFieldFactory;import org.apache.poi.util.HexDump;import org.apache.poi.util.LittleEndian;/** * The text record is used to define text stored on a chart.<p/> * * @author Glen Stampoultzis (glens at apache.org) */public final class TextRecord extends Record { public final static short sid = 0x1025; private static final BitField dataLabelPlacement = BitFieldFactory.getInstance(0x000F); private static final BitField autoColor = BitFieldFactory.getInstance(0x0001); private static final BitField showKey = BitFieldFactory.getInstance(0x0002); private static final BitField showValue = BitFieldFactory.getInstance(0x0004); private static final BitField vertical = BitFieldFactory.getInstance(0x0008); private static final BitField autoGeneratedText = BitFieldFactory.getInstance(0x0010); private static final BitField generated = BitFieldFactory.getInstance(0x0020); private static final BitField autoLabelDeleted = BitFieldFactory.getInstance(0x0040); private static final BitField autoBackground = BitFieldFactory.getInstance(0x0080); private static final BitField rotation = BitFieldFactory.getInstance(0x0700); private static final BitField showCategoryLabelAsPercentage = BitFieldFactory.getInstance(0x0800); private static final BitField showValueAsPercentage = BitFieldFactory.getInstance(0x1000); private static final BitField showBubbleSizes = BitFieldFactory.getInstance(0x2000); private static final BitField showLabel = BitFieldFactory.getInstance(0x4000); private byte field_1_horizontalAlignment; public final static byte HORIZONTAL_ALIGNMENT_LEFT = 1; public final static byte HORIZONTAL_ALIGNMENT_CENTER = 2; public final static byte HORIZONTAL_ALIGNMENT_BOTTOM = 3; public final static byte HORIZONTAL_ALIGNMENT_JUSTIFY = 4; private byte field_2_verticalAlignment; public final static byte VERTICAL_ALIGNMENT_TOP = 1; public final static byte VERTICAL_ALIGNMENT_CENTER = 2; public final static byte VERTICAL_ALIGNMENT_BOTTOM = 3; public final static byte VERTICAL_ALIGNMENT_JUSTIFY = 4; private short field_3_displayMode; public final static short DISPLAY_MODE_TRANSPARENT = 1; public final static short DISPLAY_MODE_OPAQUE = 2; private int field_4_rgbColor; private int field_5_x; private int field_6_y; private int field_7_width; private int field_8_height; private short field_9_options1; public final static short ROTATION_NONE = 0; public final static short ROTATION_TOP_TO_BOTTOM = 1; public final static short ROTATION_ROTATED_90_DEGREES = 2; public final static short ROTATION_ROTATED_90_DEGREES_CLOCKWISE = 3; private short field_10_indexOfColorValue; private short field_11_options2; public final static short DATA_LABEL_PLACEMENT_CHART_DEPENDENT = 0; public final static short DATA_LABEL_PLACEMENT_OUTSIDE = 1; public final static short DATA_LABEL_PLACEMENT_INSIDE = 2; public final static short DATA_LABEL_PLACEMENT_CENTER = 3; public final static short DATA_LABEL_PLACEMENT_AXIS = 4; public final static short DATA_LABEL_PLACEMENT_ABOVE = 5; public final static short DATA_LABEL_PLACEMENT_BELOW = 6; public final static short DATA_LABEL_PLACEMENT_LEFT = 7; public final static short DATA_LABEL_PLACEMENT_RIGHT = 8; public final static short DATA_LABEL_PLACEMENT_AUTO = 9; public final static short DATA_LABEL_PLACEMENT_USER_MOVED = 10; private short field_12_textRotation; public TextRecord() { } public TextRecord(RecordInputStream in) { field_1_horizontalAlignment = in.readByte(); field_2_verticalAlignment = in.readByte(); field_3_displayMode = in.readShort(); field_4_rgbColor = in.readInt(); field_5_x = in.readInt(); field_6_y = in.readInt(); field_7_width = in.readInt(); field_8_height = in.readInt(); field_9_options1 = in.readShort(); field_10_indexOfColorValue = in.readShort(); field_11_options2 = in.readShort(); field_12_textRotation = in.readShort(); } public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append("[TEXT]\n"); buffer.append(" .horizontalAlignment = ") .append("0x").append(HexDump.toHex( getHorizontalAlignment ())) .append(" (").append( getHorizontalAlignment() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .verticalAlignment = ") .append("0x").append(HexDump.toHex( getVerticalAlignment ())) .append(" (").append( getVerticalAlignment() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .displayMode = ") .append("0x").append(HexDump.toHex( getDisplayMode ())) .append(" (").append( getDisplayMode() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .rgbColor = ") .append("0x").append(HexDump.toHex( getRgbColor ())) .append(" (").append( getRgbColor() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .x = ") .append("0x").append(HexDump.toHex( getX ())) .append(" (").append( getX() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .y = ") .append("0x").append(HexDump.toHex( getY ())) .append(" (").append( getY() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .width = ") .append("0x").append(HexDump.toHex( getWidth ())) .append(" (").append( getWidth() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .height = ") .append("0x").append(HexDump.toHex( getHeight ())) .append(" (").append( getHeight() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .options1 = ") .append("0x").append(HexDump.toHex( getOptions1 ())) .append(" (").append( getOptions1() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .autoColor = ").append(isAutoColor()).append('\n'); buffer.append(" .showKey = ").append(isShowKey()).append('\n'); buffer.append(" .showValue = ").append(isShowValue()).append('\n'); buffer.append(" .vertical = ").append(isVertical()).append('\n'); buffer.append(" .autoGeneratedText = ").append(isAutoGeneratedText()).append('\n'); buffer.append(" .generated = ").append(isGenerated()).append('\n'); buffer.append(" .autoLabelDeleted = ").append(isAutoLabelDeleted()).append('\n'); buffer.append(" .autoBackground = ").append(isAutoBackground()).append('\n'); buffer.append(" .rotation = ").append(getRotation()).append('\n'); buffer.append(" .showCategoryLabelAsPercentage = ").append(isShowCategoryLabelAsPercentage()).append('\n'); buffer.append(" .showValueAsPercentage = ").append(isShowValueAsPercentage()).append('\n'); buffer.append(" .showBubbleSizes = ").append(isShowBubbleSizes()).append('\n'); buffer.append(" .showLabel = ").append(isShowLabel()).append('\n'); buffer.append(" .indexOfColorValue = ") .append("0x").append(HexDump.toHex( getIndexOfColorValue ())) .append(" (").append( getIndexOfColorValue() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .options2 = ") .append("0x").append(HexDump.toHex( getOptions2 ())) .append(" (").append( getOptions2() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append(" .dataLabelPlacement = ").append(getDataLabelPlacement()).append('\n'); buffer.append(" .textRotation = ") .append("0x").append(HexDump.toHex( getTextRotation ())) .append(" (").append( getTextRotation() ).append(" )"); buffer.append(System.getProperty("line.separator")); buffer.append("[/TEXT]\n"); return buffer.toString(); } public int serialize(int offset, byte[] data) { int pos = 0; LittleEndian.putShort(data, 0 + offset, sid); LittleEndian.putShort(data, 2 + offset, (short)(getRecordSize() - 4)); data[ 4 + offset + pos ] = field_1_horizontalAlignment; data[ 5 + offset + pos ] = field_2_verticalAlignment; LittleEndian.putShort(data, 6 + offset + pos, field_3_displayMode); LittleEndian.putInt(data, 8 + offset + pos, field_4_rgbColor); LittleEndian.putInt(data, 12 + offset + pos, field_5_x); LittleEndian.putInt(data, 16 + offset + pos, field_6_y); LittleEndian.putInt(data, 20 + offset + pos, field_7_width); LittleEndian.putInt(data, 24 + offset + pos, field_8_height); LittleEndian.putShort(data, 28 + offset + pos, field_9_options1); LittleEndian.putShort(data, 30 + offset + pos, field_10_indexOfColorValue); LittleEndian.putShort(data, 32 + offset + pos, field_11_options2); LittleEndian.putShort(data, 34 + offset + pos, field_12_textRotation); return getRecordSize(); } public int getRecordSize() { return 4 + 1 + 1 + 2 + 4 + 4 + 4 + 4 + 4 + 2 + 2 + 2 + 2; } public short getSid() { return sid; } public Object clone() { TextRecord rec = new TextRecord(); rec.field_1_horizontalAlignment = field_1_horizontalAlignment; rec.field_2_verticalAlignment = field_2_verticalAlignment; rec.field_3_displayMode = field_3_displayMode; rec.field_4_rgbColor = field_4_rgbColor; rec.field_5_x = field_5_x; rec.field_6_y = field_6_y; rec.field_7_width = field_7_width; rec.field_8_height = field_8_height; rec.field_9_options1 = field_9_options1; rec.field_10_indexOfColorValue = field_10_indexOfColorValue; rec.field_11_options2 = field_11_options2; rec.field_12_textRotation = field_12_textRotation; return rec; } /** * Get the horizontal alignment field for the Text record. * * @return One of * HORIZONTAL_ALIGNMENT_LEFT * HORIZONTAL_ALIGNMENT_CENTER * HORIZONTAL_ALIGNMENT_BOTTOM * HORIZONTAL_ALIGNMENT_JUSTIFY */ public byte getHorizontalAlignment() { return field_1_horizontalAlignment; } /** * Set the horizontal alignment field for the Text record. * * @param field_1_horizontalAlignment * One of * HORIZONTAL_ALIGNMENT_LEFT * HORIZONTAL_ALIGNMENT_CENTER * HORIZONTAL_ALIGNMENT_BOTTOM * HORIZONTAL_ALIGNMENT_JUSTIFY */ public void setHorizontalAlignment(byte field_1_horizontalAlignment) { this.field_1_horizontalAlignment = field_1_horizontalAlignment; } /** * Get the vertical alignment field for the Text record. * * @return One of * VERTICAL_ALIGNMENT_TOP * VERTICAL_ALIGNMENT_CENTER * VERTICAL_ALIGNMENT_BOTTOM * VERTICAL_ALIGNMENT_JUSTIFY */ public byte getVerticalAlignment() { return field_2_verticalAlignment; } /** * Set the vertical alignment field for the Text record. * * @param field_2_verticalAlignment * One of * VERTICAL_ALIGNMENT_TOP * VERTICAL_ALIGNMENT_CENTER * VERTICAL_ALIGNMENT_BOTTOM * VERTICAL_ALIGNMENT_JUSTIFY */ public void setVerticalAlignment(byte field_2_verticalAlignment) { this.field_2_verticalAlignment = field_2_verticalAlignment; } /** * Get the display mode field for the Text record. * * @return One of * DISPLAY_MODE_TRANSPARENT * DISPLAY_MODE_OPAQUE */ public short getDisplayMode() { return field_3_displayMode; } /** * Set the display mode field for the Text record. * * @param field_3_displayMode * One of * DISPLAY_MODE_TRANSPARENT * DISPLAY_MODE_OPAQUE */ public void setDisplayMode(short field_3_displayMode) { this.field_3_displayMode = field_3_displayMode; } /** * Get the rgbColor field for the Text record. */ public int getRgbColor() { return field_4_rgbColor; } /** * Set the rgbColor field for the Text record. */ public void setRgbColor(int field_4_rgbColor) { this.field_4_rgbColor = field_4_rgbColor; } /** * Get the x field for the Text record. */ public int getX() { return field_5_x; } /** * Set the x field for the Text record. */ public void setX(int field_5_x) { this.field_5_x = field_5_x; } /** * Get the y field for the Text record. */ public int getY() { return field_6_y; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?