Codebase list lwjgl / upstream/2.5+dfsg src / java / org / lwjgl / opengl / WindowsDisplay.java
upstream/2.5+dfsg

Tree @upstream/2.5+dfsg (Download .tar.gz)

WindowsDisplay.java @upstream/2.5+dfsgraw · history · blame

  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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
/*
 * Copyright (c) 2002-2008 LWJGL Project
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 * * Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 *
 * * Redistributions 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 'LWJGL' nor the names of
 *   its contributors may be used to endorse or promote products derived
 *   from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.lwjgl.opengl;

/**
 * This is the Display implementation interface. Display delegates
 * to implementors of this interface. There is one DisplayImplementation
 * for each supported platform.
 * @author elias_naur
 */

import java.nio.ByteBuffer;
import java.nio.FloatBuffer;
import java.nio.IntBuffer;
import java.awt.Canvas;

import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil;
import org.lwjgl.BufferUtils;
import org.lwjgl.input.Cursor;
import org.lwjgl.input.Keyboard;
import org.lwjgl.input.Mouse;

final class WindowsDisplay implements DisplayImplementation {
	private final static int GAMMA_LENGTH = 256;
	
	private final static int WM_CANCELMODE                    = 0x001F;
	private final static int WM_MOUSEMOVE                     = 0x0200;
	private final static int WM_LBUTTONDOWN                   = 0x0201;
	private final static int WM_LBUTTONUP                     = 0x0202;
	private final static int WM_LBUTTONDBLCLK                 = 0x0203;
	private final static int WM_RBUTTONDOWN                   = 0x0204;
	private final static int WM_RBUTTONUP                     = 0x0205;
	private final static int WM_RBUTTONDBLCLK                 = 0x0206;
	private final static int WM_MBUTTONDOWN                   = 0x0207;
	private final static int WM_MBUTTONUP                     = 0x0208;
	private final static int WM_MBUTTONDBLCLK                 = 0x0209;
	private final static int WM_MOUSEWHEEL                    = 0x020A;
	private final static int WM_CAPTURECHANGED                = 0x0215;
        private final static int WM_MOUSELEAVE                    = 0x02A3;
	private final static int WM_KEYDOWN						  = 256;
	private final static int WM_KEYUP						  = 257;
	private final static int WM_SYSKEYUP					  = 261;
	private final static int WM_SYSKEYDOWN					  = 260;
	private final static int WM_SYSCHAR                          = 262;
	private final static int WM_CHAR                          = 258;
	private final static int WM_SETICON						  = 0x0080;

	private final static int WM_QUIT						  = 0x0012;
	private final static int WM_SYSCOMMAND					  = 0x0112;
	private final static int WM_PAINT 						  = 0x000F;
	private final static int WM_KILLFOCUS                     = 8;
	private final static int WM_SETFOCUS                      = 7;

	private final static int SC_SIZE          = 0xF000;
	private final static int SC_MOVE          = 0xF010;
	private final static int SC_MINIMIZE      = 0xF020;
	private final static int SC_MAXIMIZE      = 0xF030;
	private final static int SC_NEXTWINDOW    = 0xF040;
	private final static int SC_PREVWINDOW    = 0xF050;
	private final static int SC_CLOSE         = 0xF060;
	private final static int SC_VSCROLL       = 0xF070;
	private final static int SC_HSCROLL       = 0xF080;
	private final static int SC_MOUSEMENU     = 0xF090;
	private final static int SC_KEYMENU       = 0xF100;
	private final static int SC_ARRANGE       = 0xF110;
	private final static int SC_RESTORE       = 0xF120;
	private final static int SC_TASKLIST      = 0xF130;
	private final static int SC_SCREENSAVE    = 0xF140;
	private final static int SC_HOTKEY        = 0xF150;
	private final static int SC_DEFAULT       = 0xF160;
	private final static int SC_MONITORPOWER  = 0xF170;
	private final static int SC_CONTEXTHELP   = 0xF180;
	private final static int SC_SEPARATOR     = 0xF00F;

	final static int SM_CXCURSOR      = 13;
	final static int SM_CYCURSOR      = 14;
	final static int SM_CMOUSEBUTTONS      = 43;
	final static int SM_MOUSEWHEELPRESENT = 75;

