jdk/src/solaris/classes/sun/awt/X11/XlibWrapper.java
author dav
Mon, 07 Apr 2008 16:52:51 +0400
changeset 439 3488710b02f8
parent 2 90ce3da70b43
child 1966 12a51fb0db0d
permissions -rw-r--r--
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern Summary: Access to interface's fiels via their name rather then implementation Reviewed-by: volk, son
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
     2
 * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.misc.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
    32
final public class XlibWrapper
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    static Unsafe unsafe = Unsafe.getUnsafe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    // strange constants
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    static final int MAXSIZE = 32767;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    static final int MINSIZE = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    // define a private constructor here to prevent this class and all
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    // its descendants from being created
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private XlibWrapper()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
   Display *XOpenDisplay(display_name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
   char *display_name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    public final static String eventToString[]=
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    {"<none:0>", "<none:1>", "KeyPress", "KeyRelease", "ButtonPress", "ButtonRelease",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     "MotionNotify", "EnterNotify", "LeaveNotify", "FocusIn", "FocusOut",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     "KeymapNotify", "Expose", "GraphicsExpose", "NoExpose", "VisibilityNotify",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     "CreateNotify", "DestroyNotify", "UnmapNotify", "MapNotify", "MapRequest",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     "ReparentNotify", "ConfigureNotify", "ConfigureRequest", "GravityNotify",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     "ResizeRequest", "CirculateNotify", "CirculateRequest", "PropertyNotify",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     "SelectionClear", "SelectionRequest", "SelectionNotify", "ColormapNotify",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     "ClientMessage", "MappingNotify", "LASTEvent"};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    static native void XFree(long ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    static native void memcpy(long dest_ptr, long src_ptr, long length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    static native long getAddress(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    static native void copyIntArray(long dest_ptr, Object array, int size_bytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    static native void copyLongArray(long dest_ptr, Object array, int size_bytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * Gets byte string from str_ptr and copies it into byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * String should be NULL terminated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    static native byte[] getStringBytes(long str_ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    static  native long XOpenDisplay(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    static  native void XCloseDisplay(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    static  native long XDisplayString(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    static  native void XSetCloseDownMode(long display, int close_mode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    static  native long DefaultScreen(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    static native long ScreenOfDisplay(long display, long screen_number);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    static native int DoesBackingStore(long screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    static native  long DisplayWidth(long display, long screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    static native  long DisplayWidthMM(long display, long screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    static native long DisplayHeight(long display, long screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    static native long DisplayHeightMM(long display, long screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    static  native long RootWindow(long display, long screen_number);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    static native int ScreenCount(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
   Window XCreateWindow(display, parent, x, y, width, height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
   border_width, depth,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
   class, visual, valuemask, attributes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
   Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
   Window parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
   int x, y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
   unsigned int width, height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
   unsigned int border_width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
   int depth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
   unsigned int class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
   Visual *visual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
   unsigned long valuemask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
   XSetWindowAttributes *attributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    static native long XCreateWindow(long display, long parent, int x,int  y, int width, int height, int border_width, int depth, long wclass, long visual, long valuemask, long attributes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    static native void XDestroyWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    static native int XGrabPointer(long display, long grab_window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                                   int owner_events, int event_mask, int pointer_mode,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                                   int keyboard_mode, long confine_to, long cursor, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    static native void XUngrabPointer(long display, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    static native int XGrabKeyboard(long display, long grab_window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                                    int owner_events, int pointer_mode,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                                    int keyboard_mode, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    static native void XUngrabKeyboard(long display, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    static native void XGrabServer(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    static native void XUngrabServer(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
void XSetWMProperties(display, w, window_name, icon_name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
argv, argc, normal_hints, wm_hints, class_hints)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
XTextProperty *window_name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
XTextProperty *icon_name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
char **argv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
int argc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
XSizeHints *normal_hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
XWMHints *wm_hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
XClassHint *class_hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
XMapWindow(display, w)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    static  native void XMapWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    static  native void XMapRaised(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    static  native void XRaiseWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    static native void XLowerWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    static native void XRestackWindows(long display, long windows, int length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    static native void XSetInputFocus(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    static native void XSetInputFocus2(long display, long window, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    static native long XGetInputFocus(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
XUnmapWindow(display, w)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    static  native void XUnmapWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
  XSelectInput(display, w, event_mask)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
  Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
  Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
  long event_mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    static  native void XSelectInput(long display, long window, long event_mask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
       XNextEvent(display, event_return)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
       Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
       XEvent *event_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    static  native void XNextEvent(long display,long ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     XMaskEvent(display, event_mask, event_return)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
           long event_mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
           XEvent *event_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    static native void XMaskEvent(long display, long event_mask, long event_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    static native void XWindowEvent(long display, long window, long event_mask, long event_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
      Bool XFilterEvent(event, w)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
           XEvent *event;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
           Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    static native boolean XFilterEvent(long ptr, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     Bool XSupportsLocale()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
static native boolean XSupportsLocale();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     char *XSetLocaleModifiers(modifier_list)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
           char *modifier_list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
static native String XSetLocaleModifiers(String modifier_list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    static  native int XTranslateCoordinates(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                                             long display, long src_w, long dest_w,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                                             long src_x, long src_y,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                                             long dest_x_return, long dest_y_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                                             long child_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
       XPeekEvent(display, event_return)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
       Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
       XEvent *event_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    static  native void XPeekEvent(long display,long ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
  XFlush(display)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
  Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    static native void XFlush(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
  XSync(display, discard)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
  Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
  Bool discard;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    static native void XSync(long display,int discard);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
/*    XMoveResizeWindow(display, w, x, y, width, height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
      Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
      Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
      int x, y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
      unsigned int width, height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    static native void XMoveResizeWindow(long display, long window, int x, int y, int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    static native void XResizeWindow(long display, long window, int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    static native void XMoveWindow(long display, long window, int x, int y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     Bool XQueryPointer(display, w, root_return, child_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     root_x_return, root_y_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                          win_x_return, win_y_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     mask_return)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
           Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
           Window *root_return, *child_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
           int *root_x_return, *root_y_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
           int *win_x_return, *win_y_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
           unsigned int *mask_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
 static native boolean  XQueryPointer (long display, long window, long root_return, long child_return, long root_x_return, long root_y_return, long win_x_return, long win_y_return, long mask_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
/*    XFreeCursor(display, cursor)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
           Cursor cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
 static native void XFreeCursor(long display, long cursor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
   XSetWindowBackground(display, w, background_pixel)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
   Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
   Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
   unsigned long background_pixel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    static native void XSetWindowBackground(long display, long window, long background_pixel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    static native int XEventsQueued(long display, int mode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
  Atom XInternAtom(display, atom_name, only_if_exists)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
  Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
  char *atom_name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
  Bool only_if_exists;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    static native int XInternAtoms(long display, String[] names, boolean only_if_exists, long atoms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    static native void SetProperty(long display, long window, long atom, String str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    static native String GetProperty(long display ,long window, long atom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    static native long InternAtom(long display, String string, int only_if_exists);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    static native int XGetWindowProperty(long display, long window, long atom,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                                         long long_offset, long long_length,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                                         long delete, long req_type, long actualy_type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                                         long actualy_format, long nitems_ptr,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                                         long bytes_after, long data_ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    native static void XChangePropertyImpl(long display, long window, long atom,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                                           long type, int format, int mode, long data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                                           int nelements);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    static void XChangeProperty(long display, long window, long atom,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                                long type, int format, int mode, long data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                                int nelements) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        // TODO: handling of XChangePropertyImpl return value, if not Success - don't cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        if (XPropertyCache.isCachingSupported() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            XToolkit.windowToXWindow(window) != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            WindowPropertyGetter.isCacheableProperty(XAtom.get(atom)) &&
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   323
            mode == XConstants.PropModeReplace)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            int length = (format / 8) * nelements;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            XPropertyCache.storeCache(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                new XPropertyCache.PropertyCacheEntry(format,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                                                      nelements,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                                                      0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                                                      data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                                                      length),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                XAtom.get(atom));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        XChangePropertyImpl(display, window, atom, type, format, mode, data, nelements);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    static native void XChangePropertyS(long display, long window, long atom,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                                       long type, int format, int mode, String value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    static native void XDeleteProperty(long display, long window, long atom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    static native void XSetTransientFor(long display, long window, long transient_for_window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    static native void XSetWMHints(long display, long window, long wmhints);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    static native void XGetWMHints(long display, long window, long wmhints);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    static native long XAllocWMHints();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    static native int XGetPointerMapping(long display, long map, int buttonNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    static native String XGetDefault(long display, String program, String option);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    static native long getScreenOfWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    static native long XScreenNumberOfScreen(long screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    static native int XIconifyWindow(long display, long window, long screenNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    static native String ServerVendor(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    static native int VendorRelease(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    static native void XBell(long display, int percent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
 /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
          Cursor XCreateFontCursor(display, shape)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
           unsigned int shape;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
           we always pass int as shape param.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
           perhaps later we will need to change type of shape to long.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    static native int XCreateFontCursor(long display, int shape);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     Pixmap XCreateBitmapFromData(display, d, data, width,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     height)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
           Drawable d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
           char *data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
           unsigned int width, height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    static native long XCreateBitmapFromData(long display, long drawable, long data, int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
 /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
      XFreePixmap(display, pixmap)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
           Pixmap pixmap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
   static native void XFreePixmap(long display, long pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
  /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     Cursor XCreatePixmapCursor(display, source, mask,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     foreground_color, background_color, x, y)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
           Pixmap source;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
           Pixmap mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
           XColor *foreground_color;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
           XColor *background_color;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
           unsigned int x, y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
   static native long XCreatePixmapCursor(long display, long source, long mask, long fore, long back, int x, int y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
         Status XQueryBestCursor(display, d, width, height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     width_return, height_return)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
           Drawable d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
           unsigned int width, height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
           unsigned int *width_return, *height_return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    static native boolean XQueryBestCursor(long display, long drawable, int width, int height, long width_return, long height_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     Status XAllocColor(display, colormap, screen_in_out)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
           Colormap colormap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
           XColor *screen_in_out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    static native boolean XAllocColor( long display, long colormap, long screen_in_out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    static native long SetToolkitErrorHandler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    static native void XSetErrorHandler(long handler);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    static native int CallErrorHandler(long handler, long display, long event_ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
 /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
      XChangeWindowAttributes(display, w, valuemask, attributes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
           Display *display;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
           Window w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
           unsigned long valuemask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
           XSetWindowAttributes *attributes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    static native void XChangeWindowAttributes(long display, long window, long valuemask, long attributes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    static native int XGetWindowAttributes(long display, long window, long attr_ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    static native int XGetGeometry(long display, long drawable, long root_return, long x_return, long y_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                                   long width_return, long height_return, long border_width_return, long depth_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    static native int XGetWMNormalHints(long display, long window, long hints, long supplied_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    static native void XSetWMNormalHints(long display, long window, long hints);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    static native void XSetMinMaxHints(long display, long window, int x, int y, int width, int height, long flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    static native long XAllocSizeHints();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    static native int XSendEvent(long display, long window, boolean propagate, long event_mask, long event);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    static native void XPutBackEvent(long display, long event);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    static native int XQueryTree(long display, long window, long root_return, long parent_return, long children_return, long nchildren_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    static native long XGetVisualInfo(long display, long vinfo_mask, long vinfo_template, long nitems_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    static native void XReparentWindow(long display, long window, long parent, int x, int y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
    static native void XConvertSelection(long display, long selection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
                                         long target, long property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                                         long requestor, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    static native void XSetSelectionOwner(long display, long selection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                                          long owner, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    static native long XGetSelectionOwner(long display, long selection);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    static native String XGetAtomName(long display, long atom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    static native long XMaxRequestSize(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    static native long XCreatePixmap(long display, long drawable, int width, int height, int depth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    static native long XCreateImage(long display, long visual_ptr, int depth, int format,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                                    int offset, long data, int width, int height, int bitmap_pad,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                                    int bytes_per_line);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    static native void XDestroyImage(long image);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    static native void XPutImage(long display, long drawable, long gc, long image,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                                 int src_x, int src_y, int dest_x, int dest_y,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                                 int width, int height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    static native long XCreateGC(long display, long drawable, long valuemask, long values);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    static native void XFreeGC(long display, long gc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    static native void XSetWindowBackgroundPixmap(long display, long window, long pixmap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    static native void XClearWindow(long display, long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    static native int XGetIconSizes(long display, long window, long ret_sizes, long ret_count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    static native int XdbeQueryExtension(long display, long major_version_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                                         long minor_version_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    static native boolean XQueryExtension(long display, String name, long mop_return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                                         long feve_return, long err_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    static native boolean IsKeypadKey(long keysym);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    static native long XdbeAllocateBackBufferName(long display, long window, int swap_action);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    static native int XdbeDeallocateBackBufferName(long display, long buffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    static native int XdbeBeginIdiom(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    static native int XdbeEndIdiom(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    static native int XdbeSwapBuffers(long display, long swap_info, int num_windows);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    static native long XKeycodeToKeysym(long display, int keycode, int index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    static native int XKeysymToKeycode(long display, long keysym);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    static native void XConvertCase(long keysym,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                                    long keysym_lowercase,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                                    long keysym_uppercase);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    static native long XGetModifierMapping(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    static native void XFreeModifiermap(long keymap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    static native void XChangeActivePointerGrab(long display, int mask,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                                                long cursor, long time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
      int (*XSynchronize(Display *display, Bool onoff))();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
          display   Specifies the connection to the X server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
          onoff     Specifies a Boolean value that indicates whether to enable or disable synchronization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    public static native int XSynchronize(long display, boolean onoff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * Extracts an X event that can be processed in a secondary loop.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * Should only be called on the toolkit thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * Returns false if this secondary event was terminated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    static native boolean XNextSecondaryLoopEvent(long display, long ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * Terminates the topmost secondary loop (if any).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * Should never be called on the toolkit thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    static native void ExitSecondaryLoop();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * Calls XTextPropertyToStringList on the specified byte array and returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * the array of strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    static native String[] XTextPropertyToStringList(byte[] bytes, long encoding_atom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * XSHAPE extension support.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    static native boolean XShapeQueryExtension(long display, long event_base_return, long error_base_return);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    static native void SetRectangularShape(long display, long window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            int lox, int loy, int hix, int hiy,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            sun.java2d.pipe.Region region);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
/* Global memory area used for X lib parameter passing */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    final static long lbuffer = unsafe.allocateMemory(64);  // array to hold 8 longs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    final static long ibuffer = unsafe.allocateMemory(32);  // array to hold 8 ints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    static final long larg1 = lbuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    static final long larg2 = larg1+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    static final long larg3 = larg2+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    static final long larg4 = larg3+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    static final long larg5 = larg4+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    static final long larg6 = larg5+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    static final long larg7 = larg6+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    static final long larg8 = larg7+8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    static final long iarg1 = ibuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    static final long iarg2 = iarg1+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
    static final long iarg3 = iarg2+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    static final long iarg4 = iarg3+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    static final long iarg5 = iarg4+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    static final long iarg6 = iarg5+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    static final long iarg7 = iarg6+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    static final long iarg8 = iarg7+4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    static int dataModel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    static final boolean isBuildInternal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        String dataModelProp = (String)AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            new PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                    public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                        return System.getProperty("sun.arch.data.model");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
            dataModel = Integer.parseInt(dataModelProp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            dataModel = 32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        isBuildInternal = getBuildInternal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
//      System.loadLibrary("mawt");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    static int getDataModel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        return dataModel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    static String hintsToString(long flags) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        StringBuffer buf = new StringBuffer();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   587
        if ((flags & XUtilConstants.PMaxSize) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            buf.append("PMaxSize ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   590
        if ((flags & XUtilConstants.PMinSize) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            buf.append("PMinSize ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   593
        if ((flags & XUtilConstants.USSize) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            buf.append("USSize ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   596
        if ((flags & XUtilConstants.USPosition) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
            buf.append("USPosition ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   599
        if ((flags & XUtilConstants.PPosition) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            buf.append("PPosition ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   602
        if ((flags & XUtilConstants.PSize) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            buf.append("PSize ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   605
        if ((flags & XUtilConstants.PWinGravity) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            buf.append("PWinGravity ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        return buf.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    private static boolean getBuildInternal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        String javaVersion = XToolkit.getSystemProperty("java.version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        return javaVersion != null && javaVersion.contains("internal");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
}