blob: faae3320f68c79640d98f1d8b0c5eb251b298a27 [file] [log] [blame]
package org.eclipse.swt.internal.motif;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class XSetWindowAttributes {
public int background_pixmap; /* background or None or ParentRelative */
public int background_pixel; /* background pixel */
public int border_pixmap; /* border of the window */
public int border_pixel; /* border pixel value */
public int bit_gravity; /* one of bit gravity values */
public int win_gravity; /* one of the window gravity values */
public int backing_store; /* NotUseful, WhenMapped, Always */
public int backing_planes;/* planes to be preseved if possible */
public int backing_pixel;/* value to use in restoring planes */
public int save_under; /* should bits under be saved? (popups) */
public int event_mask; /* set of events that should be saved */
public int do_not_propagate_mask; /* set of events that should not propagate */
public int override_redirect; /* boolean value for override-redirect */
public int colormap; /* color map to be associated with window */
public int cursor; /* cursor to be displayed (or None) */
public static final int sizeof = 60;
}