	private final static int SIZE_RESTORED        = 0;
	private final static int SIZE_MINIMIZED       = 1;
	private final static int SIZE_MAXIMIZED       = 2;
	private final static int WM_SIZE          = 0x0005;
	private final static int WM_ACTIVATE          = 0x0006;
	private final static int     WA_INACTIVE      = 0;
	private final static int     WA_ACTIVE        = 1;
	private final static int     WA_CLICKACTIVE   = 2;
	private final static int SW_SHOWMINNOACTIVE   = 7;
	private final static int SW_SHOWDEFAULT       = 10;
	private final static int SW_RESTORE           = 9;

	private final static int ICON_SMALL           = 0;
	private final static int ICON_BIG           = 1;

	private final static IntBuffer rect_buffer = BufferUtils.createIntBuffer(4);
	private final static Rect rect = new Rect();
	private final static Rect rect2 = new Rect();
	private static WindowsDisplay current_display;

	private static boolean cursor_clipped;
	private WindowsDisplayPeerInfo peer_info;
	private Object current_cursor;
	private Canvas parent;
	private static boolean hasParent = false;

	private WindowsKeyboard keyboard;
	private WindowsMouse mouse;

	private boolean close_requested;
	private boolean is_dirty;

	private ByteBuffer current_gamma;
	private ByteBuffer saved_gamma;
	private DisplayMode current_mode;

	private boolean mode_set;
	private boolean isMinimized;
	private boolean isFocused;
	private boolean did_maximize;
	private boolean inAppActivate;

	private long hwnd;
	private long hdc;

	private long small_icon;
	private long large_icon;

	private int captureMouse = -1;
        private boolean trackingMouse = false;
        private boolean mouseInside = false;

	WindowsDisplay() {
		current_display = this;
	}

	public void createWindow(DisplayMode mode, Canvas parent, int x, int y) throws LWJGLException {
		close_requested = false;
		is_dirty = false;
		isMinimized = false;
		isFocused = false;
		did_maximize = false;
		this.parent = parent;
		hasParent = parent != null;
		long parent_hwnd = parent != null ? getHwnd(parent) : 0;
		this.hwnd = nCreateWindow(x, y, mode.getWidth(), mode.getHeight(), Display.isFullscreen() || isUndecorated(), parent != null, parent_hwnd);
		if (hwnd == 0) {
			throw new LWJGLException("Failed to create window");
		}
		this.hdc = getDC(hwnd);
		if (hdc == 0) {
			nDestroyWindow(hwnd);
			throw new LWJGLException("Failed to get dc");
		}
		try {
			int format = WindowsPeerInfo.choosePixelFormat(getHdc(), 0, 0, peer_info.getPixelFormat(), null, true, true, false, true);
			WindowsPeerInfo.setPixelFormat(getHdc(), format);
			peer_info.initDC(getHwnd(), getHdc());
			showWindow(getHwnd(), SW_SHOWDEFAULT);
			if (parent == null) {
				setForegroundWindow(getHwnd());
				setFocus(getHwnd());
			}
		} catch (LWJGLException e) {
			nReleaseDC(hwnd, hdc);
			nDestroyWindow(hwnd);
			throw e;
		}
	}
	private static native long nCreateWindow(int x, int y, int width, int height, boolean undecorated, boolean child_window, long parent_hwnd) throws LWJGLException;

	private static boolean isUndecorated() {
		return Display.getPrivilegedBoolean("org.lwjgl.opengl.Window.undecorated");
	}

	private static long getHwnd(Canvas parent) throws LWJGLException {
		AWTCanvasImplementation awt_impl = AWTGLCanvas.createImplementation();
		WindowsPeerInfo parent_peer_info = (WindowsPeerInfo)awt_impl.createPeerInfo(parent, null);
		ByteBuffer parent_peer_info_handle = parent_peer_info.lockAndGetHandle();
		try {
			return parent_peer_info.getHwnd();
		} finally {
			parent_peer_info.unlock();
		}
	}

