summaryrefslogtreecommitdiff
path: root/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/PocketExcelConstants.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/PocketExcelConstants.java')
-rw-r--r--xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/PocketExcelConstants.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/PocketExcelConstants.java b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/PocketExcelConstants.java
new file mode 100644
index 000000000000..13f73f18fdae
--- /dev/null
+++ b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/PocketExcelConstants.java
@@ -0,0 +1,67 @@
+/*************************************************************************
+ *
+ * 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;
+
+
+/**
+ * Interface defining constants for Pocket Excel attributes.
+ *
+ * @author Martin Maher
+ */
+public interface PocketExcelConstants {
+ /** File extension for Pocket Word files. */
+ public static final String FILE_EXTENSION = ".pxl";
+
+ /** Constants for pexcel BIFF records */
+ public static final int BLANK_CELL = 0x01;
+ public static final int NUMBER_CELL = 0x03;
+ public static final int LABEL_CELL = 0x04;
+ public static final int BOOLERR_CELL = 0x05;
+ public static final int FORMULA_CELL = 0x06;
+ public static final int FORMULA_STRING = 0x07;
+ public static final int ROW_DESCRIPTION = 0x08;
+ public static final int BOF_RECORD = 0x09;
+ public static final int EOF_MARKER = 0x0A;
+ public static final int DEFINED_NAME = 0x18;
+ public static final int CURRENT_SELECTION = 0x1D;
+ public static final int NUMBER_FORMAT = 0x1E;
+ public static final int DEFAULT_ROW_HEIGHT = 0x25;
+ public static final int FONT_DESCRIPTION = 0x31;
+ public static final int WINDOW_INFO = 0x3D;
+ public static final int SHEET_WINDOW_INFO = 0x3E;
+ public static final int PANE_INFO = 0x41;
+ public static final int CODEPAGE = 0x42;
+ public static final int DEF_COL_WIDTH = 0x55;
+ public static final int COLINFO = 0x7D;
+ public static final int BOUND_SHEET = 0x85;
+ public static final int EXTENDED_FORMAT = 0xE0;
+
+ /** Colour lookup table for mapping pexcel color values
+ (See util/ColourConverter.java */
+ public short cLookup[] = { 0, 14, 15, 1, 2, 3, 4, 7, 6, 5, 8, 9, 10, 13, 12, 11 };
+}