summaryrefslogtreecommitdiff
path: root/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Selection.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Selection.java')
-rw-r--r--xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Selection.java143
1 files changed, 0 insertions, 143 deletions
diff --git a/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Selection.java b/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Selection.java
deleted file mode 100644
index dac0c2986a14..000000000000
--- a/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/Selection.java
+++ /dev/null
@@ -1,143 +0,0 @@
-/************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * 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 java.awt.Point;
-
-import org.openoffice.xmerge.util.Debug;
-import org.openoffice.xmerge.util.EndianConverter;
-import org.openoffice.xmerge.converter.xml.sxc.pexcel.PocketExcelConstants;
-
-
-/**
- * Represents a BIFF Record that describes the selected area of a worksheet
- */
-public class Selection implements BIFFRecord {
-
- private byte[] rwTop = new byte[2];
- private byte colLeft;
- private byte[] rwBottom = new byte[2];
- private byte colRight;
- private byte[] rwActive = new byte[2];
- private byte colActive;
-
- /**
- * Default Constructor
- */
- public Selection() {
- this.rwTop = EndianConverter.writeShort((short) 0);
- this.colLeft = 0;
- this.rwBottom = EndianConverter.writeShort((short) 0);
- this.colRight = 0;
- this.rwActive = EndianConverter.writeShort((short) 0);
- this.colActive = 0;
-
- }
-
- /**
- * Constructs a Selection Record from the <code>InputStream</code>
- *
- * @param is InputStream containing a Pocket Excel Data file.
- */
- public Selection(InputStream is) throws IOException {
- read(is);
- }
-
- /**
- * Get the hex code for this particular <code>BIFFRecord</code>
- *
- * @return the hex code for <code>Selection</code>
- */
- public short getBiffType() {
- return PocketExcelConstants.CURRENT_SELECTION;
- }
-
- /**
- * Get the hex code for this particular <code>BIFFRecord</code>
- *
- * @return the hex code for <code>Selection</code>
- */
- public Point getActiveCell() {
- Point p = new Point(colActive, EndianConverter.readShort(rwActive));
- return p;
- }
-
- /**
- * Get the hex code for this particular <code>BIFFRecord</code>
- *
- * @return the hex code for <code>Selection</code>
- */
- public void setActiveCell(Point p) {
-
- colActive = (byte) p.getX();
- rwActive = EndianConverter.writeShort((short) p.getY());
- }
-
- /**
- * Reads a Selection Record from the <code>InputStream</code>
- *
- * @param is InputStream containing a Pocket Excel Data file.
- */
- public int read(InputStream input) throws IOException {
-
- int numOfBytesRead = input.read(rwTop);
- colLeft += (byte) input.read();
- numOfBytesRead += input.read(rwBottom);
- colRight += (byte) input.read();
- numOfBytesRead += input.read(rwActive);
- colActive += (byte) input.read();
- numOfBytesRead += 3;
-
- Debug.log(Debug.TRACE,"\trwTop : "+ EndianConverter.readShort(rwTop) +
- " colLeft : " + colLeft +
- " rwBottom : " + EndianConverter.readShort(rwBottom) +
- " colRight : "+ colRight +
- " rwActive : " + EndianConverter.readShort(rwActive) +
- " colActive : " + colActive);
-
- return numOfBytesRead;
- }
-
- public void write(OutputStream output) throws IOException {
-
- output.write(getBiffType());
- output.write(rwTop);
- output.write(colLeft);
- output.write(rwBottom);
- output.write(colRight);
- output.write(rwActive);
- output.write(colActive);
-
- Debug.log(Debug.TRACE,"Writing Selection record");
- }
-
-}