	public void destroyWindow() {
		nReleaseDC(hwnd, hdc);
		nDestroyWindow(hwnd);
		freeLargeIcon();
		freeSmallIcon();
		resetCursorClipping();
	}
	private static native void nReleaseDC(long hwnd, long hdc);
	private static native void nDestroyWindow(long hwnd);
	static void resetCursorClipping() {
		if (cursor_clipped) {
			try {
				clipCursor(null);
			} catch (LWJGLException e) {
				LWJGLUtil.log("Failed to reset cursor clipping: " + e);
			}
			cursor_clipped = false;
		}
	}

	private static void getGlobalClientRect(long hwnd, Rect rect) {
		rect_buffer.put(0, 0).put(1, 0);
		clientToScreen(hwnd, rect_buffer);
		int offset_x = rect_buffer.get(0);
		int offset_y = rect_buffer.get(1);
		getClientRect(hwnd, rect_buffer);
		rect.copyFromBuffer(rect_buffer);
		rect.offset(offset_x, offset_y);
	}

	static void setupCursorClipping(long hwnd) throws LWJGLException {
		cursor_clipped = true;
		getGlobalClientRect(hwnd, rect);
		rect.copyToBuffer(rect_buffer);
		clipCursor(rect_buffer);
	}
	private static native void clipCursor(IntBuffer rect) throws LWJGLException;

	public void switchDisplayMode(DisplayMode mode) throws LWJGLException {
		nSwitchDisplayMode(mode);
		current_mode = mode;
		mode_set = true;
	}
	private static native void nSwitchDisplayMode(DisplayMode mode) throws LWJGLException;

	/*
	 * Called when the application is alt-tabbed to or from
	 */
	private void appActivate(boolean active) {
		if (inAppActivate) {
			return;
		}
		inAppActivate = true;
		isFocused = active;
		if (active) {
			if (Display.isFullscreen()) {
				restoreDisplayMode();
			}
			if (parent == null) {
				showWindow(getHwnd(), SW_RESTORE);
				setForegroundWindow(getHwnd());
				setFocus(getHwnd());
			}
			did_maximize = true;
			if (Display.isFullscreen())
				updateClipping();
		} else if (Display.isFullscreen()) {
			showWindow(getHwnd(), SW_SHOWMINNOACTIVE);
			resetDisplayMode();
		} else
			updateClipping();
		updateCursor();
		inAppActivate = false;
	}
	private static native void showWindow(long hwnd, int mode);
	private static native void setForegroundWindow(long hwnd);
	private static native void setFocus(long hwnd);

	private void restoreDisplayMode() {
		try {
			doSetGammaRamp(current_gamma);
		} catch (LWJGLException e) {
			LWJGLUtil.log("Failed to restore gamma: " + e.getMessage());
		}

		if (!mode_set) {
			mode_set = true;
			try {
				nSwitchDisplayMode(current_mode);
			} catch (LWJGLException e) {
				LWJGLUtil.log("Failed to restore display mode: " + e.getMessage());
			}
		}
	}

	public void resetDisplayMode() {
		try {
			doSetGammaRamp(saved_gamma);
		} catch (LWJGLException e) {
			LWJGLUtil.log("Failed to reset gamma ramp: " + e.getMessage());
		}
		current_gamma = saved_gamma;
		if (mode_set) {
			mode_set = false;
			nResetDisplayMode();
		}
		resetCursorClipping();
	}
	private static native void nResetDisplayMode();

	public int getGammaRampLength() {
		return GAMMA_LENGTH;
	}

	public void setGammaRamp(FloatBuffer gammaRamp) throws LWJGLException {
		doSetGammaRamp(convertToNativeRamp(gammaRamp));
	}
	private static native ByteBuffer convertToNativeRamp(FloatBuffer gamma_ramp) throws LWJGLException;
	private static native ByteBuffer getCurrentGammaRamp() throws LWJGLException;

	private void doSetGammaRamp(ByteBuffer native_gamma) throws LWJGLException {
		nSetGammaRamp(native_gamma);
		current_gamma = native_gamma;
	}
	private static native void nSetGammaRamp(ByteBuffer native_ramp) throws LWJGLException;

