mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-26 19:50:01 +08:00
69b1b29156
2000-07-23 Rolf W. Rasmussen <rolfwr@ii.uib.no> * libjava/java/awt/image/ColorModel.java: New file, replaces the stub libjava/java/awt/ColorModel.java which was located in the wrong package. * libjava/java/awt/image/ComponentColorModel.java: New file. * libjava/java/awt/image/ComponentSampleModel.java: New file. * libjava/java/awt/image/DataBuffer.java: New file. * libjava/java/awt/image/DataBufferByte.java: New file. * libjava/java/awt/image/DataBufferInt.java: New file. * libjava/java/awt/image/DataBufferUShort.java: New file. * libjava/java/awt/image/DirectColorModel.java: New file. * libjava/java/awt/image/PackedColorModel.java: New file. * libjava/java/awt/image/Raster.java: New file. * libjava/java/awt/image/SampleModel.java: New file. * libjava/java/awt/image/SinglePixelPackedSampleModel.java: New file. * libjava/java/awt/image/IndexColorModel.java: New file. * libjava/java/awt/image/ImageConsumer.java: Removed import of java.awt.ColorModel stub. * gnu/gcj/util/BitMaskExtent.java: New file, utility class. * gnu/gcj/util/Buffers.java: New file, utility class. * libjava/Makefile.am: Updated to include new files. * libjava/Makefile.in: Rebuilt. From-SVN: r35245
36 lines
1.1 KiB
Java
36 lines
1.1 KiB
Java
/* Copyright (C) 2000 Free Software Foundation
|
|
|
|
This file is part of libgcj.
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
details. */
|
|
|
|
package java.awt.image;
|
|
import java.util.Hashtable;
|
|
|
|
public interface ImageConsumer
|
|
{
|
|
|
|
public static final int RANDOMPIXELORDER = 1 << 0,
|
|
TOPDOWNLEFTRIGHT = 1 << 1,
|
|
COMPLETESCANLINES = 1 << 2,
|
|
SINGLEPASS = 1 << 3,
|
|
SINGLEFRAME = 1 << 4;
|
|
|
|
public static final int IMAGEERROR = 1,
|
|
SINGLEFRAMEDONE = 2,
|
|
STATICIMAGEDONE = 3,
|
|
IMAGEABORTED = 4;
|
|
|
|
public void setDimensions(int width, int height);
|
|
public void setProperties(Hashtable props);
|
|
public void setColorModel(ColorModel model);
|
|
public void setHints(int hintflags);
|
|
public void setPixels(int x, int y, int w, int h, ColorModel model,
|
|
byte[] pixels, int off, int scansize);
|
|
public void setPixels(int x, int y, int w, int h, ColorModel model,
|
|
int[] pixels, int off, int scansize);
|
|
public void imageComplete(int status);
|
|
}
|