- Timestamp:
- Aug 19, 2009, 10:00:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/org/eclipse/swt/internal/pm/OS.java
r171 r178 161 161 public static final int WS_TABSTOP = 0x00020000; 162 162 // public static final int WS_MULTISELECT = 0x00040000; 163 public static final int WS_SYSMENU = 0x00080000; 163 164 164 165 /* Button control styles */ … … 299 300 public static final int WM_CHAR = 0x007a; 300 301 // public static final int WM_VIOCHAR = 0x007b; 302 303 /*** Mouse input messages ***********************************************/ 304 public static final int WM_MOUSEMOVE = 0x0070; 305 public static final int WM_BUTTON1DOWN = 0x0071; 306 public static final int WM_BUTTON1UP = 0x0072; 307 public static final int WM_BUTTON1DBLCLK = 0x0073; 308 public static final int WM_BUTTON2DOWN = 0x0074; 309 public static final int WM_BUTTON2UP = 0x0075; 310 public static final int WM_BUTTON2DBLCLK = 0x0076; 301 311 302 312 /* WM_CHAR fs field bits */ … … 2382 2392 public static final native int WinWindowFromPoint(int hwndParent, POINTL pptlPoint, boolean fEnumChildren); 2383 2393 public static final native boolean WinSetPointerPos(int hwndDeskTop, int lx, int ly); 2394 public static final native boolean WinSetCapture(int hwndDeskTop, int hwnd); 2395 public static final native int WinQueryCapture(int hwndDeskTop); 2396 public static final native boolean WinSetActiveWindow(int hwndDeskTop, int hwnd); 2384 2397 public static final native boolean PrfQueryProfileSize (int hini, PSZ pszApp, 2385 2398 PSZ pszKey, int[] pulDataLen);
Note:
See TracChangeset
for help on using the changeset viewer.