	public String getAdapter() {
		try {
			String maxObjNo = WindowsRegistry.queryRegistrationKey(
					WindowsRegistry.HKEY_LOCAL_MACHINE,
					"HARDWARE\\DeviceMap\\Video",
					"MaxObjectNumber");
			int maxObjectNumber = maxObjNo.charAt(0);
			String vga_driver_value = "";
			for(int i=0;i<maxObjectNumber;i++) {
				String adapter_string = WindowsRegistry.queryRegistrationKey(
						WindowsRegistry.HKEY_LOCAL_MACHINE,
						"HARDWARE\\DeviceMap\\Video",
						"\\Device\\Video" + i);
				String root_key = "\\registry\\machine\\";
				if (adapter_string.toLowerCase().startsWith(root_key)) {
					String driver_value = WindowsRegistry.queryRegistrationKey(
							WindowsRegistry.HKEY_LOCAL_MACHINE,
							adapter_string.substring(root_key.length()),
							"InstalledDisplayDrivers");
					if(driver_value.toUpperCase().startsWith("VGA")) {
						vga_driver_value = driver_value;
					} else if(!driver_value.toUpperCase().startsWith("RDP") && !driver_value.toUpperCase().startsWith("NMNDD")) {
						return driver_value;
					}
				}
			}
			if(!vga_driver_value.equals("")) {
				return vga_driver_value;
			}
		} catch (LWJGLException e) {
			LWJGLUtil.log("Exception occurred while querying registry: " + e);
		}
		return null;
	}

	public String getVersion() {
		String driver = getAdapter();
		if (driver != null) {
			String[] drivers = driver.split(",");
			if(drivers.length>0) {				
				WindowsFileVersion version = nGetVersion(drivers[0] + ".dll");
				if (version != null)
					return version.toString();
			}
		}
		return null;
	}
	private native WindowsFileVersion nGetVersion(String driver);

	public DisplayMode init() throws LWJGLException {
		current_gamma = saved_gamma = getCurrentGammaRamp();
		return current_mode = getCurrentDisplayMode();
	}
	private static native DisplayMode getCurrentDisplayMode() throws LWJGLException;

	public void setTitle(String title) {
		nSetTitle(hwnd, title);
	}
	private static native void nSetTitle(long hwnd, String title);

	public boolean isCloseRequested() {
		boolean saved = close_requested;
		close_requested = false;
		return saved;
	}

	public boolean isVisible() {
		return !isMinimized;
	}

	public boolean isActive() {
		return isFocused;
	}

	public boolean isDirty() {
		boolean saved = is_dirty;
		is_dirty = false;
		return saved;
	}

	public PeerInfo createPeerInfo(PixelFormat pixel_format) throws LWJGLException {
		peer_info = new WindowsDisplayPeerInfo(pixel_format);
		return peer_info;
	}

	public void update() {
		nUpdate();
		if (parent != null && parent.isFocusOwner()) {
			setFocus(getHwnd());
		}
		if (did_maximize) {
			did_maximize = false;
			/**
			 * WORKAROUND:
			 * Making the context current (redundantly) when the window
			 * is maximized helps some gfx cards recover from fullscreen
			 */
			try {
				Context context = ((DrawableLWJGL)Display.getDrawable()).getContext();
				if (context != null && context.isCurrent())
					context.makeCurrent();
			} catch (LWJGLException e) {
				LWJGLUtil.log("Exception occurred while trying to make context current: " + e);
			}
		}
	}
	private static native void nUpdate();

	public void reshape(int x, int y, int width, int height) {
		nReshape(getHwnd(), x, y, width, height, Display.isFullscreen() || isUndecorated(), parent != null);
	}
	private static native void nReshape(long hwnd, int x, int y, int width, int height, boolean undecorated, boolean child);
	public native DisplayMode[] getAvailableDisplayModes() throws LWJGLException;

	/* Mouse */
	public boolean hasWheel() {
		return mouse.hasWheel();
	}

	public int getButtonCount() {
		return mouse.getButtonCount();
	}

	public void createMouse() throws LWJGLException {
		mouse = new WindowsMouse(getHwnd());
	}

	public void destroyMouse() {
		if (mouse != null)
			mouse.destroy();
		mouse = null;
	}

	public void pollMouse(IntBuffer coord_buffer, ByteBuffer buttons) {
		mouse.poll(coord_buffer, buttons);
	}

	public void readMouse(ByteBuffer buffer) {
		mouse.read(buffer);
	}

