summaryrefslogtreecommitdiff
path: root/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Row.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Row.java')
-rw-r--r--xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Row.java142
1 files changed, 142 insertions, 0 deletions
diff --git a/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Row.java b/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Row.java
new file mode 100644
index 000000000000..5ffb49da45d5
--- /dev/null
+++ b/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Row.java
@@ -0,0 +1,142 @@
+/************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: Row.java,v $
+ * $Revision: 1.7 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+package org.openoffice.xmerge.converter.xml.sxc.pexcel.records;
+
+import java.io.DataInputStream;
+import java.io.OutputStream;
+import java.io.InputStream;
+import java.io.IOException;
+
+import org.openoffice.xmerge.util.Debug;
+import org.openoffice.xmerge.util.EndianConverter;
+import org.openoffice.xmerge.converter.xml.sxc.pexcel.PocketExcelConstants;
+
+
+/**
+ * Represents s BIFF Record that describes the format of a column
+ */
+public class Row implements BIFFRecord {
+
+ private byte[] rw = new byte[2];
+ private byte[] miyRw = new byte[2];
+ private byte[] grbit = new byte[2];
+ private byte[] ixfe = new byte[2];
+ private float scale = (float) 1;
+
+ /**
+ * Constructs a pocket Excel Document from the
+ * <code>InputStream</code> and assigns it the document name passed in
+ *
+ * @param rw Zero based row number
+ * @param miyRw row height
+ */
+ public Row(int rw, int miyRw, boolean userDefined) {
+ this.rw = EndianConverter.writeShort((short) rw);
+ miyRw *= scale;
+ this.miyRw = EndianConverter.writeShort((short) miyRw);
+ if(userDefined) {
+ grbit = EndianConverter.writeShort((short) 2);
+ } else {
+ grbit = EndianConverter.writeShort((short) 0);
+ }
+ ixfe = EndianConverter.writeShort((short) 0);
+ }
+
+ /**
+ * Constructs a Row fro man <code>InputStream</code>
+ *
+ * @param is InputStream containing a Pane Record
+ */
+ public Row(InputStream is) throws IOException {
+ read(is);
+ }
+
+ /**
+ * Get the hex code for this particular <code>BIFFRecord</code>
+ *
+ * @return the hex code for <code>Row</code>
+ */
+ public short getBiffType() {
+ return PocketExcelConstants.ROW_DESCRIPTION;
+ }
+
+ /**
+ * Get the height of this row
+ *
+ * @return the height of this row
+ */
+ public short getRowHeight() {
+ return EndianConverter.readShort(miyRw);
+ }
+
+ /**
+ * Get the rown number for this style
+ *
+ * @return the row this style applies to
+ */
+ public short getRowNumber() {
+ return EndianConverter.readShort(rw);
+ }
+
+ /**
+ * Reads a Row from an <code>InputStream</code>
+ *
+ * @param is InputStream containing a Pane Record
+ */
+ public int read(InputStream input) throws IOException {
+
+ int numOfBytesRead = input.read(rw);
+ numOfBytesRead += input.read(miyRw);
+ short scaledHeight = (short) (EndianConverter.readShort(miyRw) / scale);
+ miyRw = EndianConverter.writeShort(scaledHeight);
+ numOfBytesRead += input.read(grbit);
+ numOfBytesRead += input.read(ixfe);
+
+ Debug.log(Debug.TRACE,"\trw : "+ EndianConverter.readShort(rw) +
+ " miyRw : " + EndianConverter.readShort(miyRw) +
+ " grbit : " + EndianConverter.readShort(grbit) +
+ " ixfe : " + EndianConverter.readShort(ixfe));
+ return numOfBytesRead;
+ }
+
+ public void write(OutputStream output) throws IOException {
+
+ output.write(getBiffType());
+ output.write(rw);
+ output.write(miyRw);
+ output.write(grbit);
+ output.write(ixfe);
+
+ Debug.log(Debug.TRACE,"Writing Row record");
+
+ }
+
+}