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