	public void grabMouse(boolean grab) {
		mouse.grab(grab, shouldGrab());
		updateCursor();
	}

	public int getNativeCursorCapabilities() {
		return Cursor.CURSOR_ONE_BIT_TRANSPARENCY;
	}

	public void setCursorPosition(int x, int y) {
		getGlobalClientRect(getHwnd(), rect);
		int transformed_x = rect.left + x;
		int transformed_y = rect.bottom - 1 - y;
		nSetCursorPosition(transformed_x, transformed_y);
		setMousePosition(x, y);
	}
	private static native void nSetCursorPosition(int x, int y);

	public void setNativeCursor(Object handle) throws LWJGLException {
		current_cursor = handle;
		updateCursor();
	}

	private void updateCursor() {
		try {
			if (mouse != null && shouldGrab())
				nSetNativeCursor(getHwnd(), mouse.getBlankCursor());
			else
				nSetNativeCursor(getHwnd(), current_cursor);
		} catch (LWJGLException e) {
			LWJGLUtil.log("Failed to update cursor: " + e);
		}
	}
	static native void nSetNativeCursor(long hwnd, Object handle) throws LWJGLException;

	public int getMinCursorSize() {
		return getSystemMetrics(SM_CXCURSOR);
	}

	public int getMaxCursorSize() {
		return getSystemMetrics(SM_CXCURSOR);
	}

	static native int getSystemMetrics(int index);

	private static native long getDllInstance();

	private long getHwnd() {
		return hwnd;
	}

	private long getHdc() {
		return hdc;
	}

	private static native long getDC(long hwnd);
	private static native long getDesktopWindow();
	private static native long getForegroundWindow();

	static void centerCursor(long hwnd) {
		if (getForegroundWindow() != hwnd && !hasParent)
			return;
		getGlobalClientRect(hwnd, rect);
		int local_offset_x = rect.left;
		int local_offset_y = rect.top;
		/* -- This is wrong on multi-monitor setups
		getGlobalClientRect(getDesktopWindow(), rect2);
		Rect.intersect(rect, rect2, rect);
		*/
		int center_x = (rect.left + rect.right)/2;
		int center_y = (rect.top + rect.bottom)/2;
		nSetCursorPosition(center_x, center_y);
		int local_x = center_x - local_offset_x;
		int local_y = center_y - local_offset_y;
		if (current_display != null)
			current_display.setMousePosition(local_x, transformY(hwnd, local_y));
	}

	private void setMousePosition(int x, int y) {
		if (mouse != null)
			mouse.setPosition(x, y);
	}

	/* Keyboard */
	public void createKeyboard() throws LWJGLException {
		keyboard = new WindowsKeyboard(getHwnd());
	}

	public void destroyKeyboard() {
		keyboard.destroy();
		keyboard = null;
	}

	public void pollKeyboard(ByteBuffer keyDownBuffer) {
		keyboard.poll(keyDownBuffer);
	}

	public void readKeyboard(ByteBuffer buffer) {
		keyboard.read(buffer);
	}

//	public native int isStateKeySet(int key);

	public static native ByteBuffer nCreateCursor(int width, int height, int xHotspot, int yHotspot, int numImages, IntBuffer images, int images_offset, IntBuffer delays, int delays_offset) throws LWJGLException;

	public Object createCursor(int width, int height, int xHotspot, int yHotspot, int numImages, IntBuffer images, IntBuffer delays) throws LWJGLException {
		return doCreateCursor(width, height, xHotspot, yHotspot, numImages, images, delays);
	}

	static Object doCreateCursor(int width, int height, int xHotspot, int yHotspot, int numImages, IntBuffer images, IntBuffer delays) throws LWJGLException {
		return nCreateCursor(width, height, xHotspot, yHotspot, numImages, images, images.position(), delays, delays != null ? delays.position() : -1);
	}

	public void destroyCursor(Object cursorHandle) {
		doDestroyCursor(cursorHandle);
	}
	static native void doDestroyCursor(Object cursorHandle);

