KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > motif > XSetWindowAttributes


1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.internal.motif;
12
13  
14 public class XSetWindowAttributes {
15     public int background_pixmap;
16     public int background_pixel;
17     public int border_pixmap;
18     public int border_pixel;
19     public int bit_gravity;
20     public int win_gravity;
21     public int backing_store;
22     public int backing_planes;
23     public int backing_pixel;
24     public int save_under;
25     public int event_mask;
26     public int do_not_propagate_mask;
27     public int override_redirect;
28     public int colormap;
29     public int cursor;
30     public static final int sizeof = 60;
31 }
32
Popular Tags