blob: df0afac429dcbb249562f73b0417b2bf7cb3ddb9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others. All rights reserved.
* The contents of this file are made available under the terms
* of the GNU Lesser General Public License (LGPL) Version 2.1 that
* accompanies this distribution (lgpl-v21.txt). The LGPL is also
* available at http://www.gnu.org/licenses/lgpl.html. If the version
* of the LGPL at http://www.gnu.org is different to the version of
* the LGPL accompanying this distribution and there is any conflict
* between the two license versions, the terms of the LGPL accompanying
* this distribution shall govern.
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.gtk;
public class GdkEventExpose extends GdkEvent {
/** @field cast=(GdkWindow *) */
public int /*long*/ window;
/** @field cast=(gint8) */
public byte send_event;
/** @field accessor=area.x */
public int area_x;
/** @field accessor=area.y */
public int area_y;
/** @field accessor=area.width */
public int area_width;
/** @field accessor=area.height */
public int area_height;
/** @field cast=(GdkRegion *) */
public int /*long*/ region;
/** @field cast=(gint) */
public int count;
public static final int sizeof = OS.GdkEventExpose_sizeof();
}