01: /*
02: * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * by Sun in the LICENSE file that accompanied this code.
10: *
11: * This code is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * version 2 for more details (a copy is included in the LICENSE file that
15: * accompanied this code).
16: *
17: * You should have received a copy of the GNU General Public License version
18: * 2 along with this work; if not, write to the Free Software Foundation,
19: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20: *
21: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22: * CA 95054 USA or visit www.sun.com if you need additional information or
23: * have any questions.
24: */
25:
26: package sun.awt.X11;
27:
28: public interface MWMConstants {
29:
30: /* bit definitions for MwmHints.flags */
31: static final int MWM_HINTS_FUNCTIONS = (1 << 0);
32: static final int MWM_HINTS_DECORATIONS = (1 << 1);
33: static final int MWM_HINTS_INPUT_MODE = (1 << 2);
34: static final int MWM_HINTS_STATUS = (1 << 3);
35:
36: /* bit definitions for MwmHints.functions */
37: static final int MWM_FUNC_ALL = (1 << 0);
38: static final int MWM_FUNC_RESIZE = (1 << 1);
39: static final int MWM_FUNC_MOVE = (1 << 2);
40: static final int MWM_FUNC_MINIMIZE = (1 << 3);
41: static final int MWM_FUNC_MAXIMIZE = (1 << 4);
42: static final int MWM_FUNC_CLOSE = (1 << 5);
43:
44: /* bit definitions for MwmHints.decorations */
45: static final int MWM_DECOR_ALL = (1 << 0);
46: static final int MWM_DECOR_BORDER = (1 << 1);
47: static final int MWM_DECOR_RESIZEH = (1 << 2);
48: static final int MWM_DECOR_TITLE = (1 << 3);
49: static final int MWM_DECOR_MENU = (1 << 4);
50: static final int MWM_DECOR_MINIMIZE = (1 << 5);
51: static final int MWM_DECOR_MAXIMIZE = (1 << 6);
52:
53: // Input modes
54: static final int MWM_INPUT_MODELESS = 0;
55: static final int MWM_INPUT_PRIMARY_APPLICATION_MODAL = 1;
56: static final int MWM_INPUT_SYSTEM_MODAL = 2;
57: static final int MWM_INPUT_FULL_APPLICATION_MODAL = 3;
58:
59: /* number of elements of size 32 in _MWM_HINTS */
60: static final int PROP_MWM_HINTS_ELEMENTS = 5;
61: /* number of elements of size 32 in _MWM_INFO */
62: final static int PROP_MOTIF_WM_INFO_ELEMENTS = 2;
63: final static int PROP_MWM_INFO_ELEMENTS = PROP_MOTIF_WM_INFO_ELEMENTS;
64:
65: static final String MWM_HINTS_ATOM_NAME = "_MOTIF_WM_HINTS";
66: }
|