jdk/src/solaris/classes/sun/awt/X11/MWMConstants.java
changeset 2 90ce3da70b43
child 439 3488710b02f8
equal deleted inserted replaced
0:fd16c54261b3 2:90ce3da70b43
       
     1 /*
       
     2  * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Sun designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * 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 
       
    27 package sun.awt.X11;
       
    28 
       
    29 public interface MWMConstants {
       
    30 
       
    31 /* bit definitions for MwmHints.flags */
       
    32     static final int MWM_HINTS_FUNCTIONS=       (1  << 0);
       
    33     static final int MWM_HINTS_DECORATIONS=     (1  << 1);
       
    34     static final int MWM_HINTS_INPUT_MODE=      (1  << 2);
       
    35     static final int MWM_HINTS_STATUS=          (1  << 3);
       
    36 
       
    37 /* bit definitions for MwmHints.functions */
       
    38     static final int MWM_FUNC_ALL=              (1  << 0);
       
    39     static final int MWM_FUNC_RESIZE=           (1  << 1);
       
    40     static final int MWM_FUNC_MOVE=             (1  << 2);
       
    41     static final int MWM_FUNC_MINIMIZE=         (1  << 3);
       
    42     static final int MWM_FUNC_MAXIMIZE=         (1  << 4);
       
    43     static final int MWM_FUNC_CLOSE=            (1  << 5);
       
    44 
       
    45 /* bit definitions for MwmHints.decorations */
       
    46     static final int MWM_DECOR_ALL=             (1  << 0);
       
    47     static final int MWM_DECOR_BORDER=          (1  << 1);
       
    48     static final int MWM_DECOR_RESIZEH=         (1  << 2);
       
    49     static final int MWM_DECOR_TITLE  =         (1  << 3);
       
    50     static final int MWM_DECOR_MENU     =       (1  << 4);
       
    51     static final int MWM_DECOR_MINIMIZE=        (1  << 5);
       
    52     static final int MWM_DECOR_MAXIMIZE=        (1  << 6);
       
    53 
       
    54     // Input modes
       
    55     static final int MWM_INPUT_MODELESS                 =0;
       
    56     static final int MWM_INPUT_PRIMARY_APPLICATION_MODAL=1;
       
    57     static final int MWM_INPUT_SYSTEM_MODAL             =2;
       
    58     static final int MWM_INPUT_FULL_APPLICATION_MODAL   =3;
       
    59 
       
    60 /* number of elements of size 32 in _MWM_HINTS */
       
    61     static final int PROP_MWM_HINTS_ELEMENTS          = 5;
       
    62 /* number of elements of size 32 in _MWM_INFO */
       
    63     final static int PROP_MOTIF_WM_INFO_ELEMENTS=       2;
       
    64     final static int PROP_MWM_INFO_ELEMENTS=            PROP_MOTIF_WM_INFO_ELEMENTS;
       
    65 
       
    66     static final String MWM_HINTS_ATOM_NAME = "_MOTIF_WM_HINTS";
       
    67 }