/************************************************************************* * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ package org.openoffice.xmerge.converter.xml.sxw.pocketword; /** * Interface defining constants for Pocket Word attributes. * * @author Mark Murnane * @version 1.1 */ public interface PocketWordConstants { /** File extension for Pocket Word files. */ public static final String FILE_EXTENSION = ".psw"; /** Name of the default style. */ public static final String DEFAULT_STYLE = "Standard"; /** Family name for Paragraph styles. */ public static final String PARAGRAPH_STYLE_FAMILY = "paragraph"; /** Family name for Text styles. */ public static final String TEXT_STYLE_FAMILY = "text"; /** * Generic Pocket Word formatting code. * * Formatting codes are 0xEz, where z indicates the specific format code. */ public static final byte FORMATTING_TAG = (byte)0xE0; /** Font specification tag. The two bytes following inidicate which font. */ public static final byte FONT_TAG = (byte)0xE5; /** Font size tag. The two bytes following specify font size in points. */ public static final byte FONT_SIZE_TAG = (byte)0xE6; /** Colour tag. Two bytes following index a 4-bit colour table. */ public static final byte COLOUR_TAG = (byte)0xE7; /** Font weight tag. Two bytes following indicate weighting of font. */ public static final byte FONT_WEIGHT_TAG = (byte)0xE8; /** Normal font weight value. */ public static final byte FONT_WEIGHT_NORMAL = (byte)0x04; /** Fine font weight value. */ public static final byte FONT_WEIGHT_FINE = (byte)0x01; /** Bold font weight value. */ public static final byte FONT_WEIGHT_BOLD = (byte)0x07; /** Thick font weight value. */ public static final byte FONT_WEIGHT_THICK = (byte)0x09; /** Italic tag. Single byte following indicates whether italic is on. */ public static final byte ITALIC_TAG = (byte)0xE9; /** Underline tag. Single byte following indicates whether underline is on. */ public static final byte UNDERLINE_TAG = (byte)0xEA; /** Strikethrough tag. Single byte following indicates whether strikethrough is on. */ public static final byte STRIKETHROUGH_TAG = (byte)0XEB; /** Highlighting tag. Single byte following indicates whether highlighting is on. */ public static final byte HIGHLIGHT_TAG = (byte)0xEC; }