	public int getPbufferCapabilities() {
		try {
		// Return the capabilities of a minimum pixel format
			return nGetPbufferCapabilities(new PixelFormat(0, 0, 0, 0, 0, 0, 0, 0, false));
		} catch (LWJGLException e) {
			LWJGLUtil.log("Exception occurred while determining pbuffer capabilities: " + e);
			return 0;
		}
	}
	private native int nGetPbufferCapabilities(PixelFormat format) throws LWJGLException;

	public boolean isBufferLost(PeerInfo handle) {
		return ((WindowsPbufferPeerInfo)handle).isBufferLost();
	}

	public PeerInfo createPbuffer(int width, int height, PixelFormat pixel_format,
			IntBuffer pixelFormatCaps,
			IntBuffer pBufferAttribs) throws LWJGLException {
		return new WindowsPbufferPeerInfo(width, height, pixel_format, pixelFormatCaps, pBufferAttribs);
	}

	public void setPbufferAttrib(PeerInfo handle, int attrib, int value) {
		((WindowsPbufferPeerInfo)handle).setPbufferAttrib(attrib, value);
	}

	public void bindTexImageToPbuffer(PeerInfo handle, int buffer) {
		((WindowsPbufferPeerInfo)handle).bindTexImageToPbuffer(buffer);
	}

	public void releaseTexImageFromPbuffer(PeerInfo handle, int buffer) {
		((WindowsPbufferPeerInfo)handle).releaseTexImageFromPbuffer(buffer);
	}

	private void freeSmallIcon() {
		if (small_icon != 0) {
			destroyIcon(small_icon);
			small_icon = 0;
		}
	}

	private void freeLargeIcon() {
		if (large_icon != 0) {
			destroyIcon(large_icon);
			large_icon = 0;
		}
	}

	/**
	 * Sets one or more icons for the Display.
	 * <ul>
	 * <li>On Windows you should supply at least one 16x16 icon and one 32x32.</li>
	 * <li>Linux (and similar platforms) expect one 32x32 icon.</li>
	 * <li>Mac OS X should be supplied one 128x128 icon</li>
	 * </ul>
	 * The implementation will use the supplied ByteBuffers with image data in RGBA and perform any conversions nescesarry for the specific platform.
	 *
	 * @param icons Array of icons in RGBA mode
	 * @return number of icons used.
	 */
	public int setIcon(ByteBuffer[] icons) {
		boolean done_small = false;
		boolean done_large = false;
		int used = 0;

		int small_icon_size = 16;
		int large_icon_size = 32;
		for (int i=0;i<icons.length;i++) {
			int size = icons[i].limit() / 4;

			if ((((int) Math.sqrt(size)) == small_icon_size) && (!done_small)) {
				freeSmallIcon();
				small_icon = createIcon(small_icon_size, small_icon_size, icons[i].asIntBuffer());
				sendMessage(hwnd, WM_SETICON, ICON_SMALL, small_icon);
				used++;
				done_small = true;
			}
			if ((((int) Math.sqrt(size)) == large_icon_size) && (!done_large)) {
				freeLargeIcon();
				large_icon = createIcon(large_icon_size, large_icon_size, icons[i].asIntBuffer());
				sendMessage(hwnd, WM_SETICON, ICON_BIG, large_icon);
				used++;
				done_large = true;
			}
		}

		return used;
	}
	private static native long createIcon(int width, int height, IntBuffer icon);
	private static native void destroyIcon(long handle);
	private static native long sendMessage(long hwnd, long msg, long wparam, long lparam);

	private void handleMouseButton(int button, int state, long millis) {
		if (mouse != null) {
			mouse.handleMouseButton((byte)button, (byte)state, millis);
			
			// need to capture?
			if (captureMouse == -1 && button != -1 && state == 1) {
				captureMouse = button;
				nSetCapture(hwnd);
			}
			
			// done with capture?
			if(captureMouse != -1 && button == captureMouse && state == 0) {
				captureMouse = -1;
				nReleaseCapture();
			}
		}
		
		if (parent != null && !isFocused) {
			setFocus(getHwnd());
		}
	}

	private boolean shouldGrab() {
		return !isMinimized && isFocused && Mouse.isGrabbed();
	}

	private void handleMouseMoved(int x, int y, long millis) {
		if (mouse != null) {
			mouse.handleMouseMoved(x, y, millis, shouldGrab());
		}
	}
	
	private static native long nSetCapture(long hwnd);
	private static native boolean nReleaseCapture();
	
