/******************************************************************************* * Copyright (c) 2007, 2010 Association for Decentralized Information Management * in Industry THTH ry. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * VTT Technical Research Centre of Finland - initial API and implementation *******************************************************************************/ package org.simantics.utils.ui.gfx.clipboard.headers; public class Win32Constants { //biCompression constants (wingdi.h) public static final int BI_RGB = 0; public static final int BI_RLE8 = 1; public static final int BI_RLE24 = 2; public static final int BI_BITFIELDS = 3; public static final int BI_JPEG = 4; public static final int BI_PNG = 5; //Clipboard constants (winuser.h) public static final int CF_TEXT = 1; public static final int CF_BITMAP = 2; public static final int CF_METAFILEPICT = 3; public static final int CF_SYLK = 4; public static final int CF_DIF = 5; public static final int CF_TIFF = 6; public static final int CF_OEMTEXT = 7; public static final int CF_DIB = 8; public static final int CF_PALETTE = 9; // there's more than these, but those are not currently needed }