aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/javafx/newt/awt/AWTWindow.java
blob: 8badf6d4e37e4342bbc200fff26e2d9007e25140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
 * Copyright (c) 2008 Sun Microsystems, Inc. All Rights Reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 * 
 * - Redistribution of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 * 
 * - Redistribution in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in the
 *   documentation and/or other materials provided with the distribution.
 * 
 * Neither the name of Sun Microsystems, Inc. or the names of
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 * 
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
 * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
 * MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
 * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
 * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR
 * ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR
 * DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
 * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
 * ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
 * SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 * 
 */

package com.sun.javafx.newt.awt;

import java.awt.BorderLayout;
import java.awt.Canvas;
import java.awt.DisplayMode;
import java.awt.EventQueue;
import java.awt.Frame;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException;
import java.awt.event.*;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.*;
import com.sun.javafx.newt.Window;
import javax.media.nwi.NWCapabilities;
import javax.media.nwi.NativeWindowException;

/** An implementation of the Newt Window class built using the
    AWT. This is provided for convenience of porting to platforms
    supporting Java SE. */

public class AWTWindow extends Window {

    public AWTWindow() {
        super();
        title = "AWT NewtWindow";
    }

    private Frame frame;
    private Canvas canvas;
    private LinkedList/*<AWTEventWrapper>*/ events = new LinkedList();
    private boolean gotDisplaySize;
    private int displayWidth;
    private int displayHeight;

    public void setTitle(String title) {
        super.setTitle(title);
        if (frame != null) {
            frame.setTitle(title);
        }
    }

    protected void createNative(NWCapabilities caps) {
        chosenCaps = (NWCapabilities) caps.clone(); // FIXME: visualID := f1(caps); caps := f2(visualID)
        visualID = 0; // n/a
        runOnEDT(new Runnable() {
                public void run() {
                    frame = new Frame(getTitle());
                    frame.setUndecorated(isUndecorated());
                    frame.setLayout(new BorderLayout());
                    canvas = new Canvas();
                    Listener listener = new Listener();
                    canvas.addMouseListener(listener);
                    canvas.addMouseMotionListener(listener);
                    canvas.addKeyListener(listener);
                    canvas.addComponentListener(listener);
                    frame.add(canvas, BorderLayout.CENTER);
                    frame.setSize(width, height);
                    frame.setLocation(x, y);
                    frame.addComponentListener(new MoveListener());
                }
            });
    }

    protected void closeNative() {
        runOnEDT(new Runnable() {
                public void run() {
                    frame.dispose();
                    frame = null;
                }
            });
    }

    public int getDisplayWidth() {
        getDisplaySize();
        return displayWidth;
    }

    public int getDisplayHeight() {
        getDisplaySize();
        return displayHeight;
    }

    private void getDisplaySize() {
        if (!gotDisplaySize) {
            DisplayMode mode =
                GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDisplayMode();
            displayWidth = mode.getWidth();
            displayHeight = mode.getHeight();
            gotDisplaySize = true;
        }
    }

    public void setVisible(final boolean visible) {
        runOnEDT(new Runnable() {
                public void run() {
                    frame.setVisible(visible);
                }
            });
    }

    public void setSize(final int width, final int height) {
        this.width = width;
        this.height = height;
        runOnEDT(new Runnable() {
                public void run() {
                    frame.setSize(width, height);
                }
            });
    }

    public void setPosition(final int x, final int y) {
        this.x = x;
        this.y = y;
        runOnEDT(new Runnable() {
                public void run() {
                    frame.setLocation(x, y);
                }
            });
    }

    public boolean setFullscreen(boolean fullscreen) {
        // Ignore for now
        return false;
    }

    public Object getWrappedWindow() {
        return canvas;
    }

    public void dispatchMessages(int eventMask) {
        AWTEventWrapper w;
        do {
            synchronized(this) {
                if (!events.isEmpty()) {
                    w = (AWTEventWrapper) events.removeFirst();
                } else {
                    w = null;
                }
            }
            if (w != null) {
                switch (w.getType()) {
                    case com.sun.javafx.newt.WindowEvent.EVENT_WINDOW_RESIZED:
                    case com.sun.javafx.newt.WindowEvent.EVENT_WINDOW_MOVED:
                        if ((eventMask & com.sun.javafx.newt.EventListener.WINDOW) != 0) {
                            sendWindowEvent(w.getType());
                        }
                        break;

                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_CLICKED:
                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_ENTERED:
                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_EXITED:
                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_PRESSED:
                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_RELEASED:
                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_MOVED:
                    case com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_DRAGGED:
                        if ((eventMask & com.sun.javafx.newt.EventListener.MOUSE) != 0) {
                            MouseEvent e = (MouseEvent) w.getEvent();
                            sendMouseEvent(w.getType(), convertModifiers(e),
                                           e.getX(), e.getY(), convertButton(e));
                        }
                        break;

                    case com.sun.javafx.newt.KeyEvent.EVENT_KEY_PRESSED:
                    case com.sun.javafx.newt.KeyEvent.EVENT_KEY_RELEASED:
                    case com.sun.javafx.newt.KeyEvent.EVENT_KEY_TYPED:
                        if ((eventMask & com.sun.javafx.newt.EventListener.KEY) != 0) {
                            KeyEvent e = (KeyEvent) w.getEvent();
                            sendKeyEvent(w.getType(), convertModifiers(e),
                                         e.getKeyCode(), e.getKeyChar());
                        }
                        break;

                    default:
                        throw new NativeWindowException("Unknown event type " + w.getType());
                }
                if(DEBUG_MOUSE_EVENT) {
                    System.out.println("dispatchMessages: in event:"+w.getEvent());
                }
            }
        } while (w != null);
    }