	private void handleMouseScrolled(int amount, long millis) {
		if (mouse != null)
			mouse.handleMouseScrolled(amount, millis);
	}

	private static native void getClientRect(long hwnd, IntBuffer rect);

	private void handleChar(long wParam, long lParam, long millis) {
		byte previous_state = (byte)((lParam >>> 30) & 0x1);
		byte state = (byte)(1 - ((lParam >>> 31) & 0x1));
		boolean repeat = state == previous_state;
		if (keyboard != null)
			keyboard.handleChar((int)(wParam & 0xFF), millis, repeat);
	}

	private void handleKeyButton(long wParam, long lParam, long millis) {
		byte previous_state = (byte)((lParam >>> 30) & 0x1);
		byte state = (byte)(1 - ((lParam >>> 31) & 0x1));
		boolean repeat = state == previous_state; // Repeat message
		byte extended = (byte)((lParam >>> 24) & 0x1);
		int scan_code = (int)((lParam >>> 16) & 0xFF);
		if (keyboard != null) {
			keyboard.handleKey((int)wParam, scan_code, extended != 0, state, millis, repeat);
			
			if(captureMouse != -1 && keyboard.isKeyDown(Keyboard.KEY_ESCAPE)) {
				nReleaseCapture();
				captureMouse = -1;
			}
		}
	}

	private static int transformY(long hwnd, int y) {
		getClientRect(hwnd, rect_buffer);
		rect.copyFromBuffer(rect_buffer);
		return (rect.bottom - rect.top) - 1 - y;
	}

	private static native void clientToScreen(long hwnd, IntBuffer point);

	private static int handleMessage(long hwnd, int msg, long wParam, long lParam, long millis) {
		if (current_display != null)
			return current_display.doHandleMessage(hwnd, msg, wParam, lParam, millis);
		else
			return defWindowProc(hwnd, msg, wParam, lParam);
	}

	private static native int defWindowProc(long hwnd, int msg, long wParam, long lParam);

	private void checkCursorState() {
		updateClipping();
	}

	private void updateClipping() {
		if ((Display.isFullscreen() || (mouse != null && mouse.isGrabbed())) && !isMinimized && isFocused && (getForegroundWindow() == getHwnd() || hasParent)) {
			try {
				setupCursorClipping(getHwnd());
			} catch (LWJGLException e) {
				LWJGLUtil.log("setupCursorClipping failed: " + e.getMessage());
			}
		} else {
			resetCursorClipping();
		}
	}

	private void setMinimized(boolean m) {
		isMinimized = m;
		checkCursorState();
	}

