01: /*******************************************************************************
02: * Copyright (c) 2000, 2003 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.swt.internal.motif;
11:
12: public class XWindowAttributes {
13: public int x;
14: public int y;
15: public int width;
16: public int height;
17: public int border_width;
18: public int depth;
19: public int visual;
20: public int root;
21: public int c_class;
22: public int bit_gravity;
23: public int win_gravity;
24: public int backing_store;
25: public int backing_planes;
26: public int backing_pixel;
27: public int save_under;
28: public int colormap;
29: public int map_installed;
30: public int map_state;
31: public int all_event_masks;
32: public int your_event_mask;
33: public int do_not_propagate_mask;
34: public int override_redirect;
35: public int screen;
36: public static final int sizeof = 92;
37: }
|