KickJava   Java API By Example, From Geeks To Geeks.

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


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 XWindowAttributes {
15     public int x;
16     public int y;
17     public int width;
18     public int height;
19     public int border_width;
20     public int depth;
21     public int visual;
22     public int root;
23     public int c_class;
24     public int bit_gravity;
25     public int win_gravity;
26     public int backing_store;
27     public int backing_planes;
28     public int backing_pixel;
29     public int save_under;
30     public int colormap;
31     public int map_installed;
32     public int map_state;
33     public int all_event_masks;
34     public int your_event_mask;
35     public int do_not_propagate_mask;
36     public int override_redirect;
37     public int screen;
38     public static final int sizeof = 92;
39 }
40
Popular Tags