    private static int convertModifiers(InputEvent e) {
        int newtMods = 0;
        int mods = e.getModifiers();
        if ((mods & InputEvent.SHIFT_MASK) != 0)     newtMods |= com.sun.javafx.newt.InputEvent.SHIFT_MASK;
        if ((mods & InputEvent.CTRL_MASK) != 0)      newtMods |= com.sun.javafx.newt.InputEvent.CTRL_MASK;
        if ((mods & InputEvent.META_MASK) != 0)      newtMods |= com.sun.javafx.newt.InputEvent.META_MASK;
        if ((mods & InputEvent.ALT_MASK) != 0)       newtMods |= com.sun.javafx.newt.InputEvent.ALT_MASK;
        if ((mods & InputEvent.ALT_GRAPH_MASK) != 0) newtMods |= com.sun.javafx.newt.InputEvent.ALT_GRAPH_MASK;
        return newtMods;
    }

    private static int convertButton(MouseEvent e) {
        switch (e.getButton()) {
            case MouseEvent.BUTTON1: return com.sun.javafx.newt.MouseEvent.BUTTON1;
            case MouseEvent.BUTTON2: return com.sun.javafx.newt.MouseEvent.BUTTON2;
            case MouseEvent.BUTTON3: return com.sun.javafx.newt.MouseEvent.BUTTON3;
        }
        return 0;
    }

    private static void runOnEDT(Runnable r) {
        if (EventQueue.isDispatchThread()) {
            r.run();
        } else {
            try {
                EventQueue.invokeAndWait(r);
            } catch (Exception e) {
                throw new NativeWindowException(e);
            }
        }
    }

    private void enqueueEvent(int type, InputEvent e) {
        AWTEventWrapper wrapper = new AWTEventWrapper(type, e);
        synchronized(this) {
            events.add(wrapper);
        }
    }

    private static final int WINDOW_EVENT = 1;
    private static final int KEY_EVENT = 2;
    private static final int MOUSE_EVENT = 3;

    static class AWTEventWrapper {
        int type;
        InputEvent e;

        AWTEventWrapper(int type, InputEvent e) {
            this.type = type;
            this.e = e;
        }

        public int getType() {
            return type;
        }

        public InputEvent getEvent() {
            return e;
        }
    }

    class MoveListener implements ComponentListener {
        public void componentResized(ComponentEvent e) {
        }

        public void componentMoved(ComponentEvent e) {
            x = frame.getX();
            y = frame.getY();
            enqueueEvent(com.sun.javafx.newt.WindowEvent.EVENT_WINDOW_MOVED, null);
        }

        public void componentShown(ComponentEvent e) {
        }

        public void componentHidden(ComponentEvent e) {
        }

    }

    class Listener implements ComponentListener, MouseListener, MouseMotionListener, KeyListener {
        public void componentResized(ComponentEvent e) {
            width = canvas.getWidth();
            height = canvas.getHeight();
            enqueueEvent(com.sun.javafx.newt.WindowEvent.EVENT_WINDOW_RESIZED, null);
        }

        public void componentMoved(ComponentEvent e) {
        }

        public void componentShown(ComponentEvent e) {
        }

        public void componentHidden(ComponentEvent e) {
        }

        public void mouseClicked(MouseEvent e) {
            // We ignore these as we synthesize them ourselves out of
            // mouse pressed and released events
        }

        public void mouseEntered(MouseEvent e) {
            enqueueEvent(com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_ENTERED, e);
        }

        public void mouseExited(MouseEvent e) {
            enqueueEvent(com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_EXITED, e);
        }

        public void mousePressed(MouseEvent e) {
            enqueueEvent(com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_PRESSED, e);
        }

        public void mouseReleased(MouseEvent e) {
            enqueueEvent(com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_RELEASED, e);
        }

        public void mouseMoved(MouseEvent e) {
            enqueueEvent(com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_MOVED, e);
        }

        public void mouseDragged(MouseEvent e) {
            enqueueEvent(com.sun.javafx.newt.MouseEvent.EVENT_MOUSE_DRAGGED, e);
        }

        public void keyPressed(KeyEvent e) {
            enqueueEvent(com.sun.javafx.newt.KeyEvent.EVENT_KEY_PRESSED, e);
        }

        public void keyReleased(KeyEvent e) {
            enqueueEvent(com.sun.javafx.newt.KeyEvent.EVENT_KEY_RELEASED, e);
        }

        public void keyTyped(KeyEvent e)  {
            enqueueEvent(com.sun.javafx.newt.KeyEvent.EVENT_KEY_TYPED, e);
        }
    }
}