	private int doHandleMessage(long hwnd, int msg, long wParam, long lParam, long millis) {
		switch (msg) {
			// disable screen saver and monitor power down messages which wreak havoc
			case WM_ACTIVATE:
				switch ((int)wParam) {
					case WA_ACTIVE:
					case WA_CLICKACTIVE:
						appActivate(true);
						break;
					case WA_INACTIVE:
						appActivate(false);
						break;
				}
				return 0;
			case WM_SIZE:
				switch ((int)wParam) {
					case SIZE_RESTORED:
					case SIZE_MAXIMIZED:
						setMinimized(false);
						break;
					case SIZE_MINIMIZED:
						setMinimized(true);
						break;
				}
				return defWindowProc(hwnd, msg, wParam, lParam);
			case WM_KILLFOCUS:
				appActivate(false);
				return 0;
			case WM_SETFOCUS:
				appActivate(true);
				return 0;
			case WM_MOUSEMOVE:
				int xPos = (int)(short)(lParam & 0xFFFF);
				int yPos = transformY(getHwnd(), (int)(short)((lParam >> 16) & 0xFFFF));
				handleMouseMoved(xPos, yPos, millis);
				checkCursorState();
                                mouseInside = true;
                                if(!trackingMouse) {
                                    trackingMouse = nTrackMouseEvent(hwnd);
                                }
				return 0;
			case WM_MOUSEWHEEL:
				int dwheel = (int)(short)((wParam >> 16) & 0xFFFF);
				handleMouseScrolled(dwheel, millis);
				return 0;
			case WM_LBUTTONDOWN:
				handleMouseButton(0, 1, millis);
				return 0;
			case WM_LBUTTONUP:
				handleMouseButton(0, 0, millis);
				return 0;
			case WM_RBUTTONDOWN:
				handleMouseButton(1, 1, millis);
				return 0;
			case WM_RBUTTONUP:
				handleMouseButton(1, 0, millis);
				return 0;
			case WM_MBUTTONDOWN:
				handleMouseButton(2, 1, millis);
				return 0;
			case WM_MBUTTONUP:
				handleMouseButton(2, 0, millis);
				return 0;
			case WM_SYSCHAR:
			case WM_CHAR:
				handleChar(wParam, lParam, millis);
				return 0;
			case WM_SYSKEYUP:
				/* Fall through */
			case WM_KEYUP:
				// SysRq apparently only generates WM_KEYUP, so we'll fake a WM_KEYDOWN
				if (wParam == WindowsKeycodes.VK_SNAPSHOT && keyboard != null &&
						!keyboard.isKeyDown(org.lwjgl.input.Keyboard.KEY_SYSRQ)) {
					// Set key state to pressed
					long fake_lparam = lParam & ~(1 << 31);
					// Set key previous state to released
					fake_lparam = fake_lparam & ~(1 << 30);
					handleKeyButton(wParam, fake_lparam, millis);
				}
				/* Fall through */
			case WM_SYSKEYDOWN:
				/* Fall through */
			case WM_KEYDOWN:
				handleKeyButton(wParam, lParam, millis);
				return defWindowProc(hwnd, msg, wParam, lParam);
			case WM_QUIT:
				close_requested = true;
				return 0;
			case WM_SYSCOMMAND:
				switch ((int)(wParam & 0xfff0)) {
					case SC_KEYMENU:
					case SC_MOUSEMENU:
					case SC_SCREENSAVE:
					case SC_MONITORPOWER:
						return 0;
					case SC_CLOSE:
						close_requested = true;
						return 0;
					default:
						break;
				}
				return defWindowProc(hwnd, msg, wParam, lParam);
			case WM_PAINT:
				is_dirty = true;
				return defWindowProc(hwnd, msg, wParam, lParam);
                        case WM_MOUSELEAVE:
                            mouseInside = false;
                            trackingMouse = false;
                            return defWindowProc(hwnd, msg, wParam, lParam);
			case WM_CANCELMODE:
				nReleaseCapture();
				/* fall through */
			case WM_CAPTURECHANGED:
				if(captureMouse != -1) {
					handleMouseButton(captureMouse, 0, millis);
					captureMouse = -1;
				}
				return 0;
			default:
				return defWindowProc(hwnd, msg, wParam, lParam);
		}
	}

	public int getWidth() {
		return Display.getDisplayMode().getWidth();
	}

	public int getHeight() {
		return Display.getDisplayMode().getHeight();
	}
	
	private int firstMouseButtonDown() {
		for(int i=0; i<Mouse.getButtonCount(); i++) {
			if(Mouse.isButtonDown(i)) {
				return i;
			}
		}
		return -1;
	}

        private native boolean nTrackMouseEvent(long hwnd);

        public boolean isInsideWindow() {
            return mouseInside;
        }

	private static final class Rect {
		public int top;
		public int bottom;
		public int left;
		public int right;

		public void copyToBuffer(IntBuffer buffer) {
			buffer.put(0, top).put(1, bottom).put(2, left).put(3, right);
		}

		public void copyFromBuffer(IntBuffer buffer) {
			top = buffer.get(0);
			bottom = buffer.get(1);
			left  = buffer.get(2);
			right = buffer.get(3);
		}

		public void offset(int offset_x, int offset_y) {
			left += offset_x;
			right += offset_x;
			top += offset_y;
			bottom += offset_y;
		}

		public static void intersect(Rect r1, Rect r2, Rect dst) {
			dst.top = Math.max(r1.top, r2.top);
			dst.bottom = Math.min(r1.bottom, r2.bottom);
			dst.left = Math.max(r1.left, r2.left);
			dst.right = Math.min(r1.right, r2.right);
		}

		public String toString() {
			return "Rect: top = " + top + " bottom = " + bottom + " left = " + left + " right = " + right;
		}
	}
}