1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* This program 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 for more details.
*
* Copyright (c) 2000 - 2009 Pentaho Corporation, Object Refinery Limited and Contributors. All rights reserved.
*/
package org.pentaho.reporting.libraries.pixie.wmf;
/**
* Various FontConstants defined in the Windows API.
*/
public interface FontConstants
{
public static final int DEFAULT_QUALITY = 0;
public static final int DRAFT_QUALITY = 1;
public static final int PROOF_QUALITY = 2;
public static final int NONANTIALIASED_QUALITY = 3;
public static final int ANTIALIASED_QUALITY = 4;
public static final int DEFAULT_PITCH = 0;
public static final int FIXED_PITCH = 1;
public static final int VARIABLE_PITCH = 2;
public static final int MONO_FONT = 8;
/* Font Families */
/* Don't care or don't know. */
public static final int FF_DONTCARE = (0 << 4);
/**
* Variable stroke width, serifed. Times Roman, Century Schoolbook, etc.
*/
public static final int FF_ROMAN = (1 << 4);
/*
* Variable stroke width, sans-serifed.
* Helvetica, Swiss, etc.
*/
public static final int FF_SWISS = (2 << 4);
/*
* Constant stroke width, serifed or sans-serifed.
* Pica, Elite, Courier, etc.
*/
public static final int FF_MODERN = (3 << 4);
/* Cursive, etc. */
public static final int FF_SCRIPT = (4 << 4);
/* Old English, etc. */
public static final int FF_DECORATIVE = (5 << 4);
/* Font Weights */
public static final int FW_DONTCARE = 0;
public static final int FW_THIN = 100;
public static final int FW_EXTRALIGHT = 200;
public static final int FW_LIGHT = 300;
public static final int FW_NORMAL = 400;
public static final int FW_MEDIUM = 500;
public static final int FW_SEMIBOLD = 600;
public static final int FW_BOLD = 700;
public static final int FW_EXTRABOLD = 800;
public static final int FW_HEAVY = 900;
public static final int FW_ULTRALIGHT = FW_EXTRALIGHT;
public static final int FW_REGULAR = FW_NORMAL;
public static final int FW_DEMIBOLD = FW_SEMIBOLD;
public static final int FW_ULTRABOLD = FW_EXTRABOLD;
public static final int FW_BLACK = FW_HEAVY;
}
|