annotate dwt/internal/cocoa/OS.d @ 156:969e7de37c3d default tip

Fixes to get dwt to work with dmd and ldc
author Jacob Carlborg <doob@me.com>
date Wed, 08 Jul 2009 21:56:44 +0200
parents 834420cb1486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
1 /*******************************************************************************
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2 * Copyright (c) 2007, 2008 IBM Corporation and others.
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
3 * All rights reserved. This program and the accompanying materials
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
4 * are made available under the terms of the Eclipse Public License v1.0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
5 * which accompanies this distribution, and is available at
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
6 * http://www.eclipse.org/legal/epl-v10.html
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
7 *
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
8 * Contributors:
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
9 * IBM Corporation - initial API and implementation
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
10 *******************************************************************************/
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
11 module dwt.internal.cocoa.OS;
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
12
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
13 // These enums need to be up here otherwise they'll cause forward reference errors
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
14 // NSScroller.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
15 enum NSScrollerPart
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
16 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
17 NSScrollerNoPart = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
18 NSScrollerDecrementPage = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
19 NSScrollerKnob = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
20 NSScrollerIncrementPage = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
21 NSScrollerDecrementLine = 4,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
22 NSScrollerIncrementLine = 5,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
23 NSScrollerKnobSlot = 6
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
24 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
25
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
26 // NSView.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
27 enum NSBorderType
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
28 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
29 NSNoBorder = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
30 NSLineBorder = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
31 NSBezelBorder = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
32 NSGrooveBorder = 3
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
33 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
34
130
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
35
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
36
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
37 import dwt.dwthelper.utils;
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
38
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
39 import dwt.internal.C;
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
40 import dwt.internal.Library;
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
41
130
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
42 import tango.core.Memory;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
43 import unistd = tango.stdc.posix.unistd;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
44 import stdc = tango.stdc.string;
37
642f460a0908 Fixed a lot of compile errors, a "hello world" app compiles now
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents: 36
diff changeset
45
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
46 import Carbon = dwt.internal.c.Carbon;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
47 import custom = dwt.internal.c.custom;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
48 import dwt.internal.cocoa.CGPoint;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
49 import dwt.internal.cocoa.CGRect;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
50 import dwt.internal.cocoa.CGSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
51 import dwt.internal.cocoa.NSAffineTransformStruct;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
52 import dwt.internal.cocoa.NSAlert;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
53 import dwt.internal.cocoa.NSApplication;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
54 import dwt.internal.cocoa.NSBezierPath;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
55 import dwt.internal.cocoa.NSBitmapImageRep;
69
39340f7612f8 Ported dwt.widgets.Group
Jacob Carlborg <doob@me.com>
parents: 65
diff changeset
56 import dwt.internal.cocoa.NSBox;
52
858e9a565d62 Updated Button to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
57 import dwt.internal.cocoa.NSButtonCell;
858e9a565d62 Updated Button to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
58 import dwt.internal.cocoa.NSCell;
56
a470e49a1890 Updated Menu to 3.514
Jacob Carlborg <doob@me.com>
parents: 53
diff changeset
59 import dwt.internal.cocoa.NSEvent;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
60 import dwt.internal.cocoa.NSGradient;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
61 import dwt.internal.cocoa.NSGraphicsContext;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
62 import dwt.internal.cocoa.NSImage;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
63 import dwt.internal.cocoa.NSImageCell;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
64 import dwt.internal.cocoa.NSParagraphStyle;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
65 import dwt.internal.cocoa.NSPoint;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
66 import dwt.internal.cocoa.NSRange;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
67 import dwt.internal.cocoa.NSRect;
57
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
68 import dwt.internal.cocoa.NSScrollView;
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
69 import dwt.internal.cocoa.NSScroller;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
70 import dwt.internal.cocoa.NSSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
71 import dwt.internal.cocoa.NSString;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
72 import dwt.internal.cocoa.NSText;
48
34237ae5156a Updated Scrollable to 3.514
Jacob Carlborg <doob@me.com>
parents: 46
diff changeset
73 import dwt.internal.cocoa.NSView;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
74 import NSWindowTypes = dwt.internal.cocoa.NSWindow;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
75 import Cocoa = dwt.internal.objc.cocoa.Cocoa;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
76 import objc = dwt.internal.objc.runtime;
1
8b48be5454ce The internal cocoa classes compile now
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents: 0
diff changeset
77
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
78 public class OS : C {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
79 /*static this (){
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
80 Library.loadLibrary("swt-pi"); //$NON-NLS-1$
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
81 }*/
152
834420cb1486 Delete, arrow keys and backspace are now working in text fields
Jacob Carlborg <doob@me.com>
parents: 138
diff changeset
82
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
83 public static const int VERSION;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
84 static this () {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
85 int [1] response;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
86 OS.Gestalt (OS.gestaltSystemVersion, response.ptr);
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
87 VERSION = response [0] & 0xffff;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
88
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
89 sel_sendSelection = sel_registerName("sendSelection");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
90 sel_sendDoubleSelection = sel_registerName("sendDoubleSelection");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
91 sel_sendVerticalSelection = sel_registerName("sendVerticalSelection");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
92 sel_sendHorizontalSelection = sel_registerName("sendHorizontalSelection");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
93 sel_timerProc_ = sel_registerName("timerProc:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
94 sel_handleNotification_ = sel_registerName("handleNotification:");
1
8b48be5454ce The internal cocoa classes compile now
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents: 0
diff changeset
95
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
96 class_DOMDocument = objc_getClass("DOMDocument");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
97 class_DOMEvent = objc_getClass("DOMEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
98 class_DOMKeyboardEvent = objc_getClass("DOMKeyboardEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
99 class_DOMMouseEvent = objc_getClass("DOMMouseEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
100 class_DOMUIEvent = objc_getClass("DOMUIEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
101 class_DOMWheelEvent = objc_getClass("DOMWheelEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
102 class_NSActionCell = objc_getClass("NSActionCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
103 class_NSAffineTransform = objc_getClass("NSAffineTransform");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
104 class_NSAlert = objc_getClass("NSAlert");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
105 class_NSAppleEventDescriptor = objc_getClass("NSAppleEventDescriptor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
106 class_NSApplication = objc_getClass("NSApplication");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
107 class_NSArray = objc_getClass("NSArray");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
108 class_NSAttributedString = objc_getClass("NSAttributedString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
109 class_NSAutoreleasePool = objc_getClass("NSAutoreleasePool");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
110 class_NSBezierPath = objc_getClass("NSBezierPath");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
111 class_NSBitmapImageRep = objc_getClass("NSBitmapImageRep");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
112 class_NSBox = objc_getClass("NSBox");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
113 class_NSBrowserCell = objc_getClass("NSBrowserCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
114 class_NSBundle = objc_getClass("NSBundle");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
115 class_NSButton = objc_getClass("NSButton");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
116 class_NSButtonCell = objc_getClass("NSButtonCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
117 class_NSCalendarDate = objc_getClass("NSCalendarDate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
118 class_NSCell = objc_getClass("NSCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
119 class_NSCharacterSet = objc_getClass("NSCharacterSet");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
120 class_NSClipView = objc_getClass("NSClipView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
121 class_NSCoder = objc_getClass("NSCoder");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
122 class_NSColor = objc_getClass("NSColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
123 class_NSColorPanel = objc_getClass("NSColorPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
124 class_NSColorSpace = objc_getClass("NSColorSpace");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
125 class_NSComboBox = objc_getClass("NSComboBox");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
126 class_NSControl = objc_getClass("NSControl");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
127 class_NSCursor = objc_getClass("NSCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
128 class_NSData = objc_getClass("NSData");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
129 class_NSDate = objc_getClass("NSDate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
130 class_NSDatePicker = objc_getClass("NSDatePicker");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
131 class_NSDictionary = objc_getClass("NSDictionary");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
132 class_NSDirectoryEnumerator = objc_getClass("NSDirectoryEnumerator");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
133 class_NSEnumerator = objc_getClass("NSEnumerator");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
134 class_NSError = objc_getClass("NSError");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
135 class_NSEvent = objc_getClass("NSEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
136 class_NSFileManager = objc_getClass("NSFileManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
137 class_NSFont = objc_getClass("NSFont");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
138 class_NSFontManager = objc_getClass("NSFontManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
139 class_NSFontPanel = objc_getClass("NSFontPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
140 class_NSFormatter = objc_getClass("NSFormatter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
141 class_NSGradient = objc_getClass("NSGradient");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
142 class_NSGraphicsContext = objc_getClass("NSGraphicsContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
143 class_NSHTTPCookie = objc_getClass("NSHTTPCookie");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
144 class_NSHTTPCookieStorage = objc_getClass("NSHTTPCookieStorage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
145 class_NSImage = objc_getClass("NSImage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
146 class_NSImageRep = objc_getClass("NSImageRep");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
147 class_NSImageView = objc_getClass("NSImageView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
148 class_NSIndexSet = objc_getClass("NSIndexSet");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
149 class_NSInputManager = objc_getClass("NSInputManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
150 class_NSKeyedArchiver = objc_getClass("NSKeyedArchiver");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
151 class_NSKeyedUnarchiver = objc_getClass("NSKeyedUnarchiver");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
152 class_NSLayoutManager = objc_getClass("NSLayoutManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
153 class_NSMenu = objc_getClass("NSMenu");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
154 class_NSMenuItem = objc_getClass("NSMenuItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
155 class_NSMutableArray = objc_getClass("NSMutableArray");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
156 class_NSMutableAttributedString = objc_getClass("NSMutableAttributedString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
157 class_NSMutableDictionary = objc_getClass("NSMutableDictionary");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
158 class_NSMutableIndexSet = objc_getClass("NSMutableIndexSet");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
159 class_NSMutableParagraphStyle = objc_getClass("NSMutableParagraphStyle");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
160 class_NSMutableSet = objc_getClass("NSMutableSet");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
161 class_NSMutableString = objc_getClass("NSMutableString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
162 class_NSMutableURLRequest = objc_getClass("NSMutableURLRequest");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
163 class_NSNotification = objc_getClass("NSNotification");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
164 class_NSNotificationCenter = objc_getClass("NSNotificationCenter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
165 class_NSNumber = objc_getClass("NSNumber");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
166 class_NSNumberFormatter = objc_getClass("NSNumberFormatter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
167 class_NSObject = objc_getClass("NSObject");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
168 class_NSOpenGLContext = objc_getClass("NSOpenGLContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
169 class_NSOpenGLPixelFormat = objc_getClass("NSOpenGLPixelFormat");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
170 class_NSOpenGLView = objc_getClass("NSOpenGLView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
171 class_NSOpenPanel = objc_getClass("NSOpenPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
172 class_NSOutlineView = objc_getClass("NSOutlineView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
173 class_NSPanel = objc_getClass("NSPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
174 class_NSParagraphStyle = objc_getClass("NSParagraphStyle");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
175 class_NSPasteboard = objc_getClass("NSPasteboard");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
176 class_NSPopUpButton = objc_getClass("NSPopUpButton");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
177 class_NSPrintInfo = objc_getClass("NSPrintInfo");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
178 class_NSPrintOperation = objc_getClass("NSPrintOperation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
179 class_NSPrintPanel = objc_getClass("NSPrintPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
180 class_NSPrinter = objc_getClass("NSPrinter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
181 class_NSProgressIndicator = objc_getClass("NSProgressIndicator");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
182 class_NSResponder = objc_getClass("NSResponder");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
183 class_NSRunLoop = objc_getClass("NSRunLoop");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
184 class_NSSavePanel = objc_getClass("NSSavePanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
185 class_NSScreen = objc_getClass("NSScreen");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
186 class_NSScrollView = objc_getClass("NSScrollView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
187 class_NSScroller = objc_getClass("NSScroller");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
188 class_NSSearchField = objc_getClass("NSSearchField");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
189 class_NSSecureTextField = objc_getClass("NSSecureTextField");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
190 class_NSSet = objc_getClass("NSSet");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
191 class_NSSlider = objc_getClass("NSSlider");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
192 class_NSStatusBar = objc_getClass("NSStatusBar");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
193 class_NSStatusItem = objc_getClass("NSStatusItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
194 class_NSStepper = objc_getClass("NSStepper");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
195 class_NSString = objc_getClass("NSString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
196 class_NSTabView = objc_getClass("NSTabView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
197 class_NSTabViewItem = objc_getClass("NSTabViewItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
198 class_NSTableColumn = objc_getClass("NSTableColumn");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
199 class_NSTableHeaderCell = objc_getClass("NSTableHeaderCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
200 class_NSTableHeaderView = objc_getClass("NSTableHeaderView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
201 class_NSTableView = objc_getClass("NSTableView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
202 class_NSText = objc_getClass("NSText");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
203 class_NSTextContainer = objc_getClass("NSTextContainer");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
204 class_NSTextField = objc_getClass("NSTextField");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
205 class_NSTextFieldCell = objc_getClass("NSTextFieldCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
206 class_NSTextStorage = objc_getClass("NSTextStorage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
207 class_NSTextTab = objc_getClass("NSTextTab");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
208 class_NSTextView = objc_getClass("NSTextView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
209 class_NSThread = objc_getClass("NSThread");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
210 class_NSTimeZone = objc_getClass("NSTimeZone");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
211 class_NSTimer = objc_getClass("NSTimer");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
212 class_NSTypesetter = objc_getClass("NSTypesetter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
213 class_NSURL = objc_getClass("NSURL");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
214 class_NSURLDownload = objc_getClass("NSURLDownload");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
215 class_NSURLRequest = objc_getClass("NSURLRequest");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
216 class_NSValue = objc_getClass("NSValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
217 class_NSView = objc_getClass("NSView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
218 class_NSWindow = objc_getClass("NSWindow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
219 class_NSWorkspace = objc_getClass("NSWorkspace");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
220 class_WebDataSource = objc_getClass("WebDataSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
221 class_WebFrame = objc_getClass("WebFrame");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
222 class_WebFrameView = objc_getClass("WebFrameView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
223 class_WebPreferences = objc_getClass("WebPreferences");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
224 class_WebView = objc_getClass("WebView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
225
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
226 protocol_NSAccessibility = objc_getProtocol("NSAccessibility");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
227 protocol_NSAccessibilityAdditions = objc_getProtocol("NSAccessibilityAdditions");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
228 protocol_NSApplicationDelegate = objc_getProtocol("NSApplicationDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
229 protocol_NSApplicationNotifications = objc_getProtocol("NSApplicationNotifications");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
230 protocol_NSColorPanelResponderMethod = objc_getProtocol("NSColorPanelResponderMethod");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
231 protocol_NSComboBoxNotifications = objc_getProtocol("NSComboBoxNotifications");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
232 protocol_NSDraggingDestination = objc_getProtocol("NSDraggingDestination");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
233 protocol_NSDraggingSource = objc_getProtocol("NSDraggingSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
234 protocol_NSFontManagerResponderMethod = objc_getProtocol("NSFontManagerResponderMethod");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
235 protocol_NSMenuDelegate = objc_getProtocol("NSMenuDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
236 protocol_NSOutlineViewDataSource = objc_getProtocol("NSOutlineViewDataSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
237 protocol_NSOutlineViewDelegate = objc_getProtocol("NSOutlineViewDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
238 protocol_NSOutlineViewNotifications = objc_getProtocol("NSOutlineViewNotifications");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
239 protocol_NSPasteboardOwner = objc_getProtocol("NSPasteboardOwner");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
240 protocol_NSTabViewDelegate = objc_getProtocol("NSTabViewDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
241 protocol_NSTableDataSource = objc_getProtocol("NSTableDataSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
242 protocol_NSTableViewDelegate = objc_getProtocol("NSTableViewDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
243 protocol_NSTableViewNotifications = objc_getProtocol("NSTableViewNotifications");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
244 protocol_NSTextDelegate = objc_getProtocol("NSTextDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
245 protocol_NSTextInput = objc_getProtocol("NSTextInput");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
246 protocol_NSTextViewDelegate = objc_getProtocol("NSTextViewDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
247 protocol_NSURLDownloadDelegate = objc_getProtocol("NSURLDownloadDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
248 protocol_NSWindowDelegate = objc_getProtocol("NSWindowDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
249 protocol_NSWindowNotifications = objc_getProtocol("NSWindowNotifications");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
250 protocol_WebDocumentRepresentation = objc_getProtocol("WebDocumentRepresentation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
251 protocol_WebFrameLoadDelegate = objc_getProtocol("WebFrameLoadDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
252 protocol_WebOpenPanelResultListener = objc_getProtocol("WebOpenPanelResultListener");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
253 protocol_WebPolicyDecisionListener = objc_getProtocol("WebPolicyDecisionListener");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
254 protocol_WebPolicyDelegate = objc_getProtocol("WebPolicyDelegate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
255 protocol_WebResourceLoadDelegate = objc_getProtocol("WebResourceLoadDelegate");
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
256 protocol_WebUIDelegate = objc_getProtocol("WebUIDelegate");
37
642f460a0908 Fixed a lot of compile errors, a "hello world" app compiles now
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents: 36
diff changeset
257
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
258 sel_DOMDocument = sel_registerName("DOMDocument");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
259 sel_IBeamCursor = sel_registerName("IBeamCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
260 sel_TIFFRepresentation = sel_registerName("TIFFRepresentation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
261 sel_URL = sel_registerName("URL");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
262 sel_URLFromPasteboard_ = sel_registerName("URLFromPasteboard:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
263 sel_URLWithString_ = sel_registerName("URLWithString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
264 sel_UTF8String = sel_registerName("UTF8String");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
265 sel_absoluteString = sel_registerName("absoluteString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
266 sel_acceptsFirstResponder = sel_registerName("acceptsFirstResponder");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
267 sel_accessibilityActionDescription_ = sel_registerName("accessibilityActionDescription:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
268 sel_accessibilityActionNames = sel_registerName("accessibilityActionNames");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
269 sel_accessibilityAttributeNames = sel_registerName("accessibilityAttributeNames");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
270 sel_accessibilityAttributeValue_ = sel_registerName("accessibilityAttributeValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
271 sel_accessibilityAttributeValue_forParameter_ = sel_registerName("accessibilityAttributeValue:forParameter:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
272 sel_accessibilityFocusedUIElement = sel_registerName("accessibilityFocusedUIElement");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
273 sel_accessibilityHitTest_ = sel_registerName("accessibilityHitTest:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
274 sel_accessibilityIsAttributeSettable_ = sel_registerName("accessibilityIsAttributeSettable:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
275 sel_accessibilityIsIgnored = sel_registerName("accessibilityIsIgnored");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
276 sel_accessibilityParameterizedAttributeNames = sel_registerName("accessibilityParameterizedAttributeNames");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
277 sel_accessibilityPerformAction_ = sel_registerName("accessibilityPerformAction:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
278 sel_accessibilitySetOverrideValue_forAttribute_ = sel_registerName("accessibilitySetOverrideValue:forAttribute:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
279 sel_accessibilitySetValue_forAttribute_ = sel_registerName("accessibilitySetValue:forAttribute:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
280 sel_action = sel_registerName("action");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
281 sel_activateIgnoringOtherApps_ = sel_registerName("activateIgnoringOtherApps:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
282 sel_addAttribute_value_range_ = sel_registerName("addAttribute:value:range:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
283 sel_addClip = sel_registerName("addClip");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
284 sel_addEventListener_listener_useCapture_ = sel_registerName("addEventListener:listener:useCapture:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
285 sel_addIndex_ = sel_registerName("addIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
286 sel_addItem_ = sel_registerName("addItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
287 sel_addItemWithObjectValue_ = sel_registerName("addItemWithObjectValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
288 sel_addLayoutManager_ = sel_registerName("addLayoutManager:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
289 sel_addObject_ = sel_registerName("addObject:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
290 sel_addObjectsFromArray_ = sel_registerName("addObjectsFromArray:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
291 sel_addObserver_selector_name_object_ = sel_registerName("addObserver:selector:name:object:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
292 sel_addRepresentation_ = sel_registerName("addRepresentation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
293 sel_addSubview_ = sel_registerName("addSubview:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
294 sel_addSubview_positioned_relativeTo_ = sel_registerName("addSubview:positioned:relativeTo:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
295 sel_addTabStop_ = sel_registerName("addTabStop:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
296 sel_addTabViewItem_ = sel_registerName("addTabViewItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
297 sel_addTableColumn_ = sel_registerName("addTableColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
298 sel_addTemporaryAttribute_value_forCharacterRange_ = sel_registerName("addTemporaryAttribute:value:forCharacterRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
299 sel_addTextContainer_ = sel_registerName("addTextContainer:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
300 sel_addTypes_owner_ = sel_registerName("addTypes:owner:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
301 sel_alertWithMessageText_defaultButton_alternateButton_otherButton_informativeTextWithFormat_ = sel_registerName("alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextWithFormat:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
302 sel_alignment = sel_registerName("alignment");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
303 sel_allKeys = sel_registerName("allKeys");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
304 sel_alloc = sel_registerName("alloc");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
305 sel_allowsFloats = sel_registerName("allowsFloats");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
306 sel_alphaComponent = sel_registerName("alphaComponent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
307 sel_alphaValue = sel_registerName("alphaValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
308 sel_altKey = sel_registerName("altKey");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
309 sel_alternateSelectedControlTextColor = sel_registerName("alternateSelectedControlTextColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
310 sel_alwaysShowsDecimalSeparator = sel_registerName("alwaysShowsDecimalSeparator");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
311 sel_appendBezierPath_ = sel_registerName("appendBezierPath:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
312 sel_appendBezierPathWithArcWithCenter_radius_startAngle_endAngle_ = sel_registerName("appendBezierPathWithArcWithCenter:radius:startAngle:endAngle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
313 sel_appendBezierPathWithArcWithCenter_radius_startAngle_endAngle_clockwise_ = sel_registerName("appendBezierPathWithArcWithCenter:radius:startAngle:endAngle:clockwise:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
314 sel_appendBezierPathWithGlyphs_count_inFont_ = sel_registerName("appendBezierPathWithGlyphs:count:inFont:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
315 sel_appendBezierPathWithOvalInRect_ = sel_registerName("appendBezierPathWithOvalInRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
316 sel_appendBezierPathWithRect_ = sel_registerName("appendBezierPathWithRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
317 sel_appendBezierPathWithRoundedRect_xRadius_yRadius_ = sel_registerName("appendBezierPathWithRoundedRect:xRadius:yRadius:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
318 sel_appendString_ = sel_registerName("appendString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
319 sel_applicationShouldTerminate_ = sel_registerName("applicationShouldTerminate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
320 sel_applicationWillFinishLaunching_ = sel_registerName("applicationWillFinishLaunching:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
321 sel_applicationWillResignActive_ = sel_registerName("applicationWillResignActive:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
322 sel_applicationWillTerminate_ = sel_registerName("applicationWillTerminate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
323 sel_archivedDataWithRootObject_ = sel_registerName("archivedDataWithRootObject:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
324 sel_array = sel_registerName("array");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
325 sel_arrayWithCapacity_ = sel_registerName("arrayWithCapacity:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
326 sel_arrayWithObject_ = sel_registerName("arrayWithObject:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
327 sel_arrowCursor = sel_registerName("arrowCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
328 sel_ascender = sel_registerName("ascender");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
329 sel_attributedSubstringFromRange_ = sel_registerName("attributedSubstringFromRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
330 sel_attributesAtIndex_longestEffectiveRange_inRange_ = sel_registerName("attributesAtIndex:longestEffectiveRange:inRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
331 sel_autorelease = sel_registerName("autorelease");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
332 sel_availableFontFamilies = sel_registerName("availableFontFamilies");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
333 sel_availableFonts = sel_registerName("availableFonts");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
334 sel_availableMembersOfFontFamily_ = sel_registerName("availableMembersOfFontFamily:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
335 sel_availableTypeFromArray_ = sel_registerName("availableTypeFromArray:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
336 sel_baselineOffsetInLayoutManager_glyphIndex_ = sel_registerName("baselineOffsetInLayoutManager:glyphIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
337 sel_becomeFirstResponder = sel_registerName("becomeFirstResponder");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
338 sel_beginDocument = sel_registerName("beginDocument");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
339 sel_beginEditing = sel_registerName("beginEditing");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
340 sel_beginPageInRect_atPlacement_ = sel_registerName("beginPageInRect:atPlacement:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
341 sel_bestRepresentationForDevice_ = sel_registerName("bestRepresentationForDevice:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
342 sel_bezierPath = sel_registerName("bezierPath");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
343 sel_bezierPathByFlatteningPath = sel_registerName("bezierPathByFlatteningPath");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
344 sel_bezierPathWithRect_ = sel_registerName("bezierPathWithRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
345 sel_bitmapData = sel_registerName("bitmapData");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
346 sel_bitsPerPixel = sel_registerName("bitsPerPixel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
347 sel_bitsPerSample = sel_registerName("bitsPerSample");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
348 sel_blackColor = sel_registerName("blackColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
349 sel_blueComponent = sel_registerName("blueComponent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
350 sel_borderWidth = sel_registerName("borderWidth");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
351 sel_boundingRectForGlyphRange_inTextContainer_ = sel_registerName("boundingRectForGlyphRange:inTextContainer:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
352 sel_bounds = sel_registerName("bounds");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
353 sel_bundleIdentifier = sel_registerName("bundleIdentifier");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
354 sel_bundlePath = sel_registerName("bundlePath");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
355 sel_bundleWithPath_ = sel_registerName("bundleWithPath:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
356 sel_button = sel_registerName("button");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
357 sel_buttonNumber = sel_registerName("buttonNumber");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
358 sel_bytes = sel_registerName("bytes");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
359 sel_bytesPerPlane = sel_registerName("bytesPerPlane");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
360 sel_bytesPerRow = sel_registerName("bytesPerRow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
361 sel_calendarDate = sel_registerName("calendarDate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
362 sel_canBecomeKeyWindow = sel_registerName("canBecomeKeyWindow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
363 sel_canGoBack = sel_registerName("canGoBack");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
364 sel_canGoForward = sel_registerName("canGoForward");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
365 sel_canShowMIMEType_ = sel_registerName("canShowMIMEType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
366 sel_cancel = sel_registerName("cancel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
367 sel_cancelTracking = sel_registerName("cancelTracking");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
368 sel_cascadeTopLeftFromPoint_ = sel_registerName("cascadeTopLeftFromPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
369 sel_cell = sel_registerName("cell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
370 sel_cellClass = sel_registerName("cellClass");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
371 sel_cellSizeForBounds_ = sel_registerName("cellSizeForBounds:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
372 sel_changeColor_ = sel_registerName("changeColor:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
373 sel_changeFont_ = sel_registerName("changeFont:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
374 sel_charCode = sel_registerName("charCode");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
375 sel_characterAtIndex_ = sel_registerName("characterAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
376 sel_characterIndexForGlyphAtIndex_ = sel_registerName("characterIndexForGlyphAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
377 sel_characterIndexForPoint_ = sel_registerName("characterIndexForPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
378 sel_characterIsMember_ = sel_registerName("characterIsMember:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
379 sel_characters = sel_registerName("characters");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
380 sel_charactersIgnoringModifiers = sel_registerName("charactersIgnoringModifiers");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
381 sel_chooseFilename_ = sel_registerName("chooseFilename:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
382 sel_className = sel_registerName("className");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
383 sel_cleanUpOperation = sel_registerName("cleanUpOperation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
384 sel_clearColor = sel_registerName("clearColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
385 sel_clearCurrentContext = sel_registerName("clearCurrentContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
386 sel_clearGLContext = sel_registerName("clearGLContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
387 sel_clickCount = sel_registerName("clickCount");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
388 sel_clientX = sel_registerName("clientX");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
389 sel_clientY = sel_registerName("clientY");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
390 sel_close = sel_registerName("close");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
391 sel_closePath = sel_registerName("closePath");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
392 sel_code = sel_registerName("code");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
393 sel_collapseItem_ = sel_registerName("collapseItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
394 sel_color = sel_registerName("color");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
395 sel_colorUsingColorSpace_ = sel_registerName("colorUsingColorSpace:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
396 sel_colorUsingColorSpaceName_ = sel_registerName("colorUsingColorSpaceName:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
397 sel_colorWithDeviceRed_green_blue_alpha_ = sel_registerName("colorWithDeviceRed:green:blue:alpha:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
398 sel_colorWithPatternImage_ = sel_registerName("colorWithPatternImage:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
399 sel_columnAtPoint_ = sel_registerName("columnAtPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
400 sel_columnAutoresizingStyle = sel_registerName("columnAutoresizingStyle");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
401 sel_columnIndexesInRect_ = sel_registerName("columnIndexesInRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
402 sel_columnWithIdentifier_ = sel_registerName("columnWithIdentifier:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
403 sel_comboBoxSelectionDidChange_ = sel_registerName("comboBoxSelectionDidChange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
404 sel_concat = sel_registerName("concat");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
405 sel_conformsToProtocol_ = sel_registerName("conformsToProtocol:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
406 sel_containerSize = sel_registerName("containerSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
407 sel_containsObject_ = sel_registerName("containsObject:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
408 sel_containsPoint_ = sel_registerName("containsPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
409 sel_contentRect = sel_registerName("contentRect");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
410 sel_contentRectForFrameRect_ = sel_registerName("contentRectForFrameRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
411 sel_contentSize = sel_registerName("contentSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
412 sel_contentSizeForFrameSize_hasHorizontalScroller_hasVerticalScroller_borderType_ = sel_registerName("contentSizeForFrameSize:hasHorizontalScroller:hasVerticalScroller:borderType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
413 sel_contentView = sel_registerName("contentView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
414 sel_contentViewMargins = sel_registerName("contentViewMargins");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
415 sel_context = sel_registerName("context");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
416 sel_controlDarkShadowColor = sel_registerName("controlDarkShadowColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
417 sel_controlHighlightColor = sel_registerName("controlHighlightColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
418 sel_controlLightHighlightColor = sel_registerName("controlLightHighlightColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
419 sel_controlPointBounds = sel_registerName("controlPointBounds");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
420 sel_controlShadowColor = sel_registerName("controlShadowColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
421 sel_controlTextColor = sel_registerName("controlTextColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
422 sel_convertBaseToScreen_ = sel_registerName("convertBaseToScreen:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
423 sel_convertPoint_fromView_ = sel_registerName("convertPoint:fromView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
424 sel_convertPoint_toView_ = sel_registerName("convertPoint:toView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
425 sel_convertPointFromBase_ = sel_registerName("convertPointFromBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
426 sel_convertPointToBase_ = sel_registerName("convertPointToBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
427 sel_convertRect_fromView_ = sel_registerName("convertRect:fromView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
428 sel_convertRect_toView_ = sel_registerName("convertRect:toView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
429 sel_convertRectFromBase_ = sel_registerName("convertRectFromBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
430 sel_convertRectToBase_ = sel_registerName("convertRectToBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
431 sel_convertScreenToBase_ = sel_registerName("convertScreenToBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
432 sel_convertSize_fromView_ = sel_registerName("convertSize:fromView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
433 sel_convertSize_toView_ = sel_registerName("convertSize:toView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
434 sel_convertSizeFromBase_ = sel_registerName("convertSizeFromBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
435 sel_convertSizeToBase_ = sel_registerName("convertSizeToBase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
436 sel_cookies = sel_registerName("cookies");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
437 sel_copy = sel_registerName("copy");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
438 sel_copy_ = sel_registerName("copy:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
439 sel_count = sel_registerName("count");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
440 sel_createContext = sel_registerName("createContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
441 sel_createFileAtPath_contents_attributes_ = sel_registerName("createFileAtPath:contents:attributes:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
442 sel_crosshairCursor = sel_registerName("crosshairCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
443 sel_ctrlKey = sel_registerName("ctrlKey");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
444 sel_currentContext = sel_registerName("currentContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
445 sel_currentEditor = sel_registerName("currentEditor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
446 sel_currentEvent = sel_registerName("currentEvent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
447 sel_currentInputManager = sel_registerName("currentInputManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
448 sel_currentPoint = sel_registerName("currentPoint");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
449 sel_currentRunLoop = sel_registerName("currentRunLoop");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
450 sel_currentThread = sel_registerName("currentThread");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
451 sel_curveToPoint_controlPoint1_controlPoint2_ = sel_registerName("curveToPoint:controlPoint1:controlPoint2:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
452 sel_cut_ = sel_registerName("cut:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
453 sel_dataForType_ = sel_registerName("dataForType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
454 sel_dataSource = sel_registerName("dataSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
455 sel_dataWithBytes_length_ = sel_registerName("dataWithBytes:length:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
456 sel_dateValue = sel_registerName("dateValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
457 sel_dateWithCalendarFormat_timeZone_ = sel_registerName("dateWithCalendarFormat:timeZone:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
458 sel_dateWithTimeIntervalSinceNow_ = sel_registerName("dateWithTimeIntervalSinceNow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
459 sel_dateWithYear_month_day_hour_minute_second_timeZone_ = sel_registerName("dateWithYear:month:day:hour:minute:second:timeZone:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
460 sel_dayOfMonth = sel_registerName("dayOfMonth");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
461 sel_decimalDigitCharacterSet = sel_registerName("decimalDigitCharacterSet");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
462 sel_decimalSeparator = sel_registerName("decimalSeparator");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
463 sel_declareTypes_owner_ = sel_registerName("declareTypes:owner:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
464 sel_defaultCenter = sel_registerName("defaultCenter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
465 sel_defaultFlatness = sel_registerName("defaultFlatness");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
466 sel_defaultLineHeightForFont_ = sel_registerName("defaultLineHeightForFont:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
467 sel_defaultManager = sel_registerName("defaultManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
468 sel_defaultPrinter = sel_registerName("defaultPrinter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
469 sel_defaultTimeZone = sel_registerName("defaultTimeZone");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
470 sel_deleteCookie_ = sel_registerName("deleteCookie:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
471 sel_deliverResult = sel_registerName("deliverResult");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
472 sel_deltaX = sel_registerName("deltaX");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
473 sel_deltaY = sel_registerName("deltaY");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
474 sel_depth = sel_registerName("depth");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
475 sel_descender = sel_registerName("descender");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
476 sel_description = sel_registerName("description");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
477 sel_deselectAll_ = sel_registerName("deselectAll:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
478 sel_deselectItemAtIndex_ = sel_registerName("deselectItemAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
479 sel_deselectRow_ = sel_registerName("deselectRow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
480 sel_destroyContext = sel_registerName("destroyContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
481 sel_detail = sel_registerName("detail");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
482 sel_deviceDescription = sel_registerName("deviceDescription");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
483 sel_deviceRGBColorSpace = sel_registerName("deviceRGBColorSpace");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
484 sel_dictionary = sel_registerName("dictionary");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
485 sel_dictionaryWithCapacity_ = sel_registerName("dictionaryWithCapacity:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
486 sel_dictionaryWithObject_forKey_ = sel_registerName("dictionaryWithObject:forKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
487 sel_disableCursorRects = sel_registerName("disableCursorRects");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
488 sel_disabledControlTextColor = sel_registerName("disabledControlTextColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
489 sel_displayIfNeeded = sel_registerName("displayIfNeeded");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
490 sel_distantFuture = sel_registerName("distantFuture");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
491 sel_doCommandBySelector_ = sel_registerName("doCommandBySelector:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
492 sel_documentSource = sel_registerName("documentSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
493 sel_documentView = sel_registerName("documentView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
494 sel_documentViewShouldHandlePrint = sel_registerName("documentViewShouldHandlePrint");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
495 sel_documentVisibleRect = sel_registerName("documentVisibleRect");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
496 sel_doubleClickAtIndex_ = sel_registerName("doubleClickAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
497 sel_doubleValue = sel_registerName("doubleValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
498 sel_download = sel_registerName("download");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
499 sel_download_decideDestinationWithSuggestedFilename_ = sel_registerName("download:decideDestinationWithSuggestedFilename:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
500 sel_dragImage_at_offset_event_pasteboard_source_slideBack_ = sel_registerName("dragImage:at:offset:event:pasteboard:source:slideBack:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
501 sel_draggedImage = sel_registerName("draggedImage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
502 sel_draggedImage_beganAt_ = sel_registerName("draggedImage:beganAt:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
503 sel_draggedImage_endedAt_operation_ = sel_registerName("draggedImage:endedAt:operation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
504 sel_draggedImageLocation = sel_registerName("draggedImageLocation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
505 sel_draggingDestinationWindow = sel_registerName("draggingDestinationWindow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
506 sel_draggingEnded_ = sel_registerName("draggingEnded:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
507 sel_draggingEntered_ = sel_registerName("draggingEntered:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
508 sel_draggingExited_ = sel_registerName("draggingExited:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
509 sel_draggingLocation = sel_registerName("draggingLocation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
510 sel_draggingPasteboard = sel_registerName("draggingPasteboard");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
511 sel_draggingSequenceNumber = sel_registerName("draggingSequenceNumber");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
512 sel_draggingSource = sel_registerName("draggingSource");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
513 sel_draggingSourceOperationMask = sel_registerName("draggingSourceOperationMask");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
514 sel_draggingSourceOperationMaskForLocal_ = sel_registerName("draggingSourceOperationMaskForLocal:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
515 sel_draggingUpdated_ = sel_registerName("draggingUpdated:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
516 sel_drawAtPoint_ = sel_registerName("drawAtPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
517 sel_drawAtPoint_fromRect_operation_fraction_ = sel_registerName("drawAtPoint:fromRect:operation:fraction:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
518 sel_drawBackgroundForGlyphRange_atPoint_ = sel_registerName("drawBackgroundForGlyphRange:atPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
519 sel_drawFromPoint_toPoint_options_ = sel_registerName("drawFromPoint:toPoint:options:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
520 sel_drawGlyphsForGlyphRange_atPoint_ = sel_registerName("drawGlyphsForGlyphRange:atPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
521 sel_drawInRect_ = sel_registerName("drawInRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
522 sel_drawInRect_angle_ = sel_registerName("drawInRect:angle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
523 sel_drawInRect_fromRect_operation_fraction_ = sel_registerName("drawInRect:fromRect:operation:fraction:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
524 sel_drawInteriorWithFrame_inView_ = sel_registerName("drawInteriorWithFrame:inView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
525 sel_drawRect_ = sel_registerName("drawRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
526 sel_drawSortIndicatorWithFrame_inView_ascending_priority_ = sel_registerName("drawSortIndicatorWithFrame:inView:ascending:priority:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
527 sel_drawStatusBarBackgroundInRect_withHighlight_ = sel_registerName("drawStatusBarBackgroundInRect:withHighlight:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
528 sel_drawingRectForBounds_ = sel_registerName("drawingRectForBounds:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
529 sel_elementAtIndex_associatedPoints_ = sel_registerName("elementAtIndex:associatedPoints:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
530 sel_elementCount = sel_registerName("elementCount");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
531 sel_enableFreedObjectCheck_ = sel_registerName("enableFreedObjectCheck:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
532 sel_endDocument = sel_registerName("endDocument");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
533 sel_endEditing = sel_registerName("endEditing");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
534 sel_endPage = sel_registerName("endPage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
535 sel_enumeratorAtPath_ = sel_registerName("enumeratorAtPath:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
536 sel_expandItem_ = sel_registerName("expandItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
537 sel_familyName = sel_registerName("familyName");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
538 sel_fieldEditor_forObject_ = sel_registerName("fieldEditor:forObject:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
539 sel_fileURLWithPath_ = sel_registerName("fileURLWithPath:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
540 sel_filename = sel_registerName("filename");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
541 sel_filenames = sel_registerName("filenames");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
542 sel_fill = sel_registerName("fill");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
543 sel_fillRect_ = sel_registerName("fillRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
544 sel_finishLaunching = sel_registerName("finishLaunching");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
545 sel_firstIndex = sel_registerName("firstIndex");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
546 sel_firstRectForCharacterRange_ = sel_registerName("firstRectForCharacterRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
547 sel_firstResponder = sel_registerName("firstResponder");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
548 sel_flagsChanged_ = sel_registerName("flagsChanged:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
549 sel_flushBuffer = sel_registerName("flushBuffer");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
550 sel_flushGraphics = sel_registerName("flushGraphics");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
551 sel_font = sel_registerName("font");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
552 sel_fontName = sel_registerName("fontName");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
553 sel_fontWithName_size_ = sel_registerName("fontWithName:size:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
554 sel_frame = sel_registerName("frame");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
555 sel_frameOfCellAtColumn_row_ = sel_registerName("frameOfCellAtColumn:row:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
556 sel_frameRectForContentRect_ = sel_registerName("frameRectForContentRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
557 sel_frameSizeForContentSize_hasHorizontalScroller_hasVerticalScroller_borderType_ = sel_registerName("frameSizeForContentSize:hasHorizontalScroller:hasVerticalScroller:borderType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
558 sel_fullPathForApplication_ = sel_registerName("fullPathForApplication:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
559 sel_generalPasteboard = sel_registerName("generalPasteboard");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
560 sel_getBytes_ = sel_registerName("getBytes:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
561 sel_getBytes_length_ = sel_registerName("getBytes:length:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
562 sel_getCharacters_ = sel_registerName("getCharacters:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
563 sel_getCharacters_range_ = sel_registerName("getCharacters:range:");
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
564 sel_getCString_maxLength_encoding_ = sel_registerName("getCString:maxLength:encoding:");
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
565 sel_getComponents_ = sel_registerName("getComponents:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
566 sel_getGlyphs_range_ = sel_registerName("getGlyphs:range:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
567 sel_getIndexes_maxCount_inIndexRange_ = sel_registerName("getIndexes:maxCount:inIndexRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
568 sel_getInfoForFile_application_type_ = sel_registerName("getInfoForFile:application:type:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
569 sel_glyphIndexForCharacterAtIndex_ = sel_registerName("glyphIndexForCharacterAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
570 sel_glyphIndexForPoint_inTextContainer_fractionOfDistanceThroughGlyph_ = sel_registerName("glyphIndexForPoint:inTextContainer:fractionOfDistanceThroughGlyph:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
571 sel_glyphRangeForTextContainer_ = sel_registerName("glyphRangeForTextContainer:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
572 sel_goBack = sel_registerName("goBack");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
573 sel_goForward = sel_registerName("goForward");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
574 sel_graphicsContext = sel_registerName("graphicsContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
575 sel_graphicsContextWithBitmapImageRep_ = sel_registerName("graphicsContextWithBitmapImageRep:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
576 sel_graphicsContextWithWindow_ = sel_registerName("graphicsContextWithWindow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
577 sel_greenComponent = sel_registerName("greenComponent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
578 sel_handleEvent_ = sel_registerName("handleEvent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
579 sel_handleMouseEvent_ = sel_registerName("handleMouseEvent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
580 sel_hasAlpha = sel_registerName("hasAlpha");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
581 sel_hasMarkedText = sel_registerName("hasMarkedText");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
582 sel_headerCell = sel_registerName("headerCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
583 sel_headerRectOfColumn_ = sel_registerName("headerRectOfColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
584 sel_headerView = sel_registerName("headerView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
585 sel_helpRequested_ = sel_registerName("helpRequested:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
586 sel_hide_ = sel_registerName("hide:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
587 sel_hideOtherApplications_ = sel_registerName("hideOtherApplications:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
588 sel_highlightColorInView_ = sel_registerName("highlightColorInView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
589 sel_highlightSelectionInClipRect_ = sel_registerName("highlightSelectionInClipRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
590 sel_hitPart = sel_registerName("hitPart");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
591 sel_hitTest_ = sel_registerName("hitTest:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
592 sel_hourOfDay = sel_registerName("hourOfDay");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
593 sel_iconForFile_ = sel_registerName("iconForFile:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
594 sel_iconForFileType_ = sel_registerName("iconForFileType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
595 sel_ignore = sel_registerName("ignore");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
596 sel_ignoreModifierKeysWhileDragging = sel_registerName("ignoreModifierKeysWhileDragging");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
597 sel_imageInterpolation = sel_registerName("imageInterpolation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
598 sel_imageablePageBounds = sel_registerName("imageablePageBounds");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
599 sel_increment = sel_registerName("increment");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
600 sel_indentationPerLevel = sel_registerName("indentationPerLevel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
601 sel_indexOfSelectedItem = sel_registerName("indexOfSelectedItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
602 sel_infoDictionary = sel_registerName("infoDictionary");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
603 sel_init = sel_registerName("init");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
604 sel_initByReferencingFile_ = sel_registerName("initByReferencingFile:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
605 sel_initListDescriptor = sel_registerName("initListDescriptor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
606 sel_initWithAttributes_ = sel_registerName("initWithAttributes:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
607 sel_initWithBitmapDataPlanes_pixelsWide_pixelsHigh_bitsPerSample_samplesPerPixel_hasAlpha_isPlanar_colorSpaceName_bitmapFormat_bytesPerRow_bitsPerPixel_ = sel_registerName("initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bitmapFormat:bytesPerRow:bitsPerPixel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
608 sel_initWithBitmapDataPlanes_pixelsWide_pixelsHigh_bitsPerSample_samplesPerPixel_hasAlpha_isPlanar_colorSpaceName_bytesPerRow_bitsPerPixel_ = sel_registerName("initWithBitmapDataPlanes:pixelsWide:pixelsHigh:bitsPerSample:samplesPerPixel:hasAlpha:isPlanar:colorSpaceName:bytesPerRow:bitsPerPixel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
609 sel_initWithContainerSize_ = sel_registerName("initWithContainerSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
610 sel_initWithContentRect_styleMask_backing_defer_ = sel_registerName("initWithContentRect:styleMask:backing:defer:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
611 sel_initWithContentRect_styleMask_backing_defer_screen_ = sel_registerName("initWithContentRect:styleMask:backing:defer:screen:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
612 sel_initWithData_ = sel_registerName("initWithData:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
613 sel_initWithDictionary_ = sel_registerName("initWithDictionary:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
614 sel_initWithFrame_ = sel_registerName("initWithFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
615 sel_initWithFrame_frameName_groupName_ = sel_registerName("initWithFrame:frameName:groupName:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
616 sel_initWithFrame_pixelFormat_ = sel_registerName("initWithFrame:pixelFormat:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
617 sel_initWithFrame_pullsDown_ = sel_registerName("initWithFrame:pullsDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
618 sel_initWithIdentifier_ = sel_registerName("initWithIdentifier:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
619 sel_initWithImage_hotSpot_ = sel_registerName("initWithImage:hotSpot:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
620 sel_initWithIndex_ = sel_registerName("initWithIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
621 sel_initWithIndexesInRange_ = sel_registerName("initWithIndexesInRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
622 sel_initWithSize_ = sel_registerName("initWithSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
623 sel_initWithStartingColor_endingColor_ = sel_registerName("initWithStartingColor:endingColor:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
624 sel_initWithString_ = sel_registerName("initWithString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
625 sel_initWithString_attributes_ = sel_registerName("initWithString:attributes:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
626 sel_initWithTitle_ = sel_registerName("initWithTitle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
627 sel_initWithTitle_action_keyEquivalent_ = sel_registerName("initWithTitle:action:keyEquivalent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
628 sel_initWithTransform_ = sel_registerName("initWithTransform:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
629 sel_initWithType_location_ = sel_registerName("initWithType:location:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
630 sel_initWithURL_ = sel_registerName("initWithURL:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
631 sel_insertItem_atIndex_ = sel_registerName("insertItem:atIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
632 sel_insertItemWithObjectValue_atIndex_ = sel_registerName("insertItemWithObjectValue:atIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
633 sel_insertTabViewItem_atIndex_ = sel_registerName("insertTabViewItem:atIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
634 sel_insertText_ = sel_registerName("insertText:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
635 sel_intValue = sel_registerName("intValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
636 sel_intercellSpacing = sel_registerName("intercellSpacing");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
637 sel_interpretKeyEvents_ = sel_registerName("interpretKeyEvents:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
638 sel_invalidate = sel_registerName("invalidate");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
639 sel_invert = sel_registerName("invert");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
640 sel_isEmpty = sel_registerName("isEmpty");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
641 sel_isEqual_ = sel_registerName("isEqual:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
642 sel_isEqualTo_ = sel_registerName("isEqualTo:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
643 sel_isEqualToString_ = sel_registerName("isEqualToString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
644 sel_isFilePackageAtPath_ = sel_registerName("isFilePackageAtPath:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
645 sel_isFlipped = sel_registerName("isFlipped");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
646 sel_isHidden = sel_registerName("isHidden");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
647 sel_isKeyWindow = sel_registerName("isKeyWindow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
648 sel_isKindOfClass_ = sel_registerName("isKindOfClass:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
649 sel_isMainThread = sel_registerName("isMainThread");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
650 sel_isOpaque = sel_registerName("isOpaque");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
651 sel_isPlanar = sel_registerName("isPlanar");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
652 sel_isRowSelected_ = sel_registerName("isRowSelected:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
653 sel_isRunning = sel_registerName("isRunning");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
654 sel_isSessionOnly = sel_registerName("isSessionOnly");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
655 sel_isVisible = sel_registerName("isVisible");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
656 sel_itemArray = sel_registerName("itemArray");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
657 sel_itemAtIndex_ = sel_registerName("itemAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
658 sel_itemAtRow_ = sel_registerName("itemAtRow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
659 sel_itemObjectValueAtIndex_ = sel_registerName("itemObjectValueAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
660 sel_itemTitleAtIndex_ = sel_registerName("itemTitleAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
661 sel_jobDisposition = sel_registerName("jobDisposition");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
662 sel_keyCode = sel_registerName("keyCode");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
663 sel_keyDown_ = sel_registerName("keyDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
664 sel_keyEquivalent = sel_registerName("keyEquivalent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
665 sel_keyEquivalentModifierMask = sel_registerName("keyEquivalentModifierMask");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
666 sel_keyUp_ = sel_registerName("keyUp:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
667 sel_keyWindow = sel_registerName("keyWindow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
668 sel_lastPathComponent = sel_registerName("lastPathComponent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
669 sel_leading = sel_registerName("leading");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
670 sel_length = sel_registerName("length");
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
671 sel_lengthOfBytesUsingEncoding_ = sel_registerName("lengthOfBytesUsingEncoding:");
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
672 sel_levelForItem_ = sel_registerName("levelForItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
673 sel_lineFragmentUsedRectForGlyphAtIndex_effectiveRange_ = sel_registerName("lineFragmentUsedRectForGlyphAtIndex:effectiveRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
674 sel_lineFragmentUsedRectForGlyphAtIndex_effectiveRange_withoutAdditionalLayout_ = sel_registerName("lineFragmentUsedRectForGlyphAtIndex:effectiveRange:withoutAdditionalLayout:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
675 sel_lineToPoint_ = sel_registerName("lineToPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
676 sel_loadHTMLString_baseURL_ = sel_registerName("loadHTMLString:baseURL:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
677 sel_loadNibFile_externalNameTable_withZone_ = sel_registerName("loadNibFile:externalNameTable:withZone:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
678 sel_loadRequest_ = sel_registerName("loadRequest:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
679 sel_localizedDescription = sel_registerName("localizedDescription");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
680 sel_location = sel_registerName("location");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
681 sel_locationForGlyphAtIndex_ = sel_registerName("locationForGlyphAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
682 sel_locationInWindow = sel_registerName("locationInWindow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
683 sel_lowercaseString = sel_registerName("lowercaseString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
684 sel_mainFrame = sel_registerName("mainFrame");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
685 sel_mainMenu = sel_registerName("mainMenu");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
686 sel_mainRunLoop = sel_registerName("mainRunLoop");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
687 sel_mainScreen = sel_registerName("mainScreen");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
688 sel_makeCurrentContext = sel_registerName("makeCurrentContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
689 sel_makeFirstResponder_ = sel_registerName("makeFirstResponder:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
690 sel_makeKeyAndOrderFront_ = sel_registerName("makeKeyAndOrderFront:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
691 sel_markedRange = sel_registerName("markedRange");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
692 sel_markedTextAttributes = sel_registerName("markedTextAttributes");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
693 sel_maxValue = sel_registerName("maxValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
694 sel_maximum = sel_registerName("maximum");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
695 sel_maximumFractionDigits = sel_registerName("maximumFractionDigits");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
696 sel_maximumIntegerDigits = sel_registerName("maximumIntegerDigits");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
697 sel_menu = sel_registerName("menu");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
698 sel_menu_willHighlightItem_ = sel_registerName("menu:willHighlightItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
699 sel_menuDidClose_ = sel_registerName("menuDidClose:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
700 sel_menuForEvent_ = sel_registerName("menuForEvent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
701 sel_menuNeedsUpdate_ = sel_registerName("menuNeedsUpdate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
702 sel_menuWillOpen_ = sel_registerName("menuWillOpen:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
703 sel_metaKey = sel_registerName("metaKey");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
704 sel_minValue = sel_registerName("minValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
705 sel_minimum = sel_registerName("minimum");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
706 sel_minimumSize = sel_registerName("minimumSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
707 sel_minuteOfHour = sel_registerName("minuteOfHour");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
708 sel_modifierFlags = sel_registerName("modifierFlags");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
709 sel_monthOfYear = sel_registerName("monthOfYear");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
710 sel_mouseDown_ = sel_registerName("mouseDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
711 sel_mouseDragged_ = sel_registerName("mouseDragged:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
712 sel_mouseEntered_ = sel_registerName("mouseEntered:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
713 sel_mouseExited_ = sel_registerName("mouseExited:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
714 sel_mouseLocation = sel_registerName("mouseLocation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
715 sel_mouseLocationOutsideOfEventStream = sel_registerName("mouseLocationOutsideOfEventStream");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
716 sel_mouseMoved_ = sel_registerName("mouseMoved:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
717 sel_mouseUp_ = sel_registerName("mouseUp:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
718 sel_moveColumn_toColumn_ = sel_registerName("moveColumn:toColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
719 sel_moveToBeginningOfParagraph_ = sel_registerName("moveToBeginningOfParagraph:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
720 sel_moveToEndOfParagraph_ = sel_registerName("moveToEndOfParagraph:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
721 sel_moveToPoint_ = sel_registerName("moveToPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
722 sel_moveUp_ = sel_registerName("moveUp:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
723 sel_mutableString = sel_registerName("mutableString");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
724 sel_name = sel_registerName("name");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
725 sel_namesOfPromisedFilesDroppedAtDestination_ = sel_registerName("namesOfPromisedFilesDroppedAtDestination:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
726 sel_nextEventMatchingMask_untilDate_inMode_dequeue_ = sel_registerName("nextEventMatchingMask:untilDate:inMode:dequeue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
727 sel_nextObject = sel_registerName("nextObject");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
728 sel_nextWordFromIndex_forward_ = sel_registerName("nextWordFromIndex:forward:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
729 sel_noteNumberOfRowsChanged = sel_registerName("noteNumberOfRowsChanged");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
730 sel_numberOfColumns = sel_registerName("numberOfColumns");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
731 sel_numberOfComponents = sel_registerName("numberOfComponents");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
732 sel_numberOfGlyphs = sel_registerName("numberOfGlyphs");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
733 sel_numberOfItems = sel_registerName("numberOfItems");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
734 sel_numberOfRows = sel_registerName("numberOfRows");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
735 sel_numberOfRowsInTableView_ = sel_registerName("numberOfRowsInTableView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
736 sel_numberOfSelectedRows = sel_registerName("numberOfSelectedRows");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
737 sel_numberOfVisibleItems = sel_registerName("numberOfVisibleItems");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
738 sel_numberWithBool_ = sel_registerName("numberWithBool:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
739 sel_numberWithInt_ = sel_registerName("numberWithInt:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
740 sel_numberWithInteger_ = sel_registerName("numberWithInteger:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
741 sel_object = sel_registerName("object");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
742 sel_objectAtIndex_ = sel_registerName("objectAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
743 sel_objectEnumerator = sel_registerName("objectEnumerator");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
744 sel_objectForInfoDictionaryKey_ = sel_registerName("objectForInfoDictionaryKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
745 sel_objectForKey_ = sel_registerName("objectForKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
746 sel_openFile_withApplication_ = sel_registerName("openFile:withApplication:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
747 sel_openGLContext = sel_registerName("openGLContext");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
748 sel_openPanel = sel_registerName("openPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
749 sel_openURL_ = sel_registerName("openURL:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
750 sel_openURLs_withAppBundleIdentifier_options_additionalEventParamDescriptor_launchIdentifiers_ = sel_registerName("openURLs:withAppBundleIdentifier:options:additionalEventParamDescriptor:launchIdentifiers:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
751 sel_options = sel_registerName("options");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
752 sel_orderFront_ = sel_registerName("orderFront:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
753 sel_orderFrontRegardless = sel_registerName("orderFrontRegardless");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
754 sel_orderFrontStandardAboutPanel_ = sel_registerName("orderFrontStandardAboutPanel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
755 sel_orderOut_ = sel_registerName("orderOut:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
756 sel_orderedWindows = sel_registerName("orderedWindows");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
757 sel_otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2_ = sel_registerName("otherEventWithType:location:modifierFlags:timestamp:windowNumber:context:subtype:data1:data2:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
758 sel_otherMouseDown_ = sel_registerName("otherMouseDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
759 sel_otherMouseDragged_ = sel_registerName("otherMouseDragged:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
760 sel_otherMouseUp_ = sel_registerName("otherMouseUp:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
761 sel_outlineTableColumn = sel_registerName("outlineTableColumn");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
762 sel_outlineView_child_ofItem_ = sel_registerName("outlineView:child:ofItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
763 sel_outlineView_didClickTableColumn_ = sel_registerName("outlineView:didClickTableColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
764 sel_outlineView_isItemExpandable_ = sel_registerName("outlineView:isItemExpandable:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
765 sel_outlineView_numberOfChildrenOfItem_ = sel_registerName("outlineView:numberOfChildrenOfItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
766 sel_outlineView_objectValueForTableColumn_byItem_ = sel_registerName("outlineView:objectValueForTableColumn:byItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
767 sel_outlineView_setObjectValue_forTableColumn_byItem_ = sel_registerName("outlineView:setObjectValue:forTableColumn:byItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
768 sel_outlineView_shouldCollapseItem_ = sel_registerName("outlineView:shouldCollapseItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
769 sel_outlineView_shouldExpandItem_ = sel_registerName("outlineView:shouldExpandItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
770 sel_outlineView_willDisplayCell_forTableColumn_item_ = sel_registerName("outlineView:willDisplayCell:forTableColumn:item:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
771 sel_outlineViewColumnDidMove_ = sel_registerName("outlineViewColumnDidMove:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
772 sel_outlineViewColumnDidResize_ = sel_registerName("outlineViewColumnDidResize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
773 sel_outlineViewItemDidExpand_ = sel_registerName("outlineViewItemDidExpand:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
774 sel_outlineViewSelectionDidChange_ = sel_registerName("outlineViewSelectionDidChange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
775 sel_pageDown_ = sel_registerName("pageDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
776 sel_pageTitle = sel_registerName("pageTitle");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
777 sel_pageUp_ = sel_registerName("pageUp:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
778 sel_panelConvertFont_ = sel_registerName("panelConvertFont:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
779 sel_paperSize = sel_registerName("paperSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
780 sel_paragraphs = sel_registerName("paragraphs");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
781 sel_paste_ = sel_registerName("paste:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
782 sel_pasteboard_provideDataForType_ = sel_registerName("pasteboard:provideDataForType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
783 sel_pasteboardWithName_ = sel_registerName("pasteboardWithName:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
784 sel_performDragOperation_ = sel_registerName("performDragOperation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
785 sel_performSelectorOnMainThread_withObject_waitUntilDone_ = sel_registerName("performSelectorOnMainThread:withObject:waitUntilDone:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
786 sel_pixelsHigh = sel_registerName("pixelsHigh");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
787 sel_pixelsWide = sel_registerName("pixelsWide");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
788 sel_pointSize = sel_registerName("pointSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
789 sel_pointValue = sel_registerName("pointValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
790 sel_pointingHandCursor = sel_registerName("pointingHandCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
791 sel_popUpContextMenu_withEvent_forView_ = sel_registerName("popUpContextMenu:withEvent:forView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
792 sel_prependTransform_ = sel_registerName("prependTransform:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
793 sel_preventDefault = sel_registerName("preventDefault");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
794 sel_printDocumentView = sel_registerName("printDocumentView");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
795 sel_printOperationWithPrintInfo_ = sel_registerName("printOperationWithPrintInfo:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
796 sel_printOperationWithView_printInfo_ = sel_registerName("printOperationWithView:printInfo:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
797 sel_printPanel = sel_registerName("printPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
798 sel_printer = sel_registerName("printer");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
799 sel_printerNames = sel_registerName("printerNames");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
800 sel_printerWithName_ = sel_registerName("printerWithName:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
801 sel_propertyListForType_ = sel_registerName("propertyListForType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
802 sel_rangeValue = sel_registerName("rangeValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
803 sel_recentSearches = sel_registerName("recentSearches");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
804 sel_rectOfColumn_ = sel_registerName("rectOfColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
805 sel_rectOfRow_ = sel_registerName("rectOfRow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
806 sel_redComponent = sel_registerName("redComponent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
807 sel_reflectScrolledClipView_ = sel_registerName("reflectScrolledClipView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
808 sel_registerForDraggedTypes_ = sel_registerName("registerForDraggedTypes:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
809 sel_release = sel_registerName("release");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
810 sel_reload_ = sel_registerName("reload:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
811 sel_reloadData = sel_registerName("reloadData");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
812 sel_reloadItem_ = sel_registerName("reloadItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
813 sel_reloadItem_reloadChildren_ = sel_registerName("reloadItem:reloadChildren:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
814 sel_removeAllItems = sel_registerName("removeAllItems");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
815 sel_removeAllPoints = sel_registerName("removeAllPoints");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
816 sel_removeFromSuperview = sel_registerName("removeFromSuperview");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
817 sel_removeItem_ = sel_registerName("removeItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
818 sel_removeItemAtIndex_ = sel_registerName("removeItemAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
819 sel_removeItemAtPath_error_ = sel_registerName("removeItemAtPath:error:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
820 sel_removeObject_ = sel_registerName("removeObject:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
821 sel_removeObjectAtIndex_ = sel_registerName("removeObjectAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
822 sel_removeObserver_ = sel_registerName("removeObserver:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
823 sel_removeStatusItem_ = sel_registerName("removeStatusItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
824 sel_removeTabViewItem_ = sel_registerName("removeTabViewItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
825 sel_removeTableColumn_ = sel_registerName("removeTableColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
826 sel_removeTemporaryAttribute_forCharacterRange_ = sel_registerName("removeTemporaryAttribute:forCharacterRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
827 sel_replaceCharactersInRange_withString_ = sel_registerName("replaceCharactersInRange:withString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
828 sel_representation = sel_registerName("representation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
829 sel_request = sel_registerName("request");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
830 sel_requestWithURL_ = sel_registerName("requestWithURL:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
831 sel_resignFirstResponder = sel_registerName("resignFirstResponder");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
832 sel_resizeDownCursor = sel_registerName("resizeDownCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
833 sel_resizeLeftCursor = sel_registerName("resizeLeftCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
834 sel_resizeLeftRightCursor = sel_registerName("resizeLeftRightCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
835 sel_resizeRightCursor = sel_registerName("resizeRightCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
836 sel_resizeUpCursor = sel_registerName("resizeUpCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
837 sel_resizeUpDownCursor = sel_registerName("resizeUpDownCursor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
838 sel_resizingMask = sel_registerName("resizingMask");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
839 sel_respondsToSelector_ = sel_registerName("respondsToSelector:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
840 sel_restoreGraphicsState = sel_registerName("restoreGraphicsState");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
841 sel_retain = sel_registerName("retain");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
842 sel_retainCount = sel_registerName("retainCount");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
843 sel_rightMouseDown_ = sel_registerName("rightMouseDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
844 sel_rightMouseDragged_ = sel_registerName("rightMouseDragged:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
845 sel_rightMouseUp_ = sel_registerName("rightMouseUp:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
846 sel_rotateByDegrees_ = sel_registerName("rotateByDegrees:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
847 sel_rowAtPoint_ = sel_registerName("rowAtPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
848 sel_rowForItem_ = sel_registerName("rowForItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
849 sel_rowHeight = sel_registerName("rowHeight");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
850 sel_rowsInRect_ = sel_registerName("rowsInRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
851 sel_run = sel_registerName("run");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
852 sel_runModal = sel_registerName("runModal");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
853 sel_runModalForWindow_ = sel_registerName("runModalForWindow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
854 sel_runModalWithPrintInfo_ = sel_registerName("runModalWithPrintInfo:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
855 sel_runMode_beforeDate_ = sel_registerName("runMode:beforeDate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
856 sel_runOperation = sel_registerName("runOperation");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
857 sel_samplesPerPixel = sel_registerName("samplesPerPixel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
858 sel_saveGraphicsState = sel_registerName("saveGraphicsState");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
859 sel_savePanel = sel_registerName("savePanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
860 sel_scaleXBy_yBy_ = sel_registerName("scaleXBy:yBy:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
861 sel_scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_ = sel_registerName("scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
862 sel_screen = sel_registerName("screen");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
863 sel_screens = sel_registerName("screens");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
864 sel_scrollColumnToVisible_ = sel_registerName("scrollColumnToVisible:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
865 sel_scrollRangeToVisible_ = sel_registerName("scrollRangeToVisible:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
866 sel_scrollRectToVisible_ = sel_registerName("scrollRectToVisible:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
867 sel_scrollRowToVisible_ = sel_registerName("scrollRowToVisible:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
868 sel_scrollToPoint_ = sel_registerName("scrollToPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
869 sel_scrollWheel_ = sel_registerName("scrollWheel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
870 sel_scrollerWidth = sel_registerName("scrollerWidth");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
871 sel_secondOfMinute = sel_registerName("secondOfMinute");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
872 sel_secondarySelectedControlColor = sel_registerName("secondarySelectedControlColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
873 sel_selectAll_ = sel_registerName("selectAll:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
874 sel_selectItem_ = sel_registerName("selectItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
875 sel_selectItemAtIndex_ = sel_registerName("selectItemAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
876 sel_selectRow_byExtendingSelection_ = sel_registerName("selectRow:byExtendingSelection:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
877 sel_selectRowIndexes_byExtendingSelection_ = sel_registerName("selectRowIndexes:byExtendingSelection:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
878 sel_selectTabViewItemAtIndex_ = sel_registerName("selectTabViewItemAtIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
879 sel_selectedControlTextColor = sel_registerName("selectedControlTextColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
880 sel_selectedRange = sel_registerName("selectedRange");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
881 sel_selectedRow = sel_registerName("selectedRow");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
882 sel_selectedRowIndexes = sel_registerName("selectedRowIndexes");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
883 sel_selectedTabViewItem = sel_registerName("selectedTabViewItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
884 sel_selectedTextBackgroundColor = sel_registerName("selectedTextBackgroundColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
885 sel_selectedTextColor = sel_registerName("selectedTextColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
886 sel_sendAction_to_ = sel_registerName("sendAction:to:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
887 sel_sendEvent_ = sel_registerName("sendEvent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
888 sel_separatorItem = sel_registerName("separatorItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
889 sel_set = sel_registerName("set");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
890 sel_setAcceptsMouseMovedEvents_ = sel_registerName("setAcceptsMouseMovedEvents:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
891 sel_setAction_ = sel_registerName("setAction:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
892 sel_setAlertStyle_ = sel_registerName("setAlertStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
893 sel_setAlignment_ = sel_registerName("setAlignment:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
894 sel_setAllowsColumnReordering_ = sel_registerName("setAllowsColumnReordering:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
895 sel_setAllowsFloats_ = sel_registerName("setAllowsFloats:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
896 sel_setAllowsMixedState_ = sel_registerName("setAllowsMixedState:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
897 sel_setAllowsMultipleSelection_ = sel_registerName("setAllowsMultipleSelection:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
898 sel_setAlphaValue_ = sel_registerName("setAlphaValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
899 sel_setApplicationIconImage_ = sel_registerName("setApplicationIconImage:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
900 sel_setApplicationNameForUserAgent_ = sel_registerName("setApplicationNameForUserAgent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
901 sel_setAttributedStringValue_ = sel_registerName("setAttributedStringValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
902 sel_setAttributedTitle_ = sel_registerName("setAttributedTitle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
903 sel_setAutoenablesItems_ = sel_registerName("setAutoenablesItems:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
904 sel_setAutohidesScrollers_ = sel_registerName("setAutohidesScrollers:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
905 sel_setAutoresizesOutlineColumn_ = sel_registerName("setAutoresizesOutlineColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
906 sel_setAutoresizesSubviews_ = sel_registerName("setAutoresizesSubviews:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
907 sel_setAutoresizingMask_ = sel_registerName("setAutoresizingMask:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
908 sel_setAutosaveExpandedItems_ = sel_registerName("setAutosaveExpandedItems:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
909 sel_setBackgroundColor_ = sel_registerName("setBackgroundColor:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
910 sel_setBezelStyle_ = sel_registerName("setBezelStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
911 sel_setBorderType_ = sel_registerName("setBorderType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
912 sel_setBorderWidth_ = sel_registerName("setBorderWidth:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
913 sel_setBordered_ = sel_registerName("setBordered:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
914 sel_setBoxType_ = sel_registerName("setBoxType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
915 sel_setButtonType_ = sel_registerName("setButtonType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
916 sel_setCacheMode_ = sel_registerName("setCacheMode:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
917 sel_setCanChooseDirectories_ = sel_registerName("setCanChooseDirectories:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
918 sel_setCanChooseFiles_ = sel_registerName("setCanChooseFiles:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
919 sel_setCellClass_ = sel_registerName("setCellClass:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
920 sel_setClip = sel_registerName("setClip");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
921 sel_setColor_ = sel_registerName("setColor:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
922 sel_setColumnAutoresizingStyle_ = sel_registerName("setColumnAutoresizingStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
923 sel_setCompositingOperation_ = sel_registerName("setCompositingOperation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
924 sel_setContainerSize_ = sel_registerName("setContainerSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
925 sel_setContentView_ = sel_registerName("setContentView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
926 sel_setContentViewMargins_ = sel_registerName("setContentViewMargins:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
927 sel_setCurrentContext_ = sel_registerName("setCurrentContext:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
928 sel_setCurrentOperation_ = sel_registerName("setCurrentOperation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
929 sel_setData_forType_ = sel_registerName("setData:forType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
930 sel_setDataCell_ = sel_registerName("setDataCell:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
931 sel_setDataSource_ = sel_registerName("setDataSource:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
932 sel_setDatePickerElements_ = sel_registerName("setDatePickerElements:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
933 sel_setDatePickerStyle_ = sel_registerName("setDatePickerStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
934 sel_setDateValue_ = sel_registerName("setDateValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
935 sel_setDefaultFlatness_ = sel_registerName("setDefaultFlatness:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
936 sel_setDefaultTabInterval_ = sel_registerName("setDefaultTabInterval:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
937 sel_setDelegate_ = sel_registerName("setDelegate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
938 sel_setDestination_allowOverwrite_ = sel_registerName("setDestination:allowOverwrite:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
939 sel_setDirectory_ = sel_registerName("setDirectory:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
940 sel_setDocumentView_ = sel_registerName("setDocumentView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
941 sel_setDoubleAction_ = sel_registerName("setDoubleAction:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
942 sel_setDoubleValue_ = sel_registerName("setDoubleValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
943 sel_setDownloadDelegate_ = sel_registerName("setDownloadDelegate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
944 sel_setDrawsBackground_ = sel_registerName("setDrawsBackground:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
945 sel_setEditable_ = sel_registerName("setEditable:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
946 sel_setEnabled_ = sel_registerName("setEnabled:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
947 sel_setFill = sel_registerName("setFill");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
948 sel_setFireDate_ = sel_registerName("setFireDate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
949 sel_setFirstLineHeadIndent_ = sel_registerName("setFirstLineHeadIndent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
950 sel_setFloatValue_knobProportion_ = sel_registerName("setFloatValue:knobProportion:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
951 sel_setFocusRingType_ = sel_registerName("setFocusRingType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
952 sel_setFont_ = sel_registerName("setFont:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
953 sel_setFormatter_ = sel_registerName("setFormatter:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
954 sel_setFrame_ = sel_registerName("setFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
955 sel_setFrame_display_ = sel_registerName("setFrame:display:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
956 sel_setFrameLoadDelegate_ = sel_registerName("setFrameLoadDelegate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
957 sel_setFrameOrigin_ = sel_registerName("setFrameOrigin:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
958 sel_setFrameSize_ = sel_registerName("setFrameSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
959 sel_setHasHorizontalScroller_ = sel_registerName("setHasHorizontalScroller:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
960 sel_setHasShadow_ = sel_registerName("setHasShadow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
961 sel_setHasVerticalScroller_ = sel_registerName("setHasVerticalScroller:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
962 sel_setHeaderCell_ = sel_registerName("setHeaderCell:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
963 sel_setHeaderView_ = sel_registerName("setHeaderView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
964 sel_setHidden_ = sel_registerName("setHidden:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
965 sel_setHiddenUntilMouseMoves_ = sel_registerName("setHiddenUntilMouseMoves:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
966 sel_setHighlightMode_ = sel_registerName("setHighlightMode:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
967 sel_setHighlighted_ = sel_registerName("setHighlighted:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
968 sel_setHorizontalScroller_ = sel_registerName("setHorizontalScroller:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
969 sel_setHorizontallyResizable_ = sel_registerName("setHorizontallyResizable:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
970 sel_setIdentifier_ = sel_registerName("setIdentifier:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
971 sel_setImage_ = sel_registerName("setImage:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
972 sel_setImageAlignment_ = sel_registerName("setImageAlignment:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
973 sel_setImageInterpolation_ = sel_registerName("setImageInterpolation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
974 sel_setImagePosition_ = sel_registerName("setImagePosition:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
975 sel_setImageScaling_ = sel_registerName("setImageScaling:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
976 sel_setIncrement_ = sel_registerName("setIncrement:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
977 sel_setIndentationPerLevel_ = sel_registerName("setIndentationPerLevel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
978 sel_setIndeterminate_ = sel_registerName("setIndeterminate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
979 sel_setJavaEnabled_ = sel_registerName("setJavaEnabled:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
980 sel_setJobDisposition_ = sel_registerName("setJobDisposition:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
981 sel_setJobTitle_ = sel_registerName("setJobTitle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
982 sel_setKeyEquivalent_ = sel_registerName("setKeyEquivalent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
983 sel_setKeyEquivalentModifierMask_ = sel_registerName("setKeyEquivalentModifierMask:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
984 sel_setLabel_ = sel_registerName("setLabel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
985 sel_setLeaf_ = sel_registerName("setLeaf:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
986 sel_setLength_ = sel_registerName("setLength:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
987 sel_setLevel_ = sel_registerName("setLevel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
988 sel_setLineBreakMode_ = sel_registerName("setLineBreakMode:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
989 sel_setLineCapStyle_ = sel_registerName("setLineCapStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
990 sel_setLineDash_count_phase_ = sel_registerName("setLineDash:count:phase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
991 sel_setLineFragmentPadding_ = sel_registerName("setLineFragmentPadding:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
992 sel_setLineFragmentRect_forGlyphRange_usedRect_ = sel_registerName("setLineFragmentRect:forGlyphRange:usedRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
993 sel_setLineJoinStyle_ = sel_registerName("setLineJoinStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
994 sel_setLineSpacing_ = sel_registerName("setLineSpacing:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
995 sel_setLineWidth_ = sel_registerName("setLineWidth:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
996 sel_setMarkedText_selectedRange_ = sel_registerName("setMarkedText:selectedRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
997 sel_setMaxSize_ = sel_registerName("setMaxSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
998 sel_setMaxValue_ = sel_registerName("setMaxValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
999 sel_setMaximum_ = sel_registerName("setMaximum:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1000 sel_setMaximumFractionDigits_ = sel_registerName("setMaximumFractionDigits:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1001 sel_setMaximumIntegerDigits_ = sel_registerName("setMaximumIntegerDigits:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1002 sel_setMenu_ = sel_registerName("setMenu:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1003 sel_setMinSize_ = sel_registerName("setMinSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1004 sel_setMinValue_ = sel_registerName("setMinValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1005 sel_setMinWidth_ = sel_registerName("setMinWidth:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1006 sel_setMinimum_ = sel_registerName("setMinimum:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1007 sel_setMinimumFractionDigits_ = sel_registerName("setMinimumFractionDigits:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1008 sel_setMinimumIntegerDigits_ = sel_registerName("setMinimumIntegerDigits:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1009 sel_setMiterLimit_ = sel_registerName("setMiterLimit:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1010 sel_setNeedsDisplay_ = sel_registerName("setNeedsDisplay:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1011 sel_setNeedsDisplayInRect_ = sel_registerName("setNeedsDisplayInRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1012 sel_setNumberOfVisibleItems_ = sel_registerName("setNumberOfVisibleItems:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1013 sel_setNumberStyle_ = sel_registerName("setNumberStyle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1014 sel_setObject_forKey_ = sel_registerName("setObject:forKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1015 sel_setOnMouseEntered_ = sel_registerName("setOnMouseEntered:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1016 sel_setOpaque_ = sel_registerName("setOpaque:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1017 sel_setOptions_ = sel_registerName("setOptions:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1018 sel_setOutlineTableColumn_ = sel_registerName("setOutlineTableColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1019 sel_setPanelFont_isMultiple_ = sel_registerName("setPanelFont:isMultiple:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1020 sel_setPartialStringValidationEnabled_ = sel_registerName("setPartialStringValidationEnabled:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1021 sel_setPatternPhase_ = sel_registerName("setPatternPhase:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1022 sel_setPixelFormat_ = sel_registerName("setPixelFormat:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1023 sel_setPolicyDelegate_ = sel_registerName("setPolicyDelegate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1024 sel_setPrinter_ = sel_registerName("setPrinter:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1025 sel_setPropertyList_forType_ = sel_registerName("setPropertyList:forType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1026 sel_setPullsDown_ = sel_registerName("setPullsDown:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1027 sel_setReleasedWhenClosed_ = sel_registerName("setReleasedWhenClosed:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1028 sel_setResizingMask_ = sel_registerName("setResizingMask:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1029 sel_setResourceLoadDelegate_ = sel_registerName("setResourceLoadDelegate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1030 sel_setRichText_ = sel_registerName("setRichText:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1031 sel_setRowHeight_ = sel_registerName("setRowHeight:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1032 sel_setSelectable_ = sel_registerName("setSelectable:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1033 sel_setSelectedRange_ = sel_registerName("setSelectedRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1034 sel_setShouldAntialias_ = sel_registerName("setShouldAntialias:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1035 sel_setShowsPrintPanel_ = sel_registerName("setShowsPrintPanel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1036 sel_setShowsProgressPanel_ = sel_registerName("setShowsProgressPanel:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1037 sel_setSize_ = sel_registerName("setSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1038 sel_setState_ = sel_registerName("setState:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1039 sel_setString_ = sel_registerName("setString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1040 sel_setString_forType_ = sel_registerName("setString:forType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1041 sel_setStringValue_ = sel_registerName("setStringValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1042 sel_setStroke = sel_registerName("setStroke");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1043 sel_setSubmenu_ = sel_registerName("setSubmenu:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1044 sel_setTabStops_ = sel_registerName("setTabStops:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1045 sel_setTabViewType_ = sel_registerName("setTabViewType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1046 sel_setTarget_ = sel_registerName("setTarget:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1047 sel_setTextColor_ = sel_registerName("setTextColor:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1048 sel_setTitle_ = sel_registerName("setTitle:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1049 sel_setTitleFont_ = sel_registerName("setTitleFont:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1050 sel_setTitlePosition_ = sel_registerName("setTitlePosition:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1051 sel_setToolTip_ = sel_registerName("setToolTip:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1052 sel_setTransformStruct_ = sel_registerName("setTransformStruct:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1053 sel_setUIDelegate_ = sel_registerName("setUIDelegate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1054 sel_setURL_ = sel_registerName("setURL:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1055 sel_setUpPrintOperationDefaultValues = sel_registerName("setUpPrintOperationDefaultValues");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1056 sel_setUsesAlternatingRowBackgroundColors_ = sel_registerName("setUsesAlternatingRowBackgroundColors:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1057 sel_setUsesThreadedAnimation_ = sel_registerName("setUsesThreadedAnimation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1058 sel_setValue_forKey_ = sel_registerName("setValue:forKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1059 sel_setValueWraps_ = sel_registerName("setValueWraps:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1060 sel_setVerticalScroller_ = sel_registerName("setVerticalScroller:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1061 sel_setView_ = sel_registerName("setView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1062 sel_setWidth_ = sel_registerName("setWidth:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1063 sel_setWidthTracksTextView_ = sel_registerName("setWidthTracksTextView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1064 sel_setWindingRule_ = sel_registerName("setWindingRule:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1065 sel_setWorksWhenModal_ = sel_registerName("setWorksWhenModal:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1066 sel_setWraps_ = sel_registerName("setWraps:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1067 sel_sharedApplication = sel_registerName("sharedApplication");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1068 sel_sharedColorPanel = sel_registerName("sharedColorPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1069 sel_sharedFontManager = sel_registerName("sharedFontManager");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1070 sel_sharedFontPanel = sel_registerName("sharedFontPanel");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1071 sel_sharedHTTPCookieStorage = sel_registerName("sharedHTTPCookieStorage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1072 sel_sharedPrintInfo = sel_registerName("sharedPrintInfo");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1073 sel_sharedWorkspace = sel_registerName("sharedWorkspace");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1074 sel_shiftKey = sel_registerName("shiftKey");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1075 sel_size = sel_registerName("size");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1076 sel_sizeToFit = sel_registerName("sizeToFit");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1077 sel_sizeValue = sel_registerName("sizeValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1078 sel_skipDescendents = sel_registerName("skipDescendents");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1079 sel_smallSystemFontSize = sel_registerName("smallSystemFontSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1080 sel_sortIndicatorRectForBounds_ = sel_registerName("sortIndicatorRectForBounds:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1081 sel_standardPreferences = sel_registerName("standardPreferences");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1082 sel_startAnimation_ = sel_registerName("startAnimation:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1083 sel_state = sel_registerName("state");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1084 sel_statusItemWithLength_ = sel_registerName("statusItemWithLength:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1085 sel_stop_ = sel_registerName("stop:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1086 sel_stopLoading_ = sel_registerName("stopLoading:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1087 sel_string = sel_registerName("string");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1088 sel_stringByAddingPercentEscapesUsingEncoding_ = sel_registerName("stringByAddingPercentEscapesUsingEncoding:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1089 sel_stringByAppendingPathComponent_ = sel_registerName("stringByAppendingPathComponent:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1090 sel_stringByAppendingString_ = sel_registerName("stringByAppendingString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1091 sel_stringByDeletingLastPathComponent = sel_registerName("stringByDeletingLastPathComponent");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1092 sel_stringByDeletingPathExtension = sel_registerName("stringByDeletingPathExtension");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1093 sel_stringByEvaluatingJavaScriptFromString_ = sel_registerName("stringByEvaluatingJavaScriptFromString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1094 sel_stringByReplacingOccurrencesOfString_withString_ = sel_registerName("stringByReplacingOccurrencesOfString:withString:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1095 sel_stringForObjectValue_ = sel_registerName("stringForObjectValue:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1096 sel_stringForType_ = sel_registerName("stringForType:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1097 sel_stringValue = sel_registerName("stringValue");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1098 sel_stringWithCharacters_length_ = sel_registerName("stringWithCharacters:length:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1099 sel_stringWithUTF8String_ = sel_registerName("stringWithUTF8String:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1100 sel_stroke = sel_registerName("stroke");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1101 sel_strokeRect_ = sel_registerName("strokeRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1102 sel_styleMask = sel_registerName("styleMask");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1103 sel_submenu = sel_registerName("submenu");
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
1104 sel_substringWithRange_ = sel_registerName("substringWithRange:");
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1105 sel_subviews = sel_registerName("subviews");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1106 sel_superclass = sel_registerName("superclass");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1107 sel_superview = sel_registerName("superview");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1108 sel_systemFontOfSize_ = sel_registerName("systemFontOfSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1109 sel_systemFontSize = sel_registerName("systemFontSize");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1110 sel_systemFontSizeForControlSize_ = sel_registerName("systemFontSizeForControlSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1111 sel_systemStatusBar = sel_registerName("systemStatusBar");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1112 sel_systemVersion = sel_registerName("systemVersion");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1113 sel_tabStopType = sel_registerName("tabStopType");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1114 sel_tabStops = sel_registerName("tabStops");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1115 sel_tabView_didSelectTabViewItem_ = sel_registerName("tabView:didSelectTabViewItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1116 sel_tabView_willSelectTabViewItem_ = sel_registerName("tabView:willSelectTabViewItem:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1117 sel_tabViewItemAtPoint_ = sel_registerName("tabViewItemAtPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1118 sel_tableColumns = sel_registerName("tableColumns");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1119 sel_tableView_didClickTableColumn_ = sel_registerName("tableView:didClickTableColumn:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1120 sel_tableView_objectValueForTableColumn_row_ = sel_registerName("tableView:objectValueForTableColumn:row:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1121 sel_tableView_setObjectValue_forTableColumn_row_ = sel_registerName("tableView:setObjectValue:forTableColumn:row:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1122 sel_tableView_shouldEditTableColumn_row_ = sel_registerName("tableView:shouldEditTableColumn:row:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1123 sel_tableView_willDisplayCell_forTableColumn_row_ = sel_registerName("tableView:willDisplayCell:forTableColumn:row:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1124 sel_tableViewColumnDidMove_ = sel_registerName("tableViewColumnDidMove:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1125 sel_tableViewColumnDidResize_ = sel_registerName("tableViewColumnDidResize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1126 sel_tableViewSelectionDidChange_ = sel_registerName("tableViewSelectionDidChange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1127 sel_target = sel_registerName("target");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1128 sel_terminate_ = sel_registerName("terminate:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1129 sel_textBackgroundColor = sel_registerName("textBackgroundColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1130 sel_textColor = sel_registerName("textColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1131 sel_textContainer = sel_registerName("textContainer");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1132 sel_textDidChange_ = sel_registerName("textDidChange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1133 sel_textStorage = sel_registerName("textStorage");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1134 sel_textView_clickedOnLink_atIndex_ = sel_registerName("textView:clickedOnLink:atIndex:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1135 sel_textView_willChangeSelectionFromCharacterRange_toCharacterRange_ = sel_registerName("textView:willChangeSelectionFromCharacterRange:toCharacterRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1136 sel_textViewDidChangeSelection_ = sel_registerName("textViewDidChangeSelection:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1137 sel_threadDictionary = sel_registerName("threadDictionary");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1138 sel_tile = sel_registerName("tile");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1139 sel_timeZone = sel_registerName("timeZone");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1140 sel_title = sel_registerName("title");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1141 sel_titleCell = sel_registerName("titleCell");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1142 sel_titleOfSelectedItem = sel_registerName("titleOfSelectedItem");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1143 sel_titleRectForBounds_ = sel_registerName("titleRectForBounds:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1144 sel_transform = sel_registerName("transform");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1145 sel_transformPoint_ = sel_registerName("transformPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1146 sel_transformSize_ = sel_registerName("transformSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1147 sel_transformStruct = sel_registerName("transformStruct");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1148 sel_transformUsingAffineTransform_ = sel_registerName("transformUsingAffineTransform:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1149 sel_translateXBy_yBy_ = sel_registerName("translateXBy:yBy:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1150 sel_type = sel_registerName("type");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1151 sel_types = sel_registerName("types");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1152 sel_typesetter = sel_registerName("typesetter");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1153 sel_unarchiveObjectWithData_ = sel_registerName("unarchiveObjectWithData:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1154 sel_unhideAllApplications_ = sel_registerName("unhideAllApplications:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1155 sel_unmarkText = sel_registerName("unmarkText");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1156 sel_unregisterDraggedTypes = sel_registerName("unregisterDraggedTypes");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1157 sel_use = sel_registerName("use");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1158 sel_usedRectForTextContainer_ = sel_registerName("usedRectForTextContainer:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1159 sel_userInfo = sel_registerName("userInfo");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1160 sel_usesAlternatingRowBackgroundColors = sel_registerName("usesAlternatingRowBackgroundColors");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1161 sel_validAttributesForMarkedText = sel_registerName("validAttributesForMarkedText");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1162 sel_valueForKey_ = sel_registerName("valueForKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1163 sel_valueWithPoint_ = sel_registerName("valueWithPoint:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1164 sel_valueWithRange_ = sel_registerName("valueWithRange:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1165 sel_valueWithRect_ = sel_registerName("valueWithRect:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1166 sel_valueWithSize_ = sel_registerName("valueWithSize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1167 sel_visibleFrame = sel_registerName("visibleFrame");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1168 sel_visibleRect = sel_registerName("visibleRect");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1169 sel_wantsPeriodicDraggingUpdates = sel_registerName("wantsPeriodicDraggingUpdates");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1170 sel_wantsToHandleMouseEvents = sel_registerName("wantsToHandleMouseEvents");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1171 sel_webFrame = sel_registerName("webFrame");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1172 sel_webView_contextMenuItemsForElement_defaultMenuItems_ = sel_registerName("webView:contextMenuItemsForElement:defaultMenuItems:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1173 sel_webView_createWebViewWithRequest_ = sel_registerName("webView:createWebViewWithRequest:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1174 sel_webView_decidePolicyForMIMEType_request_frame_decisionListener_ = sel_registerName("webView:decidePolicyForMIMEType:request:frame:decisionListener:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1175 sel_webView_decidePolicyForNavigationAction_request_frame_decisionListener_ = sel_registerName("webView:decidePolicyForNavigationAction:request:frame:decisionListener:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1176 sel_webView_decidePolicyForNewWindowAction_request_newFrameName_decisionListener_ = sel_registerName("webView:decidePolicyForNewWindowAction:request:newFrameName:decisionListener:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1177 sel_webView_didChangeLocationWithinPageForFrame_ = sel_registerName("webView:didChangeLocationWithinPageForFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1178 sel_webView_didCommitLoadForFrame_ = sel_registerName("webView:didCommitLoadForFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1179 sel_webView_didFailProvisionalLoadWithError_forFrame_ = sel_registerName("webView:didFailProvisionalLoadWithError:forFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1180 sel_webView_didFinishLoadForFrame_ = sel_registerName("webView:didFinishLoadForFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1181 sel_webView_didReceiveTitle_forFrame_ = sel_registerName("webView:didReceiveTitle:forFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1182 sel_webView_didStartProvisionalLoadForFrame_ = sel_registerName("webView:didStartProvisionalLoadForFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1183 sel_webView_identifierForInitialRequest_fromDataSource_ = sel_registerName("webView:identifierForInitialRequest:fromDataSource:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1184 sel_webView_mouseDidMoveOverElement_modifierFlags_ = sel_registerName("webView:mouseDidMoveOverElement:modifierFlags:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1185 sel_webView_printFrameView_ = sel_registerName("webView:printFrameView:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1186 sel_webView_resource_didFailLoadingWithError_fromDataSource_ = sel_registerName("webView:resource:didFailLoadingWithError:fromDataSource:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1187 sel_webView_resource_didFinishLoadingFromDataSource_ = sel_registerName("webView:resource:didFinishLoadingFromDataSource:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1188 sel_webView_resource_willSendRequest_redirectResponse_fromDataSource_ = sel_registerName("webView:resource:willSendRequest:redirectResponse:fromDataSource:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1189 sel_webView_runJavaScriptAlertPanelWithMessage_ = sel_registerName("webView:runJavaScriptAlertPanelWithMessage:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1190 sel_webView_runJavaScriptConfirmPanelWithMessage_ = sel_registerName("webView:runJavaScriptConfirmPanelWithMessage:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1191 sel_webView_runOpenPanelForFileButtonWithResultListener_ = sel_registerName("webView:runOpenPanelForFileButtonWithResultListener:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1192 sel_webView_setFrame_ = sel_registerName("webView:setFrame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1193 sel_webView_setResizable_ = sel_registerName("webView:setResizable:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1194 sel_webView_setStatusBarVisible_ = sel_registerName("webView:setStatusBarVisible:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1195 sel_webView_setStatusText_ = sel_registerName("webView:setStatusText:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1196 sel_webView_setToolbarsVisible_ = sel_registerName("webView:setToolbarsVisible:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1197 sel_webView_unableToImplementPolicyWithError_frame_ = sel_registerName("webView:unableToImplementPolicyWithError:frame:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1198 sel_webViewClose_ = sel_registerName("webViewClose:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1199 sel_webViewFocus_ = sel_registerName("webViewFocus:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1200 sel_webViewShow_ = sel_registerName("webViewShow:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1201 sel_webViewUnfocus_ = sel_registerName("webViewUnfocus:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1202 sel_wheelDelta = sel_registerName("wheelDelta");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1203 sel_width = sel_registerName("width");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1204 sel_window = sel_registerName("window");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1205 sel_windowBackgroundColor = sel_registerName("windowBackgroundColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1206 sel_windowDidBecomeKey_ = sel_registerName("windowDidBecomeKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1207 sel_windowDidMove_ = sel_registerName("windowDidMove:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1208 sel_windowDidResignKey_ = sel_registerName("windowDidResignKey:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1209 sel_windowDidResize_ = sel_registerName("windowDidResize:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1210 sel_windowFrameColor = sel_registerName("windowFrameColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1211 sel_windowFrameTextColor = sel_registerName("windowFrameTextColor");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1212 sel_windowNumber = sel_registerName("windowNumber");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1213 sel_windowShouldClose_ = sel_registerName("windowShouldClose:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1214 sel_windowWillClose_ = sel_registerName("windowWillClose:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1215 sel_windows = sel_registerName("windows");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1216 sel_worksWhenModal = sel_registerName("worksWhenModal");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1217 sel_wraps = sel_registerName("wraps");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1218 sel_writeToPasteboard_ = sel_registerName("writeToPasteboard:");
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1219 sel_yearOfCommonEra = sel_registerName("yearOfCommonEra");
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1220
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1221 NSAccessibilityButtonRole = new NSString (NSAccessibilityButtonRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1222 NSAccessibilityCheckBoxRole = new NSString (NSAccessibilityCheckBoxRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1223 NSAccessibilityChildrenAttribute = new NSString (NSAccessibilityChildrenAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1224 NSAccessibilityColumnRole = new NSString (NSAccessibilityColumnRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1225 NSAccessibilityComboBoxRole = new NSString (NSAccessibilityComboBoxRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1226 NSAccessibilityConfirmAction = new NSString (NSAccessibilityConfirmAction_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1227 NSAccessibilityContentsAttribute = new NSString (NSAccessibilityContentsAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1228 NSAccessibilityDescriptionAttribute = new NSString (NSAccessibilityDescriptionAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1229 NSAccessibilityDialogSubrole = new NSString (NSAccessibilityDialogSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1230 NSAccessibilityEnabledAttribute = new NSString (NSAccessibilityEnabledAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1231 NSAccessibilityExpandedAttribute = new NSString (NSAccessibilityExpandedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1232 NSAccessibilityFloatingWindowSubrole = new NSString (NSAccessibilityFloatingWindowSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1233 NSAccessibilityFocusedAttribute = new NSString (NSAccessibilityFocusedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1234 NSAccessibilityFocusedUIElementChangedNotification = new NSString (NSAccessibilityFocusedUIElementChangedNotification_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1235 NSAccessibilityGridRole = new NSString (NSAccessibilityGridRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1236 NSAccessibilityGroupRole = new NSString (NSAccessibilityGroupRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1237 NSAccessibilityHelpAttribute = new NSString (NSAccessibilityHelpAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1238 NSAccessibilityHelpTagRole = new NSString (NSAccessibilityHelpTagRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1239 NSAccessibilityHorizontalOrientationValue = new NSString (NSAccessibilityHorizontalOrientationValue_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1240 NSAccessibilityHorizontalScrollBarAttribute = new NSString (NSAccessibilityHorizontalScrollBarAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1241 NSAccessibilityImageRole = new NSString (NSAccessibilityImageRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1242 NSAccessibilityIncrementorRole = new NSString (NSAccessibilityIncrementorRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1243 NSAccessibilityInsertionPointLineNumberAttribute = new NSString (NSAccessibilityInsertionPointLineNumberAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1244 NSAccessibilityLabelValueAttribute = new NSString (NSAccessibilityLabelValueAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1245 NSAccessibilityLineForIndexParameterizedAttribute = new NSString (NSAccessibilityLineForIndexParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1246 NSAccessibilityLinkRole = new NSString (NSAccessibilityLinkRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1247 NSAccessibilityLinkTextAttribute = new NSString (NSAccessibilityLinkTextAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1248 NSAccessibilityListRole = new NSString (NSAccessibilityListRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1249 NSAccessibilityMaxValueAttribute = new NSString (NSAccessibilityMaxValueAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1250 NSAccessibilityMenuBarRole = new NSString (NSAccessibilityMenuBarRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1251 NSAccessibilityMenuButtonRole = new NSString (NSAccessibilityMenuButtonRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1252 NSAccessibilityMenuItemRole = new NSString (NSAccessibilityMenuItemRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1253 NSAccessibilityMenuRole = new NSString (NSAccessibilityMenuRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1254 NSAccessibilityMinValueAttribute = new NSString (NSAccessibilityMinValueAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1255 NSAccessibilityNextContentsAttribute = new NSString (NSAccessibilityNextContentsAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1256 NSAccessibilityNumberOfCharactersAttribute = new NSString (NSAccessibilityNumberOfCharactersAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1257 NSAccessibilityOrientationAttribute = new NSString (NSAccessibilityOrientationAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1258 NSAccessibilityOutlineRole = new NSString (NSAccessibilityOutlineRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1259 NSAccessibilityOutlineRowSubrole = new NSString (NSAccessibilityOutlineRowSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1260 NSAccessibilityParentAttribute = new NSString (NSAccessibilityParentAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1261 NSAccessibilityPopUpButtonRole = new NSString (NSAccessibilityPopUpButtonRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1262 NSAccessibilityPositionAttribute = new NSString (NSAccessibilityPositionAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1263 NSAccessibilityPressAction = new NSString (NSAccessibilityPressAction_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1264 NSAccessibilityPreviousContentsAttribute = new NSString (NSAccessibilityPreviousContentsAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1265 NSAccessibilityProgressIndicatorRole = new NSString (NSAccessibilityProgressIndicatorRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1266 NSAccessibilityRTFForRangeParameterizedAttribute = new NSString (NSAccessibilityRTFForRangeParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1267 NSAccessibilityRadioButtonRole = new NSString (NSAccessibilityRadioButtonRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1268 NSAccessibilityRadioGroupRole = new NSString (NSAccessibilityRadioGroupRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1269 NSAccessibilityRangeForIndexParameterizedAttribute = new NSString (NSAccessibilityRangeForIndexParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1270 NSAccessibilityRangeForLineParameterizedAttribute = new NSString (NSAccessibilityRangeForLineParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1271 NSAccessibilityRangeForPositionParameterizedAttribute = new NSString (NSAccessibilityRangeForPositionParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1272 NSAccessibilityRoleAttribute = new NSString (NSAccessibilityRoleAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1273 NSAccessibilityRoleDescriptionAttribute = new NSString (NSAccessibilityRoleDescriptionAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1274 NSAccessibilityRowRole = new NSString (NSAccessibilityRowRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1275 NSAccessibilityScrollAreaRole = new NSString (NSAccessibilityScrollAreaRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1276 NSAccessibilityScrollBarRole = new NSString (NSAccessibilityScrollBarRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1277 NSAccessibilitySelectedAttribute = new NSString (NSAccessibilitySelectedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1278 NSAccessibilitySelectedChildrenAttribute = new NSString (NSAccessibilitySelectedChildrenAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1279 NSAccessibilitySelectedChildrenChangedNotification = new NSString (NSAccessibilitySelectedChildrenChangedNotification_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1280 NSAccessibilitySelectedTextAttribute = new NSString (NSAccessibilitySelectedTextAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1281 NSAccessibilitySelectedTextChangedNotification = new NSString (NSAccessibilitySelectedTextChangedNotification_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1282 NSAccessibilitySelectedTextRangeAttribute = new NSString (NSAccessibilitySelectedTextRangeAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1283 NSAccessibilitySelectedTextRangesAttribute = new NSString (NSAccessibilitySelectedTextRangesAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1284 NSAccessibilitySizeAttribute = new NSString (NSAccessibilitySizeAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1285 NSAccessibilitySliderRole = new NSString (NSAccessibilitySliderRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1286 NSAccessibilitySortButtonRole = new NSString (NSAccessibilitySortButtonRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1287 NSAccessibilitySplitterRole = new NSString (NSAccessibilitySplitterRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1288 NSAccessibilityStandardWindowSubrole = new NSString (NSAccessibilityStandardWindowSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1289 NSAccessibilityStaticTextRole = new NSString (NSAccessibilityStaticTextRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1290 NSAccessibilityStringForRangeParameterizedAttribute = new NSString (NSAccessibilityStringForRangeParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1291 NSAccessibilityStyleRangeForIndexParameterizedAttribute = new NSString (NSAccessibilityStyleRangeForIndexParameterizedAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1292 NSAccessibilitySubroleAttribute = new NSString (NSAccessibilitySubroleAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1293 NSAccessibilitySystemDialogSubrole = new NSString (NSAccessibilitySystemDialogSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1294 NSAccessibilityTabGroupRole = new NSString (NSAccessibilityTabGroupRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1295 NSAccessibilityTableRole = new NSString (NSAccessibilityTableRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1296 NSAccessibilityTableRowSubrole = new NSString (NSAccessibilityTableRowSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1297 NSAccessibilityTabsAttribute = new NSString (NSAccessibilityTabsAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1298 NSAccessibilityTextAreaRole = new NSString (NSAccessibilityTextAreaRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1299 NSAccessibilityTextFieldRole = new NSString (NSAccessibilityTextFieldRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1300 NSAccessibilityTextLinkSubrole = new NSString (NSAccessibilityTextLinkSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1301 NSAccessibilityTitleAttribute = new NSString (NSAccessibilityTitleAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1302 NSAccessibilityTitleUIElementAttribute = new NSString (NSAccessibilityTitleUIElementAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1303 NSAccessibilityToolbarRole = new NSString (NSAccessibilityToolbarRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1304 NSAccessibilityTopLevelUIElementAttribute = new NSString (NSAccessibilityTopLevelUIElementAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1305 NSAccessibilityUnknownRole = new NSString (NSAccessibilityUnknownRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1306 NSAccessibilityUnknownSubrole = new NSString (NSAccessibilityUnknownSubrole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1307 NSAccessibilityValueAttribute = new NSString (NSAccessibilityValueAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1308 NSAccessibilityValueChangedNotification = new NSString (NSAccessibilityValueChangedNotification_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1309 NSAccessibilityValueDescriptionAttribute = new NSString (NSAccessibilityValueDescriptionAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1310 NSAccessibilityValueIndicatorRole = new NSString (NSAccessibilityValueIndicatorRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1311 NSAccessibilityVerticalOrientationValue = new NSString (NSAccessibilityVerticalOrientationValue_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1312 NSAccessibilityVerticalScrollBarAttribute = new NSString (NSAccessibilityVerticalScrollBarAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1313 NSAccessibilityVisibleCharacterRangeAttribute = new NSString (NSAccessibilityVisibleCharacterRangeAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1314 NSAccessibilityVisibleChildrenAttribute = new NSString (NSAccessibilityVisibleChildrenAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1315 NSAccessibilityWindowAttribute = new NSString (NSAccessibilityWindowAttribute_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1316 NSAccessibilityWindowRole = new NSString (NSAccessibilityWindowRole_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1317 NSBackgroundColorAttributeName = new NSString (NSBackgroundColorAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1318 NSBaselineOffsetAttributeName = new NSString (NSBaselineOffsetAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1319 NSCalibratedRGBColorSpace = new NSString (NSCalibratedRGBColorSpace_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1320 NSDeviceRGBColorSpace = new NSString (NSDeviceRGBColorSpace_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1321 NSDeviceResolution = new NSString (NSDeviceResolution_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1322 NSDragPboard = new NSString (NSDragPboard_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1323 NSFilenamesPboardType = new NSString (NSFilenamesPboardType_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1324 NSFontAttributeName = new NSString (NSFontAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1325 NSForegroundColorAttributeName = new NSString (NSForegroundColorAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1326 NSHTMLPboardType = new NSString (NSHTMLPboardType_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1327 NSLinkAttributeName = new NSString (NSLinkAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1328 NSParagraphStyleAttributeName = new NSString (NSParagraphStyleAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1329 NSPrintAllPages = new NSString (NSPrintAllPages_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1330 NSPrintCopies = new NSString (NSPrintCopies_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1331 NSPrintFirstPage = new NSString (NSPrintFirstPage_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1332 NSPrintJobDisposition = new NSString (NSPrintJobDisposition_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1333 NSPrintLastPage = new NSString (NSPrintLastPage_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1334 NSPrintMustCollate = new NSString (NSPrintMustCollate_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1335 NSPrintPreviewJob = new NSString (NSPrintPreviewJob_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1336 NSPrintSaveJob = new NSString (NSPrintSaveJob_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1337 NSPrintSavePath = new NSString (NSPrintSavePath_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1338 NSPrintSpoolJob = new NSString (NSPrintSpoolJob_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1339 NSRTFPboardType = new NSString (NSRTFPboardType_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1340 NSStrikethroughColorAttributeName = new NSString (NSStrikethroughColorAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1341 NSStrikethroughStyleAttributeName = new NSString (NSStrikethroughStyleAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1342 NSStringPboardType = new NSString (NSStringPboardType_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1343 NSTIFFPboardType = new NSString (NSTIFFPboardType_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1344 NSURLPboardType = new NSString (NSURLPboardType_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1345 NSUnderlineColorAttributeName = new NSString (NSUnderlineColorAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1346 NSUnderlineStyleAttributeName = new NSString (NSUnderlineStyleAttributeName_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1347 NSDefaultRunLoopMode = new NSString (NSDefaultRunLoopMode_);
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1348 NSErrorFailingURLStringKey = new NSString (NSErrorFailingURLStringKey_);
15
2952d5604c0a Ported some widgets, added some stuff to the runtime bindings
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents: 14
diff changeset
1349 }
2952d5604c0a Ported some widgets, added some stuff to the runtime bindings
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents: 14
diff changeset
1350
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1351 public static const int gestaltSystemVersion = ('s'<<24) + ('y'<<16) + ('s'<<8) + 'v';
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1352 public static const int noErr = 0;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1353 alias Carbon.ProcessApplicationTransformState.kProcessTransformToForegroundApplication kProcessTransformToForegroundApplication;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1354 public static const int kAlertCautionIcon = ('c'<<24) + ('a'<<16) + ('u'<<8) + 't';
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1355 public static const int kAlertNoteIcon = ('n'<<24) + ('o'<<16) + ('t'<<8) + 'e';
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1356 public static const int kAlertStopIcon = ('s'<<24) + ('t'<<16) + ('o'<<8) + 'p';
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1357
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1358 public static const objc.SEL sel_sendSelection;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1359 public static const objc.SEL sel_sendDoubleSelection;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1360 public static const objc.SEL sel_sendVerticalSelection;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1361 public static const objc.SEL sel_sendHorizontalSelection;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1362 public static const objc.SEL sel_timerProc_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1363 public static const objc.SEL sel_handleNotification_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1364
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1365 /** JNI natives */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1366
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1367 /** @method flags=jni */
53
6914d8d302de Updated ColorDialog to 3.514
Jacob Carlborg <doob@me.com>
parents: 52
diff changeset
1368 public static void* NewGlobalRef (Object object)
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1369 {
130
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1370 auto o = cast(void*) object;
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1371 GC.addRoot(o);
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1372
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1373 return o;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1374 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1375 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1376 * @method flags=jni
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1377 * @param globalRef cast=(jobject)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1378 */
130
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1379 public static void DeleteGlobalRef(void* globalRef)
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1380 {
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1381 GC.removeRoot(globalRef);
3d4579727e0e Fixes #2 and #3
Jacob Carlborg <doob@me.com>
parents: 126
diff changeset
1382 }
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1383 /** @method flags=no_gen */
53
6914d8d302de Updated ColorDialog to 3.514
Jacob Carlborg <doob@me.com>
parents: 52
diff changeset
1384 public static Object JNIGetObject (void* globalRef)
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1385 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1386 return cast(Object) globalRef;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1387 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1388
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1389 /** Carbon calls */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1390
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1391 alias Carbon.Gestalt Gestalt;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1392 /** @param psn cast=(ProcessSerialNumber *) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1393 alias Carbon.GetCurrentProcess GetCurrentProcess;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1394 /** @param psn cast=(ProcessSerialNumber *) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1395 alias Carbon.SetFrontProcess SetFrontProcess;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1396 /** @param psn cast=(ProcessSerialNumber *) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1397 alias Carbon.TransformProcessType TransformProcessType;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1398 alias Carbon.CPSSetProcessName CPSSetProcessName;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1399 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1400 alias Carbon.SetThemeCursor SetThemeCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1401 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1402 alias Carbon.GetCurrentButtonState GetCurrentButtonState;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1403
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1404 alias Carbon.ThemeCursor ThemeCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1405
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1406 public static const ThemeCursor kThemeCopyArrowCursor = ThemeCursor.kThemeCopyArrowCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1407 public static const ThemeCursor kThemeNotAllowedCursor = ThemeCursor.kThemeNotAllowedCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1408 public static const ThemeCursor kThemeAliasArrowCursor = ThemeCursor.kThemeAliasArrowCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1409
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1410 /** C calls */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1411
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1412 alias unistd.getpid getpid;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1413
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1414 /** QuickDraw calls */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1415
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1416 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1417 alias Carbon.NewRgn NewRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1418 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1419 alias Carbon.RectRgn RectRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1420 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1421 alias Carbon.OpenRgn OpenRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1422 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1423 alias Carbon.OffsetRgn OffsetRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1424 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1425 alias Carbon.MoveTo MoveTo;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1426 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1427 alias Carbon.LineTo LineTo;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1428 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1429 alias Carbon.UnionRgn UnionRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1430 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1431 alias Carbon.CloseRgn CloseRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1432 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1433 alias Carbon.DisposeRgn DisposeRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1434 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1435 alias Carbon.PtInRgn PtInRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1436 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1437 alias Carbon.GetRegionBounds GetRegionBounds;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1438 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1439 alias Carbon.SectRgn SectRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1440 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1441 alias Carbon.EmptyRgn EmptyRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1442 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1443 alias Carbon.DiffRgn DiffRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1444 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1445 alias Carbon.RectInRgn RectInRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1446 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1447 alias Carbon.QDRegionToRects QDRegionToRects;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1448 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1449 alias Carbon.CopyRgn CopyRgn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1450 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1451 alias Carbon.SetRect SetRect;
50
30adfb32d4be Updated Shell to 3.514
Jacob Carlborg <doob@me.com>
parents: 48
diff changeset
1452 alias Carbon.kQDParseRegionFromTop kQDParseRegionFromTop;
30adfb32d4be Updated Shell to 3.514
Jacob Carlborg <doob@me.com>
parents: 48
diff changeset
1453 alias Carbon.kQDParseRegionFromBottom kQDParseRegionFromBottom;
30adfb32d4be Updated Shell to 3.514
Jacob Carlborg <doob@me.com>
parents: 48
diff changeset
1454 alias Carbon.kQDParseRegionFromLeft kQDParseRegionFromLeft;
30adfb32d4be Updated Shell to 3.514
Jacob Carlborg <doob@me.com>
parents: 48
diff changeset
1455 alias Carbon.kQDParseRegionFromRight kQDParseRegionFromRight;
30adfb32d4be Updated Shell to 3.514
Jacob Carlborg <doob@me.com>
parents: 48
diff changeset
1456 alias Carbon.kQDParseRegionFromTopLeft kQDParseRegionFromTopLeft;
30adfb32d4be Updated Shell to 3.514
Jacob Carlborg <doob@me.com>
parents: 48
diff changeset
1457 alias Carbon.kQDRegionToRectsMsgParse kQDRegionToRectsMsgParse;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1458
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1459 /** Custom callbacks */
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
1460
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1461 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1462 alias custom.drawRect_CALLBACK drawRect_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1463 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1464 alias custom.drawInteriorWithFrame_inView_CALLBACK drawInteriorWithFrame_inView_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1465 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1466 alias custom.setFrame_CALLBACK setFrame_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1467 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1468 alias custom.setFrameOrigin_CALLBACK setFrameOrigin_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1469 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1470 alias custom.setFrameSize_CALLBACK setFrameSize_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1471 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1472 alias custom.hitTest_CALLBACK hitTest_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1473 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1474 alias custom.webView_setFrame_CALLBACK webView_setFrame_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1475 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1476 alias custom.markedRange_CALLBACK markedRange_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1477 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1478 alias custom.selectedRange_CALLBACK selectedRange_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1479 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1480 alias custom.highlightSelectionInClipRect_CALLBACK highlightSelectionInClipRect_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1481 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1482 alias custom.attributedSubstringFromRange_CALLBACK attributedSubstringFromRange_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1483 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1484 alias custom.setMarkedText_selectedRange_CALLBACK setMarkedText_selectedRange_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1485 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1486 alias custom.characterIndexForPoint_CALLBACK characterIndexForPoint_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1487 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1488 alias custom.firstRectForCharacterRange_CALLBACK firstRectForCharacterRange_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1489 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1490 alias custom.textView_willChangeSelectionFromCharacterRange_toCharacterRange_CALLBACK textView_willChangeSelectionFromCharacterRange_toCharacterRange_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1491 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1492 alias custom.draggedImage_movedTo_CALLBACK draggedImage_movedTo_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1493 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1494 alias custom.draggedImage_beganAt_CALLBACK draggedImage_beganAt_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1495 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1496 alias custom.draggedImage_endedAt_operation_CALLBACK draggedImage_endedAt_operation_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1497 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1498 alias custom.accessibilityHitTest_CALLBACK accessibilityHitTest_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1499 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1500 alias custom.dragSelectionWithEvent_offset_slideBack_CALLBACK dragSelectionWithEvent_offset_slideBack_CALLBACK;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1501 /** Custom structure return */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1502
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1503 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1504 alias Cocoa.NSIntersectionRect NSIntersectionRect;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1505
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1506 /** Objective-C runtime */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1507
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1508 /** @param cls cast=(Class) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1509 alias objc.class_addIvar class_addIvar;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1510 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1511 * @param cls cast=(Class)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1512 * @param name cast=(SEL)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1513 * @param imp cast=(IMP)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1514 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1515 alias objc.class_addMethod class_addMethod;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1516 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1517 * @param cls cast=(Class)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1518 * @param protocol cast=(Protocol *)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1519 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1520 alias objc.class_addProtocol class_addProtocol;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1521 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1522 * @param cls cast=(Class)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1523 * @param name cast=(SEL)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1524 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1525 alias objc.class_getMethodImplementation class_getMethodImplementation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1526 /** @method flags=no_gen */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1527 alias objc.class_getName class_getName;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1528 /** @method flags=dynamic */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1529 alias objc.instrumentObjcMessageSends instrumentObjcMessageSends;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1530 /** @param superclass cast=(Class) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1531 alias objc.objc_allocateClassPair objc_allocateClassPair;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1532 alias objc.objc_getClass objc_getClass;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1533 alias objc.objc_getProtocol objc_getProtocol;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1534 alias objc.objc_lookUpClass objc_lookUpClass;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1535 /** @method flags=cast */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1536 alias objc.objc_msgSendSuper objc_msgSendSuper;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1537 /** @param cls cast=(Class) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1538 alias objc.objc_registerClassPair objc_registerClassPair;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1539 /** @param obj cast=(id) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1540 alias objc.object_getClassName object_getClassName;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1541 /** @param obj cast=(id) */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1542 alias objc.object_getClass object_getClass;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1543
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1544 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1545 * @param obj cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1546 * @param outValue cast=(void **)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1547 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1548 alias objc.object_getInstanceVariable object_getInstanceVariable;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1549 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1550 * @param obj cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1551 * @param value cast=(void *)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1552 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1553 alias objc.object_setInstanceVariable object_setInstanceVariable;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1554 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1555 * @param obj cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1556 * @param clazz cast=(Class)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1557 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1558 alias objc.object_setClass object_setClass;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1559 alias objc.sel_registerName sel_registerName;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1560 size_t objc_super_sizeof ()
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1561 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1562 return objc.objc_super.sizeof;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1563 }
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
1564
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
1565
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1566 /** This section is auto generated */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1567
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1568 /** Classes */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1569 public static const objc.id class_DOMDocument;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1570 public static const objc.id class_DOMEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1571 public static const objc.id class_DOMKeyboardEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1572 public static const objc.id class_DOMMouseEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1573 public static const objc.id class_DOMUIEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1574 public static const objc.id class_DOMWheelEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1575 public static const objc.id class_NSActionCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1576 public static const objc.id class_NSAffineTransform;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1577 public static const objc.id class_NSAlert;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1578 public static const objc.id class_NSAppleEventDescriptor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1579 public static const objc.id class_NSApplication;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1580 public static const objc.id class_NSArray;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1581 public static const objc.id class_NSAttributedString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1582 public static const objc.id class_NSAutoreleasePool;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1583 public static const objc.id class_NSBezierPath;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1584 public static const objc.id class_NSBitmapImageRep;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1585 public static const objc.id class_NSBox;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1586 public static const objc.id class_NSBrowserCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1587 public static const objc.id class_NSBundle;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1588 public static const objc.id class_NSButton;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1589 public static const objc.id class_NSButtonCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1590 public static const objc.id class_NSCalendarDate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1591 public static const objc.id class_NSCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1592 public static const objc.id class_NSCharacterSet;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1593 public static const objc.id class_NSClipView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1594 public static const objc.id class_NSCoder;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1595 public static const objc.id class_NSColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1596 public static const objc.id class_NSColorPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1597 public static const objc.id class_NSColorSpace;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1598 public static const objc.id class_NSComboBox;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1599 public static const objc.id class_NSControl;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1600 public static const objc.id class_NSCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1601 public static const objc.id class_NSData;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1602 public static const objc.id class_NSDate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1603 public static const objc.id class_NSDatePicker;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1604 public static const objc.id class_NSDictionary;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1605 public static const objc.id class_NSDirectoryEnumerator;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1606 public static const objc.id class_NSEnumerator;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1607 public static const objc.id class_NSError;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1608 public static const objc.id class_NSEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1609 public static const objc.id class_NSFileManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1610 public static const objc.id class_NSFont;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1611 public static const objc.id class_NSFontManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1612 public static const objc.id class_NSFontPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1613 public static const objc.id class_NSFormatter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1614 public static const objc.id class_NSGradient;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1615 public static const objc.id class_NSGraphicsContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1616 public static const objc.id class_NSHTTPCookie;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1617 public static const objc.id class_NSHTTPCookieStorage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1618 public static const objc.id class_NSImage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1619 public static const objc.id class_NSImageRep;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1620 public static const objc.id class_NSImageView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1621 public static const objc.id class_NSIndexSet;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1622 public static const objc.id class_NSInputManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1623 public static const objc.id class_NSKeyedArchiver;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1624 public static const objc.id class_NSKeyedUnarchiver;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1625 public static const objc.id class_NSLayoutManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1626 public static const objc.id class_NSMenu;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1627 public static const objc.id class_NSMenuItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1628 public static const objc.id class_NSMutableArray;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1629 public static const objc.id class_NSMutableAttributedString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1630 public static const objc.id class_NSMutableDictionary;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1631 public static const objc.id class_NSMutableIndexSet;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1632 public static const objc.id class_NSMutableParagraphStyle;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1633 public static const objc.id class_NSMutableSet;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1634 public static const objc.id class_NSMutableString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1635 public static const objc.id class_NSMutableURLRequest;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1636 public static const objc.id class_NSNotification;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1637 public static const objc.id class_NSNotificationCenter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1638 public static const objc.id class_NSNumber;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1639 public static const objc.id class_NSNumberFormatter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1640 public static const objc.id class_NSObject;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1641 public static const objc.id class_NSOpenGLContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1642 public static const objc.id class_NSOpenGLPixelFormat;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1643 public static const objc.id class_NSOpenGLView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1644 public static const objc.id class_NSOpenPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1645 public static const objc.id class_NSOutlineView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1646 public static const objc.id class_NSPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1647 public static const objc.id class_NSParagraphStyle;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1648 public static const objc.id class_NSPasteboard;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1649 public static const objc.id class_NSPopUpButton;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1650 public static const objc.id class_NSPrintInfo;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1651 public static const objc.id class_NSPrintOperation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1652 public static const objc.id class_NSPrintPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1653 public static const objc.id class_NSPrinter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1654 public static const objc.id class_NSProgressIndicator;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1655 public static const objc.id class_NSResponder;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1656 public static const objc.id class_NSRunLoop;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1657 public static const objc.id class_NSSavePanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1658 public static const objc.id class_NSScreen;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1659 public static const objc.id class_NSScrollView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1660 public static const objc.id class_NSScroller;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1661 public static const objc.id class_NSSearchField;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1662 public static const objc.id class_NSSecureTextField;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1663 public static const objc.id class_NSSet;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1664 public static const objc.id class_NSSlider;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1665 public static const objc.id class_NSStatusBar;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1666 public static const objc.id class_NSStatusItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1667 public static const objc.id class_NSStepper;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1668 public static const objc.id class_NSString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1669 public static const objc.id class_NSTabView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1670 public static const objc.id class_NSTabViewItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1671 public static const objc.id class_NSTableColumn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1672 public static const objc.id class_NSTableHeaderCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1673 public static const objc.id class_NSTableHeaderView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1674 public static const objc.id class_NSTableView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1675 public static const objc.id class_NSText;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1676 public static const objc.id class_NSTextContainer;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1677 public static const objc.id class_NSTextField;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1678 public static const objc.id class_NSTextFieldCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1679 public static const objc.id class_NSTextStorage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1680 public static const objc.id class_NSTextTab;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1681 public static const objc.id class_NSTextView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1682 public static const objc.id class_NSThread;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1683 public static const objc.id class_NSTimeZone;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1684 public static const objc.id class_NSTimer;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1685 public static const objc.id class_NSTypesetter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1686 public static const objc.id class_NSURL;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1687 public static const objc.id class_NSURLDownload;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1688 public static const objc.id class_NSURLRequest;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1689 public static const objc.id class_NSValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1690 public static const objc.id class_NSView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1691 public static const objc.id class_NSWindow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1692 public static const objc.id class_NSWorkspace;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1693 public static const objc.id class_WebDataSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1694 public static const objc.id class_WebFrame;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1695 public static const objc.id class_WebFrameView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1696 public static const objc.id class_WebPreferences;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1697 public static const objc.id class_WebView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1698
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1699 /** Protocols */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1700 public static const objc.Protocol* protocol_NSAccessibility;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1701 public static const objc.Protocol* protocol_NSAccessibilityAdditions;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1702 public static const objc.Protocol* protocol_NSApplicationDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1703 public static const objc.Protocol* protocol_NSApplicationNotifications;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1704 public static const objc.Protocol* protocol_NSColorPanelResponderMethod;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1705 public static const objc.Protocol* protocol_NSComboBoxNotifications;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1706 public static const objc.Protocol* protocol_NSDraggingDestination;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1707 public static const objc.Protocol* protocol_NSDraggingSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1708 public static const objc.Protocol* protocol_NSFontManagerResponderMethod;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1709 public static const objc.Protocol* protocol_NSMenuDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1710 public static const objc.Protocol* protocol_NSOutlineViewDataSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1711 public static const objc.Protocol* protocol_NSOutlineViewDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1712 public static const objc.Protocol* protocol_NSOutlineViewNotifications;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1713 public static const objc.Protocol* protocol_NSPasteboardOwner;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1714 public static const objc.Protocol* protocol_NSTabViewDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1715 public static const objc.Protocol* protocol_NSTableDataSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1716 public static const objc.Protocol* protocol_NSTableViewDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1717 public static const objc.Protocol* protocol_NSTableViewNotifications;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1718 public static const objc.Protocol* protocol_NSTextDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1719 public static const objc.Protocol* protocol_NSTextInput;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1720 public static const objc.Protocol* protocol_NSTextViewDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1721 public static const objc.Protocol* protocol_NSURLDownloadDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1722 public static const objc.Protocol* protocol_NSWindowDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1723 public static const objc.Protocol* protocol_NSWindowNotifications;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1724 public static const objc.Protocol* protocol_WebDocumentRepresentation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1725 public static const objc.Protocol* protocol_WebFrameLoadDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1726 public static const objc.Protocol* protocol_WebOpenPanelResultListener;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1727 public static const objc.Protocol* protocol_WebPolicyDecisionListener;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1728 public static const objc.Protocol* protocol_WebPolicyDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1729 public static const objc.Protocol* protocol_WebResourceLoadDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1730 public static const objc.Protocol* protocol_WebUIDelegate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1731
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
1732 /** Selectors */
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1733 public static const objc.SEL sel_DOMDocument;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1734 public static const objc.SEL sel_IBeamCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1735 public static const objc.SEL sel_TIFFRepresentation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1736 public static const objc.SEL sel_URL;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1737 public static const objc.SEL sel_URLFromPasteboard_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1738 public static const objc.SEL sel_URLWithString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1739 public static const objc.SEL sel_UTF8String;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1740 public static const objc.SEL sel_absoluteString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1741 public static const objc.SEL sel_acceptsFirstResponder;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1742 public static const objc.SEL sel_accessibilityActionDescription_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1743 public static const objc.SEL sel_accessibilityActionNames;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1744 public static const objc.SEL sel_accessibilityAttributeNames;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1745 public static const objc.SEL sel_accessibilityAttributeValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1746 public static const objc.SEL sel_accessibilityAttributeValue_forParameter_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1747 public static const objc.SEL sel_accessibilityFocusedUIElement;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1748 public static const objc.SEL sel_accessibilityHitTest_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1749 public static const objc.SEL sel_accessibilityIsAttributeSettable_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1750 public static const objc.SEL sel_accessibilityIsIgnored;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1751 public static const objc.SEL sel_accessibilityParameterizedAttributeNames;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1752 public static const objc.SEL sel_accessibilityPerformAction_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1753 public static const objc.SEL sel_accessibilitySetOverrideValue_forAttribute_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1754 public static const objc.SEL sel_accessibilitySetValue_forAttribute_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1755 public static const objc.SEL sel_action;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1756 public static const objc.SEL sel_activateIgnoringOtherApps_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1757 public static const objc.SEL sel_addAttribute_value_range_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1758 public static const objc.SEL sel_addClip;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1759 public static const objc.SEL sel_addEventListener_listener_useCapture_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1760 public static const objc.SEL sel_addIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1761 public static const objc.SEL sel_addItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1762 public static const objc.SEL sel_addItemWithObjectValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1763 public static const objc.SEL sel_addLayoutManager_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1764 public static const objc.SEL sel_addObject_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1765 public static const objc.SEL sel_addObjectsFromArray_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1766 public static const objc.SEL sel_addObserver_selector_name_object_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1767 public static const objc.SEL sel_addRepresentation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1768 public static const objc.SEL sel_addSubview_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1769 public static const objc.SEL sel_addSubview_positioned_relativeTo_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1770 public static const objc.SEL sel_addTabStop_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1771 public static const objc.SEL sel_addTabViewItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1772 public static const objc.SEL sel_addTableColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1773 public static const objc.SEL sel_addTemporaryAttribute_value_forCharacterRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1774 public static const objc.SEL sel_addTextContainer_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1775 public static const objc.SEL sel_addTypes_owner_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1776 public static const objc.SEL sel_alertWithMessageText_defaultButton_alternateButton_otherButton_informativeTextWithFormat_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1777 public static const objc.SEL sel_alignment;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1778 public static const objc.SEL sel_allKeys;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1779 public static const objc.SEL sel_alloc;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1780 public static const objc.SEL sel_allowsFloats;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1781 public static const objc.SEL sel_alphaComponent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1782 public static const objc.SEL sel_alphaValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1783 public static const objc.SEL sel_altKey;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1784 public static const objc.SEL sel_alternateSelectedControlTextColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1785 public static const objc.SEL sel_alwaysShowsDecimalSeparator;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1786 public static const objc.SEL sel_appendBezierPath_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1787 public static const objc.SEL sel_appendBezierPathWithArcWithCenter_radius_startAngle_endAngle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1788 public static const objc.SEL sel_appendBezierPathWithArcWithCenter_radius_startAngle_endAngle_clockwise_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1789 public static const objc.SEL sel_appendBezierPathWithGlyphs_count_inFont_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1790 public static const objc.SEL sel_appendBezierPathWithOvalInRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1791 public static const objc.SEL sel_appendBezierPathWithRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1792 public static const objc.SEL sel_appendBezierPathWithRoundedRect_xRadius_yRadius_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1793 public static const objc.SEL sel_appendString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1794 public static const objc.SEL sel_applicationShouldTerminate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1795 public static const objc.SEL sel_applicationWillFinishLaunching_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1796 public static const objc.SEL sel_applicationWillResignActive_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1797 public static const objc.SEL sel_applicationWillTerminate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1798 public static const objc.SEL sel_archivedDataWithRootObject_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1799 public static const objc.SEL sel_array;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1800 public static const objc.SEL sel_arrayWithCapacity_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1801 public static const objc.SEL sel_arrayWithObject_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1802 public static const objc.SEL sel_arrowCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1803 public static const objc.SEL sel_ascender;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1804 public static const objc.SEL sel_attributedSubstringFromRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1805 public static const objc.SEL sel_attributesAtIndex_longestEffectiveRange_inRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1806 public static const objc.SEL sel_autorelease;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1807 public static const objc.SEL sel_availableFontFamilies;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1808 public static const objc.SEL sel_availableFonts;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1809 public static const objc.SEL sel_availableMembersOfFontFamily_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1810 public static const objc.SEL sel_availableTypeFromArray_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1811 public static const objc.SEL sel_baselineOffsetInLayoutManager_glyphIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1812 public static const objc.SEL sel_becomeFirstResponder;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1813 public static const objc.SEL sel_beginDocument;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1814 public static const objc.SEL sel_beginEditing;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1815 public static const objc.SEL sel_beginPageInRect_atPlacement_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1816 public static const objc.SEL sel_bestRepresentationForDevice_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1817 public static const objc.SEL sel_bezierPath;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1818 public static const objc.SEL sel_bezierPathByFlatteningPath;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1819 public static const objc.SEL sel_bezierPathWithRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1820 public static const objc.SEL sel_bitmapData;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1821 public static const objc.SEL sel_bitsPerPixel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1822 public static const objc.SEL sel_bitsPerSample;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1823 public static const objc.SEL sel_blackColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1824 public static const objc.SEL sel_blueComponent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1825 public static const objc.SEL sel_borderWidth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1826 public static const objc.SEL sel_boundingRectForGlyphRange_inTextContainer_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1827 public static const objc.SEL sel_bounds;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1828 public static const objc.SEL sel_bundleIdentifier;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1829 public static const objc.SEL sel_bundlePath;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1830 public static const objc.SEL sel_bundleWithPath_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1831 public static const objc.SEL sel_button;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1832 public static const objc.SEL sel_buttonNumber;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1833 public static const objc.SEL sel_bytes;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1834 public static const objc.SEL sel_bytesPerPlane;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1835 public static const objc.SEL sel_bytesPerRow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1836 public static const objc.SEL sel_calendarDate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1837 public static const objc.SEL sel_canBecomeKeyWindow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1838 public static const objc.SEL sel_canGoBack;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1839 public static const objc.SEL sel_canGoForward;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1840 public static const objc.SEL sel_canShowMIMEType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1841 public static const objc.SEL sel_cancel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1842 public static const objc.SEL sel_cancelTracking;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1843 public static const objc.SEL sel_cascadeTopLeftFromPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1844 public static const objc.SEL sel_cell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1845 public static const objc.SEL sel_cellClass;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1846 public static const objc.SEL sel_cellSizeForBounds_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1847 public static const objc.SEL sel_changeColor_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1848 public static const objc.SEL sel_changeFont_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1849 public static const objc.SEL sel_charCode;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1850 public static const objc.SEL sel_characterAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1851 public static const objc.SEL sel_characterIndexForGlyphAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1852 public static const objc.SEL sel_characterIndexForPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1853 public static const objc.SEL sel_characterIsMember_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1854 public static const objc.SEL sel_characters;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1855 public static const objc.SEL sel_charactersIgnoringModifiers;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1856 public static const objc.SEL sel_chooseFilename_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1857 public static const objc.SEL sel_className;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1858 public static const objc.SEL sel_cleanUpOperation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1859 public static const objc.SEL sel_clearColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1860 public static const objc.SEL sel_clearCurrentContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1861 public static const objc.SEL sel_clearGLContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1862 public static const objc.SEL sel_clickCount;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1863 public static const objc.SEL sel_clientX;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1864 public static const objc.SEL sel_clientY;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1865 public static const objc.SEL sel_close;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1866 public static const objc.SEL sel_closePath;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1867 public static const objc.SEL sel_code;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1868 public static const objc.SEL sel_collapseItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1869 public static const objc.SEL sel_color;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1870 public static const objc.SEL sel_colorUsingColorSpace_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1871 public static const objc.SEL sel_colorUsingColorSpaceName_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1872 public static const objc.SEL sel_colorWithDeviceRed_green_blue_alpha_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1873 public static const objc.SEL sel_colorWithPatternImage_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1874 public static const objc.SEL sel_columnAtPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1875 public static const objc.SEL sel_columnAutoresizingStyle;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1876 public static const objc.SEL sel_columnIndexesInRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1877 public static const objc.SEL sel_columnWithIdentifier_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1878 public static const objc.SEL sel_comboBoxSelectionDidChange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1879 public static const objc.SEL sel_concat;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1880 public static const objc.SEL sel_conformsToProtocol_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1881 public static const objc.SEL sel_containerSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1882 public static const objc.SEL sel_containsObject_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1883 public static const objc.SEL sel_containsPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1884 public static const objc.SEL sel_contentRect;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1885 public static const objc.SEL sel_contentRectForFrameRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1886 public static const objc.SEL sel_contentSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1887 public static const objc.SEL sel_contentSizeForFrameSize_hasHorizontalScroller_hasVerticalScroller_borderType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1888 public static const objc.SEL sel_contentView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1889 public static const objc.SEL sel_contentViewMargins;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1890 public static const objc.SEL sel_context;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1891 public static const objc.SEL sel_controlDarkShadowColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1892 public static const objc.SEL sel_controlHighlightColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1893 public static const objc.SEL sel_controlLightHighlightColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1894 public static const objc.SEL sel_controlPointBounds;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1895 public static const objc.SEL sel_controlShadowColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1896 public static const objc.SEL sel_controlTextColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1897 public static const objc.SEL sel_convertBaseToScreen_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1898 public static const objc.SEL sel_convertPoint_fromView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1899 public static const objc.SEL sel_convertPoint_toView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1900 public static const objc.SEL sel_convertPointFromBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1901 public static const objc.SEL sel_convertPointToBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1902 public static const objc.SEL sel_convertRect_fromView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1903 public static const objc.SEL sel_convertRect_toView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1904 public static const objc.SEL sel_convertRectFromBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1905 public static const objc.SEL sel_convertRectToBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1906 public static const objc.SEL sel_convertScreenToBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1907 public static const objc.SEL sel_convertSize_fromView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1908 public static const objc.SEL sel_convertSize_toView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1909 public static const objc.SEL sel_convertSizeFromBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1910 public static const objc.SEL sel_convertSizeToBase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1911 public static const objc.SEL sel_cookies;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1912 public static const objc.SEL sel_copy;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1913 public static const objc.SEL sel_copy_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1914 public static const objc.SEL sel_count;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1915 public static const objc.SEL sel_createContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1916 public static const objc.SEL sel_createFileAtPath_contents_attributes_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1917 public static const objc.SEL sel_crosshairCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1918 public static const objc.SEL sel_ctrlKey;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1919 public static const objc.SEL sel_currentContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1920 public static const objc.SEL sel_currentEditor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1921 public static const objc.SEL sel_currentEvent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1922 public static const objc.SEL sel_currentInputManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1923 public static const objc.SEL sel_currentPoint;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1924 public static const objc.SEL sel_currentRunLoop;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1925 public static const objc.SEL sel_currentThread;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1926 public static const objc.SEL sel_curveToPoint_controlPoint1_controlPoint2_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1927 public static const objc.SEL sel_cut_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1928 public static const objc.SEL sel_dataForType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1929 public static const objc.SEL sel_dataSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1930 public static const objc.SEL sel_dataWithBytes_length_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1931 public static const objc.SEL sel_dateValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1932 public static const objc.SEL sel_dateWithCalendarFormat_timeZone_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1933 public static const objc.SEL sel_dateWithTimeIntervalSinceNow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1934 public static const objc.SEL sel_dateWithYear_month_day_hour_minute_second_timeZone_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1935 public static const objc.SEL sel_dayOfMonth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1936 public static const objc.SEL sel_decimalDigitCharacterSet;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1937 public static const objc.SEL sel_decimalSeparator;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1938 public static const objc.SEL sel_declareTypes_owner_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1939 public static const objc.SEL sel_defaultCenter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1940 public static const objc.SEL sel_defaultFlatness;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1941 public static const objc.SEL sel_defaultLineHeightForFont_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1942 public static const objc.SEL sel_defaultManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1943 public static const objc.SEL sel_defaultPrinter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1944 public static const objc.SEL sel_defaultTimeZone;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1945 public static const objc.SEL sel_deleteCookie_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1946 public static const objc.SEL sel_deliverResult;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1947 public static const objc.SEL sel_deltaX;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1948 public static const objc.SEL sel_deltaY;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1949 public static const objc.SEL sel_depth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1950 public static const objc.SEL sel_descender;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1951 public static const objc.SEL sel_description;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1952 public static const objc.SEL sel_deselectAll_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1953 public static const objc.SEL sel_deselectItemAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1954 public static const objc.SEL sel_deselectRow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1955 public static const objc.SEL sel_destroyContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1956 public static const objc.SEL sel_detail;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1957 public static const objc.SEL sel_deviceDescription;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1958 public static const objc.SEL sel_deviceRGBColorSpace;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1959 public static const objc.SEL sel_dictionary;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1960 public static const objc.SEL sel_dictionaryWithCapacity_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1961 public static const objc.SEL sel_dictionaryWithObject_forKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1962 public static const objc.SEL sel_disableCursorRects;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1963 public static const objc.SEL sel_disabledControlTextColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1964 public static const objc.SEL sel_displayIfNeeded;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1965 public static const objc.SEL sel_distantFuture;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1966 public static const objc.SEL sel_doCommandBySelector_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1967 public static const objc.SEL sel_documentSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1968 public static const objc.SEL sel_documentView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1969 public static const objc.SEL sel_documentViewShouldHandlePrint;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1970 public static const objc.SEL sel_documentVisibleRect;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1971 public static const objc.SEL sel_doubleClickAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1972 public static const objc.SEL sel_doubleValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1973 public static const objc.SEL sel_download;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1974 public static const objc.SEL sel_download_decideDestinationWithSuggestedFilename_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1975 public static const objc.SEL sel_dragImage_at_offset_event_pasteboard_source_slideBack_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1976 public static const objc.SEL sel_draggedImage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1977 public static const objc.SEL sel_draggedImage_beganAt_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1978 public static const objc.SEL sel_draggedImage_endedAt_operation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1979 public static const objc.SEL sel_draggedImageLocation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1980 public static const objc.SEL sel_draggingDestinationWindow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1981 public static const objc.SEL sel_draggingEnded_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1982 public static const objc.SEL sel_draggingEntered_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1983 public static const objc.SEL sel_draggingExited_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1984 public static const objc.SEL sel_draggingLocation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1985 public static const objc.SEL sel_draggingPasteboard;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1986 public static const objc.SEL sel_draggingSequenceNumber;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1987 public static const objc.SEL sel_draggingSource;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1988 public static const objc.SEL sel_draggingSourceOperationMask;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1989 public static const objc.SEL sel_draggingSourceOperationMaskForLocal_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1990 public static const objc.SEL sel_draggingUpdated_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1991 public static const objc.SEL sel_drawAtPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1992 public static const objc.SEL sel_drawAtPoint_fromRect_operation_fraction_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1993 public static const objc.SEL sel_drawBackgroundForGlyphRange_atPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1994 public static const objc.SEL sel_drawFromPoint_toPoint_options_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1995 public static const objc.SEL sel_drawGlyphsForGlyphRange_atPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1996 public static const objc.SEL sel_drawInRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1997 public static const objc.SEL sel_drawInRect_angle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1998 public static const objc.SEL sel_drawInRect_fromRect_operation_fraction_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
1999 public static const objc.SEL sel_drawInteriorWithFrame_inView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2000 public static const objc.SEL sel_drawRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2001 public static const objc.SEL sel_drawSortIndicatorWithFrame_inView_ascending_priority_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2002 public static const objc.SEL sel_drawStatusBarBackgroundInRect_withHighlight_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2003 public static const objc.SEL sel_drawingRectForBounds_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2004 public static const objc.SEL sel_elementAtIndex_associatedPoints_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2005 public static const objc.SEL sel_elementCount;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2006 public static const objc.SEL sel_enableFreedObjectCheck_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2007 public static const objc.SEL sel_endDocument;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2008 public static const objc.SEL sel_endEditing;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2009 public static const objc.SEL sel_endPage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2010 public static const objc.SEL sel_enumeratorAtPath_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2011 public static const objc.SEL sel_expandItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2012 public static const objc.SEL sel_familyName;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2013 public static const objc.SEL sel_fieldEditor_forObject_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2014 public static const objc.SEL sel_fileURLWithPath_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2015 public static const objc.SEL sel_filename;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2016 public static const objc.SEL sel_filenames;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2017 public static const objc.SEL sel_fill;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2018 public static const objc.SEL sel_fillRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2019 public static const objc.SEL sel_finishLaunching;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2020 public static const objc.SEL sel_firstIndex;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2021 public static const objc.SEL sel_firstRectForCharacterRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2022 public static const objc.SEL sel_firstResponder;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2023 public static const objc.SEL sel_flagsChanged_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2024 public static const objc.SEL sel_flushBuffer;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2025 public static const objc.SEL sel_flushGraphics;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2026 public static const objc.SEL sel_font;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2027 public static const objc.SEL sel_fontName;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2028 public static const objc.SEL sel_fontWithName_size_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2029 public static const objc.SEL sel_frame;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2030 public static const objc.SEL sel_frameOfCellAtColumn_row_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2031 public static const objc.SEL sel_frameRectForContentRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2032 public static const objc.SEL sel_frameSizeForContentSize_hasHorizontalScroller_hasVerticalScroller_borderType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2033 public static const objc.SEL sel_fullPathForApplication_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2034 public static const objc.SEL sel_generalPasteboard;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2035 public static const objc.SEL sel_getBytes_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2036 public static const objc.SEL sel_getBytes_length_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2037 public static const objc.SEL sel_getCharacters_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2038 public static const objc.SEL sel_getCharacters_range_;
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
2039 public static const objc.SEL sel_getCString_maxLength_encoding_;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2040 public static const objc.SEL sel_getComponents_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2041 public static const objc.SEL sel_getGlyphs_range_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2042 public static const objc.SEL sel_getIndexes_maxCount_inIndexRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2043 public static const objc.SEL sel_getInfoForFile_application_type_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2044 public static const objc.SEL sel_glyphIndexForCharacterAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2045 public static const objc.SEL sel_glyphIndexForPoint_inTextContainer_fractionOfDistanceThroughGlyph_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2046 public static const objc.SEL sel_glyphRangeForTextContainer_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2047 public static const objc.SEL sel_goBack;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2048 public static const objc.SEL sel_goForward;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2049 public static const objc.SEL sel_graphicsContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2050 public static const objc.SEL sel_graphicsContextWithBitmapImageRep_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2051 public static const objc.SEL sel_graphicsContextWithWindow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2052 public static const objc.SEL sel_greenComponent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2053 public static const objc.SEL sel_handleEvent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2054 public static const objc.SEL sel_handleMouseEvent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2055 public static const objc.SEL sel_hasAlpha;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2056 public static const objc.SEL sel_hasMarkedText;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2057 public static const objc.SEL sel_headerCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2058 public static const objc.SEL sel_headerRectOfColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2059 public static const objc.SEL sel_headerView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2060 public static const objc.SEL sel_helpRequested_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2061 public static const objc.SEL sel_hide_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2062 public static const objc.SEL sel_hideOtherApplications_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2063 public static const objc.SEL sel_highlightColorInView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2064 public static const objc.SEL sel_highlightSelectionInClipRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2065 public static const objc.SEL sel_hitPart;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2066 public static const objc.SEL sel_hitTest_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2067 public static const objc.SEL sel_hourOfDay;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2068 public static const objc.SEL sel_iconForFile_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2069 public static const objc.SEL sel_iconForFileType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2070 public static const objc.SEL sel_ignore;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2071 public static const objc.SEL sel_ignoreModifierKeysWhileDragging;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2072 public static const objc.SEL sel_imageInterpolation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2073 public static const objc.SEL sel_imageablePageBounds;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2074 public static const objc.SEL sel_increment;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2075 public static const objc.SEL sel_indentationPerLevel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2076 public static const objc.SEL sel_indexOfSelectedItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2077 public static const objc.SEL sel_infoDictionary;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2078 public static const objc.SEL sel_init;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2079 public static const objc.SEL sel_initByReferencingFile_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2080 public static const objc.SEL sel_initListDescriptor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2081 public static const objc.SEL sel_initWithAttributes_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2082 public static const objc.SEL sel_initWithBitmapDataPlanes_pixelsWide_pixelsHigh_bitsPerSample_samplesPerPixel_hasAlpha_isPlanar_colorSpaceName_bitmapFormat_bytesPerRow_bitsPerPixel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2083 public static const objc.SEL sel_initWithBitmapDataPlanes_pixelsWide_pixelsHigh_bitsPerSample_samplesPerPixel_hasAlpha_isPlanar_colorSpaceName_bytesPerRow_bitsPerPixel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2084 public static const objc.SEL sel_initWithContainerSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2085 public static const objc.SEL sel_initWithContentRect_styleMask_backing_defer_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2086 public static const objc.SEL sel_initWithContentRect_styleMask_backing_defer_screen_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2087 public static const objc.SEL sel_initWithData_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2088 public static const objc.SEL sel_initWithDictionary_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2089 public static const objc.SEL sel_initWithFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2090 public static const objc.SEL sel_initWithFrame_frameName_groupName_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2091 public static const objc.SEL sel_initWithFrame_pixelFormat_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2092 public static const objc.SEL sel_initWithFrame_pullsDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2093 public static const objc.SEL sel_initWithIdentifier_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2094 public static const objc.SEL sel_initWithImage_hotSpot_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2095 public static const objc.SEL sel_initWithIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2096 public static const objc.SEL sel_initWithIndexesInRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2097 public static const objc.SEL sel_initWithSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2098 public static const objc.SEL sel_initWithStartingColor_endingColor_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2099 public static const objc.SEL sel_initWithString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2100 public static const objc.SEL sel_initWithString_attributes_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2101 public static const objc.SEL sel_initWithTitle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2102 public static const objc.SEL sel_initWithTitle_action_keyEquivalent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2103 public static const objc.SEL sel_initWithTransform_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2104 public static const objc.SEL sel_initWithType_location_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2105 public static const objc.SEL sel_initWithURL_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2106 public static const objc.SEL sel_insertItem_atIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2107 public static const objc.SEL sel_insertItemWithObjectValue_atIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2108 public static const objc.SEL sel_insertTabViewItem_atIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2109 public static const objc.SEL sel_insertText_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2110 public static const objc.SEL sel_intValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2111 public static const objc.SEL sel_intercellSpacing;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2112 public static const objc.SEL sel_interpretKeyEvents_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2113 public static const objc.SEL sel_invalidate;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2114 public static const objc.SEL sel_invert;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2115 public static const objc.SEL sel_isEmpty;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2116 public static const objc.SEL sel_isEqual_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2117 public static const objc.SEL sel_isEqualTo_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2118 public static const objc.SEL sel_isEqualToString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2119 public static const objc.SEL sel_isFilePackageAtPath_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2120 public static const objc.SEL sel_isFlipped;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2121 public static const objc.SEL sel_isHidden;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2122 public static const objc.SEL sel_isKeyWindow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2123 public static const objc.SEL sel_isKindOfClass_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2124 public static const objc.SEL sel_isMainThread;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2125 public static const objc.SEL sel_isOpaque;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2126 public static const objc.SEL sel_isPlanar;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2127 public static const objc.SEL sel_isRowSelected_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2128 public static const objc.SEL sel_isRunning;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2129 public static const objc.SEL sel_isSessionOnly;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2130 public static const objc.SEL sel_isVisible;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2131 public static const objc.SEL sel_itemArray;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2132 public static const objc.SEL sel_itemAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2133 public static const objc.SEL sel_itemAtRow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2134 public static const objc.SEL sel_itemObjectValueAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2135 public static const objc.SEL sel_itemTitleAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2136 public static const objc.SEL sel_jobDisposition;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2137 public static const objc.SEL sel_keyCode;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2138 public static const objc.SEL sel_keyDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2139 public static const objc.SEL sel_keyEquivalent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2140 public static const objc.SEL sel_keyEquivalentModifierMask;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2141 public static const objc.SEL sel_keyUp_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2142 public static const objc.SEL sel_keyWindow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2143 public static const objc.SEL sel_lastPathComponent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2144 public static const objc.SEL sel_leading;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2145 public static const objc.SEL sel_length;
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
2146 public static const objc.SEL sel_lengthOfBytesUsingEncoding_;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2147 public static const objc.SEL sel_levelForItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2148 public static const objc.SEL sel_lineFragmentUsedRectForGlyphAtIndex_effectiveRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2149 public static const objc.SEL sel_lineFragmentUsedRectForGlyphAtIndex_effectiveRange_withoutAdditionalLayout_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2150 public static const objc.SEL sel_lineToPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2151 public static const objc.SEL sel_loadHTMLString_baseURL_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2152 public static const objc.SEL sel_loadNibFile_externalNameTable_withZone_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2153 public static const objc.SEL sel_loadRequest_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2154 public static const objc.SEL sel_localizedDescription;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2155 public static const objc.SEL sel_location;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2156 public static const objc.SEL sel_locationForGlyphAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2157 public static const objc.SEL sel_locationInWindow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2158 public static const objc.SEL sel_lowercaseString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2159 public static const objc.SEL sel_mainFrame;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2160 public static const objc.SEL sel_mainMenu;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2161 public static const objc.SEL sel_mainRunLoop;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2162 public static const objc.SEL sel_mainScreen;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2163 public static const objc.SEL sel_makeCurrentContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2164 public static const objc.SEL sel_makeFirstResponder_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2165 public static const objc.SEL sel_makeKeyAndOrderFront_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2166 public static const objc.SEL sel_markedRange;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2167 public static const objc.SEL sel_markedTextAttributes;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2168 public static const objc.SEL sel_maxValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2169 public static const objc.SEL sel_maximum;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2170 public static const objc.SEL sel_maximumFractionDigits;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2171 public static const objc.SEL sel_maximumIntegerDigits;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2172 public static const objc.SEL sel_menu;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2173 public static const objc.SEL sel_menu_willHighlightItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2174 public static const objc.SEL sel_menuDidClose_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2175 public static const objc.SEL sel_menuForEvent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2176 public static const objc.SEL sel_menuNeedsUpdate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2177 public static const objc.SEL sel_menuWillOpen_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2178 public static const objc.SEL sel_metaKey;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2179 public static const objc.SEL sel_minValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2180 public static const objc.SEL sel_minimum;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2181 public static const objc.SEL sel_minimumSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2182 public static const objc.SEL sel_minuteOfHour;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2183 public static const objc.SEL sel_modifierFlags;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2184 public static const objc.SEL sel_monthOfYear;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2185 public static const objc.SEL sel_mouseDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2186 public static const objc.SEL sel_mouseDragged_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2187 public static const objc.SEL sel_mouseEntered_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2188 public static const objc.SEL sel_mouseExited_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2189 public static const objc.SEL sel_mouseLocation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2190 public static const objc.SEL sel_mouseLocationOutsideOfEventStream;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2191 public static const objc.SEL sel_mouseMoved_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2192 public static const objc.SEL sel_mouseUp_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2193 public static const objc.SEL sel_moveColumn_toColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2194 public static const objc.SEL sel_moveToBeginningOfParagraph_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2195 public static const objc.SEL sel_moveToEndOfParagraph_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2196 public static const objc.SEL sel_moveToPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2197 public static const objc.SEL sel_moveUp_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2198 public static const objc.SEL sel_mutableString;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2199 public static const objc.SEL sel_name;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2200 public static const objc.SEL sel_namesOfPromisedFilesDroppedAtDestination_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2201 public static const objc.SEL sel_nextEventMatchingMask_untilDate_inMode_dequeue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2202 public static const objc.SEL sel_nextObject;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2203 public static const objc.SEL sel_nextWordFromIndex_forward_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2204 public static const objc.SEL sel_noteNumberOfRowsChanged;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2205 public static const objc.SEL sel_numberOfColumns;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2206 public static const objc.SEL sel_numberOfComponents;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2207 public static const objc.SEL sel_numberOfGlyphs;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2208 public static const objc.SEL sel_numberOfItems;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2209 public static const objc.SEL sel_numberOfRows;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2210 public static const objc.SEL sel_numberOfRowsInTableView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2211 public static const objc.SEL sel_numberOfSelectedRows;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2212 public static const objc.SEL sel_numberOfVisibleItems;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2213 public static const objc.SEL sel_numberWithBool_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2214 public static const objc.SEL sel_numberWithInt_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2215 public static const objc.SEL sel_numberWithInteger_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2216 public static const objc.SEL sel_object;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2217 public static const objc.SEL sel_objectAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2218 public static const objc.SEL sel_objectEnumerator;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2219 public static const objc.SEL sel_objectForInfoDictionaryKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2220 public static const objc.SEL sel_objectForKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2221 public static const objc.SEL sel_openFile_withApplication_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2222 public static const objc.SEL sel_openGLContext;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2223 public static const objc.SEL sel_openPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2224 public static const objc.SEL sel_openURL_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2225 public static const objc.SEL sel_openURLs_withAppBundleIdentifier_options_additionalEventParamDescriptor_launchIdentifiers_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2226 public static const objc.SEL sel_options;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2227 public static const objc.SEL sel_orderFront_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2228 public static const objc.SEL sel_orderFrontRegardless;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2229 public static const objc.SEL sel_orderFrontStandardAboutPanel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2230 public static const objc.SEL sel_orderOut_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2231 public static const objc.SEL sel_orderedWindows;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2232 public static const objc.SEL sel_otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2233 public static const objc.SEL sel_otherMouseDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2234 public static const objc.SEL sel_otherMouseDragged_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2235 public static const objc.SEL sel_otherMouseUp_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2236 public static const objc.SEL sel_outlineTableColumn;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2237 public static const objc.SEL sel_outlineView_child_ofItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2238 public static const objc.SEL sel_outlineView_didClickTableColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2239 public static const objc.SEL sel_outlineView_isItemExpandable_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2240 public static const objc.SEL sel_outlineView_numberOfChildrenOfItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2241 public static const objc.SEL sel_outlineView_objectValueForTableColumn_byItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2242 public static const objc.SEL sel_outlineView_setObjectValue_forTableColumn_byItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2243 public static const objc.SEL sel_outlineView_shouldCollapseItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2244 public static const objc.SEL sel_outlineView_shouldExpandItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2245 public static const objc.SEL sel_outlineView_willDisplayCell_forTableColumn_item_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2246 public static const objc.SEL sel_outlineViewColumnDidMove_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2247 public static const objc.SEL sel_outlineViewColumnDidResize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2248 public static const objc.SEL sel_outlineViewItemDidExpand_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2249 public static const objc.SEL sel_outlineViewSelectionDidChange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2250 public static const objc.SEL sel_pageDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2251 public static const objc.SEL sel_pageTitle;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2252 public static const objc.SEL sel_pageUp_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2253 public static const objc.SEL sel_panelConvertFont_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2254 public static const objc.SEL sel_paperSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2255 public static const objc.SEL sel_paragraphs;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2256 public static const objc.SEL sel_paste_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2257 public static const objc.SEL sel_pasteboard_provideDataForType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2258 public static const objc.SEL sel_pasteboardWithName_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2259 public static const objc.SEL sel_performDragOperation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2260 public static const objc.SEL sel_performSelectorOnMainThread_withObject_waitUntilDone_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2261 public static const objc.SEL sel_pixelsHigh;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2262 public static const objc.SEL sel_pixelsWide;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2263 public static const objc.SEL sel_pointSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2264 public static const objc.SEL sel_pointValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2265 public static const objc.SEL sel_pointingHandCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2266 public static const objc.SEL sel_popUpContextMenu_withEvent_forView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2267 public static const objc.SEL sel_prependTransform_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2268 public static const objc.SEL sel_preventDefault;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2269 public static const objc.SEL sel_printDocumentView;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2270 public static const objc.SEL sel_printOperationWithPrintInfo_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2271 public static const objc.SEL sel_printOperationWithView_printInfo_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2272 public static const objc.SEL sel_printPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2273 public static const objc.SEL sel_printer;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2274 public static const objc.SEL sel_printerNames;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2275 public static const objc.SEL sel_printerWithName_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2276 public static const objc.SEL sel_propertyListForType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2277 public static const objc.SEL sel_rangeValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2278 public static const objc.SEL sel_recentSearches;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2279 public static const objc.SEL sel_rectOfColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2280 public static const objc.SEL sel_rectOfRow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2281 public static const objc.SEL sel_redComponent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2282 public static const objc.SEL sel_reflectScrolledClipView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2283 public static const objc.SEL sel_registerForDraggedTypes_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2284 public static const objc.SEL sel_release;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2285 public static const objc.SEL sel_reload_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2286 public static const objc.SEL sel_reloadData;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2287 public static const objc.SEL sel_reloadItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2288 public static const objc.SEL sel_reloadItem_reloadChildren_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2289 public static const objc.SEL sel_removeAllItems;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2290 public static const objc.SEL sel_removeAllPoints;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2291 public static const objc.SEL sel_removeFromSuperview;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2292 public static const objc.SEL sel_removeItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2293 public static const objc.SEL sel_removeItemAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2294 public static const objc.SEL sel_removeItemAtPath_error_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2295 public static const objc.SEL sel_removeObject_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2296 public static const objc.SEL sel_removeObjectAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2297 public static const objc.SEL sel_removeObserver_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2298 public static const objc.SEL sel_removeStatusItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2299 public static const objc.SEL sel_removeTabViewItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2300 public static const objc.SEL sel_removeTableColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2301 public static const objc.SEL sel_removeTemporaryAttribute_forCharacterRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2302 public static const objc.SEL sel_replaceCharactersInRange_withString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2303 public static const objc.SEL sel_representation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2304 public static const objc.SEL sel_request;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2305 public static const objc.SEL sel_requestWithURL_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2306 public static const objc.SEL sel_resignFirstResponder;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2307 public static const objc.SEL sel_resizeDownCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2308 public static const objc.SEL sel_resizeLeftCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2309 public static const objc.SEL sel_resizeLeftRightCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2310 public static const objc.SEL sel_resizeRightCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2311 public static const objc.SEL sel_resizeUpCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2312 public static const objc.SEL sel_resizeUpDownCursor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2313 public static const objc.SEL sel_resizingMask;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2314 public static const objc.SEL sel_respondsToSelector_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2315 public static const objc.SEL sel_restoreGraphicsState;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2316 public static const objc.SEL sel_retain;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2317 public static const objc.SEL sel_retainCount;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2318 public static const objc.SEL sel_rightMouseDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2319 public static const objc.SEL sel_rightMouseDragged_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2320 public static const objc.SEL sel_rightMouseUp_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2321 public static const objc.SEL sel_rotateByDegrees_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2322 public static const objc.SEL sel_rowAtPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2323 public static const objc.SEL sel_rowForItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2324 public static const objc.SEL sel_rowHeight;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2325 public static const objc.SEL sel_rowsInRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2326 public static const objc.SEL sel_run;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2327 public static const objc.SEL sel_runModal;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2328 public static const objc.SEL sel_runModalForWindow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2329 public static const objc.SEL sel_runModalWithPrintInfo_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2330 public static const objc.SEL sel_runMode_beforeDate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2331 public static const objc.SEL sel_runOperation;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2332 public static const objc.SEL sel_samplesPerPixel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2333 public static const objc.SEL sel_saveGraphicsState;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2334 public static const objc.SEL sel_savePanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2335 public static const objc.SEL sel_scaleXBy_yBy_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2336 public static const objc.SEL sel_scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2337 public static const objc.SEL sel_screen;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2338 public static const objc.SEL sel_screens;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2339 public static const objc.SEL sel_scrollColumnToVisible_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2340 public static const objc.SEL sel_scrollRangeToVisible_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2341 public static const objc.SEL sel_scrollRectToVisible_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2342 public static const objc.SEL sel_scrollRowToVisible_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2343 public static const objc.SEL sel_scrollToPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2344 public static const objc.SEL sel_scrollWheel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2345 public static const objc.SEL sel_scrollerWidth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2346 public static const objc.SEL sel_secondOfMinute;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2347 public static const objc.SEL sel_secondarySelectedControlColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2348 public static const objc.SEL sel_selectAll_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2349 public static const objc.SEL sel_selectItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2350 public static const objc.SEL sel_selectItemAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2351 public static const objc.SEL sel_selectRow_byExtendingSelection_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2352 public static const objc.SEL sel_selectRowIndexes_byExtendingSelection_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2353 public static const objc.SEL sel_selectTabViewItemAtIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2354 public static const objc.SEL sel_selectedControlTextColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2355 public static const objc.SEL sel_selectedRange;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2356 public static const objc.SEL sel_selectedRow;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2357 public static const objc.SEL sel_selectedRowIndexes;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2358 public static const objc.SEL sel_selectedTabViewItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2359 public static const objc.SEL sel_selectedTextBackgroundColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2360 public static const objc.SEL sel_selectedTextColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2361 public static const objc.SEL sel_sendAction_to_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2362 public static const objc.SEL sel_sendEvent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2363 public static const objc.SEL sel_separatorItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2364 public static const objc.SEL sel_set;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2365 public static const objc.SEL sel_setAcceptsMouseMovedEvents_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2366 public static const objc.SEL sel_setAction_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2367 public static const objc.SEL sel_setAlertStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2368 public static const objc.SEL sel_setAlignment_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2369 public static const objc.SEL sel_setAllowsColumnReordering_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2370 public static const objc.SEL sel_setAllowsFloats_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2371 public static const objc.SEL sel_setAllowsMixedState_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2372 public static const objc.SEL sel_setAllowsMultipleSelection_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2373 public static const objc.SEL sel_setAlphaValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2374 public static const objc.SEL sel_setApplicationIconImage_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2375 public static const objc.SEL sel_setApplicationNameForUserAgent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2376 public static const objc.SEL sel_setAttributedStringValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2377 public static const objc.SEL sel_setAttributedTitle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2378 public static const objc.SEL sel_setAutoenablesItems_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2379 public static const objc.SEL sel_setAutohidesScrollers_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2380 public static const objc.SEL sel_setAutoresizesOutlineColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2381 public static const objc.SEL sel_setAutoresizesSubviews_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2382 public static const objc.SEL sel_setAutoresizingMask_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2383 public static const objc.SEL sel_setAutosaveExpandedItems_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2384 public static const objc.SEL sel_setBackgroundColor_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2385 public static const objc.SEL sel_setBezelStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2386 public static const objc.SEL sel_setBorderType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2387 public static const objc.SEL sel_setBorderWidth_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2388 public static const objc.SEL sel_setBordered_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2389 public static const objc.SEL sel_setBoxType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2390 public static const objc.SEL sel_setButtonType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2391 public static const objc.SEL sel_setCacheMode_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2392 public static const objc.SEL sel_setCanChooseDirectories_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2393 public static const objc.SEL sel_setCanChooseFiles_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2394 public static const objc.SEL sel_setCellClass_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2395 public static const objc.SEL sel_setClip;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2396 public static const objc.SEL sel_setColor_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2397 public static const objc.SEL sel_setColumnAutoresizingStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2398 public static const objc.SEL sel_setCompositingOperation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2399 public static const objc.SEL sel_setContainerSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2400 public static const objc.SEL sel_setContentView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2401 public static const objc.SEL sel_setContentViewMargins_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2402 public static const objc.SEL sel_setCurrentContext_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2403 public static const objc.SEL sel_setCurrentOperation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2404 public static const objc.SEL sel_setData_forType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2405 public static const objc.SEL sel_setDataCell_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2406 public static const objc.SEL sel_setDataSource_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2407 public static const objc.SEL sel_setDatePickerElements_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2408 public static const objc.SEL sel_setDatePickerStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2409 public static const objc.SEL sel_setDateValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2410 public static const objc.SEL sel_setDefaultFlatness_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2411 public static const objc.SEL sel_setDefaultTabInterval_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2412 public static const objc.SEL sel_setDelegate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2413 public static const objc.SEL sel_setDestination_allowOverwrite_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2414 public static const objc.SEL sel_setDirectory_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2415 public static const objc.SEL sel_setDocumentView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2416 public static const objc.SEL sel_setDoubleAction_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2417 public static const objc.SEL sel_setDoubleValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2418 public static const objc.SEL sel_setDownloadDelegate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2419 public static const objc.SEL sel_setDrawsBackground_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2420 public static const objc.SEL sel_setEditable_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2421 public static const objc.SEL sel_setEnabled_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2422 public static const objc.SEL sel_setFill;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2423 public static const objc.SEL sel_setFireDate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2424 public static const objc.SEL sel_setFirstLineHeadIndent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2425 public static const objc.SEL sel_setFloatValue_knobProportion_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2426 public static const objc.SEL sel_setFocusRingType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2427 public static const objc.SEL sel_setFont_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2428 public static const objc.SEL sel_setFormatter_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2429 public static const objc.SEL sel_setFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2430 public static const objc.SEL sel_setFrame_display_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2431 public static const objc.SEL sel_setFrameLoadDelegate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2432 public static const objc.SEL sel_setFrameOrigin_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2433 public static const objc.SEL sel_setFrameSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2434 public static const objc.SEL sel_setHasHorizontalScroller_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2435 public static const objc.SEL sel_setHasShadow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2436 public static const objc.SEL sel_setHasVerticalScroller_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2437 public static const objc.SEL sel_setHeaderCell_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2438 public static const objc.SEL sel_setHeaderView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2439 public static const objc.SEL sel_setHidden_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2440 public static const objc.SEL sel_setHiddenUntilMouseMoves_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2441 public static const objc.SEL sel_setHighlightMode_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2442 public static const objc.SEL sel_setHighlighted_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2443 public static const objc.SEL sel_setHorizontalScroller_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2444 public static const objc.SEL sel_setHorizontallyResizable_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2445 public static const objc.SEL sel_setIdentifier_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2446 public static const objc.SEL sel_setImage_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2447 public static const objc.SEL sel_setImageAlignment_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2448 public static const objc.SEL sel_setImageInterpolation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2449 public static const objc.SEL sel_setImagePosition_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2450 public static const objc.SEL sel_setImageScaling_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2451 public static const objc.SEL sel_setIncrement_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2452 public static const objc.SEL sel_setIndentationPerLevel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2453 public static const objc.SEL sel_setIndeterminate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2454 public static const objc.SEL sel_setJavaEnabled_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2455 public static const objc.SEL sel_setJobDisposition_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2456 public static const objc.SEL sel_setJobTitle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2457 public static const objc.SEL sel_setKeyEquivalent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2458 public static const objc.SEL sel_setKeyEquivalentModifierMask_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2459 public static const objc.SEL sel_setLabel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2460 public static const objc.SEL sel_setLeaf_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2461 public static const objc.SEL sel_setLength_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2462 public static const objc.SEL sel_setLevel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2463 public static const objc.SEL sel_setLineBreakMode_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2464 public static const objc.SEL sel_setLineCapStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2465 public static const objc.SEL sel_setLineDash_count_phase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2466 public static const objc.SEL sel_setLineFragmentPadding_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2467 public static const objc.SEL sel_setLineFragmentRect_forGlyphRange_usedRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2468 public static const objc.SEL sel_setLineJoinStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2469 public static const objc.SEL sel_setLineSpacing_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2470 public static const objc.SEL sel_setLineWidth_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2471 public static const objc.SEL sel_setMarkedText_selectedRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2472 public static const objc.SEL sel_setMaxSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2473 public static const objc.SEL sel_setMaxValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2474 public static const objc.SEL sel_setMaximum_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2475 public static const objc.SEL sel_setMaximumFractionDigits_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2476 public static const objc.SEL sel_setMaximumIntegerDigits_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2477 public static const objc.SEL sel_setMenu_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2478 public static const objc.SEL sel_setMinSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2479 public static const objc.SEL sel_setMinValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2480 public static const objc.SEL sel_setMinWidth_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2481 public static const objc.SEL sel_setMinimum_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2482 public static const objc.SEL sel_setMinimumFractionDigits_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2483 public static const objc.SEL sel_setMinimumIntegerDigits_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2484 public static const objc.SEL sel_setMiterLimit_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2485 public static const objc.SEL sel_setNeedsDisplay_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2486 public static const objc.SEL sel_setNeedsDisplayInRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2487 public static const objc.SEL sel_setNumberOfVisibleItems_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2488 public static const objc.SEL sel_setNumberStyle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2489 public static const objc.SEL sel_setObject_forKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2490 public static const objc.SEL sel_setOnMouseEntered_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2491 public static const objc.SEL sel_setOpaque_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2492 public static const objc.SEL sel_setOptions_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2493 public static const objc.SEL sel_setOutlineTableColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2494 public static const objc.SEL sel_setPanelFont_isMultiple_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2495 public static const objc.SEL sel_setPartialStringValidationEnabled_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2496 public static const objc.SEL sel_setPatternPhase_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2497 public static const objc.SEL sel_setPixelFormat_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2498 public static const objc.SEL sel_setPolicyDelegate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2499 public static const objc.SEL sel_setPrinter_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2500 public static const objc.SEL sel_setPropertyList_forType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2501 public static const objc.SEL sel_setPullsDown_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2502 public static const objc.SEL sel_setReleasedWhenClosed_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2503 public static const objc.SEL sel_setResizingMask_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2504 public static const objc.SEL sel_setResourceLoadDelegate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2505 public static const objc.SEL sel_setRichText_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2506 public static const objc.SEL sel_setRowHeight_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2507 public static const objc.SEL sel_setSelectable_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2508 public static const objc.SEL sel_setSelectedRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2509 public static const objc.SEL sel_setShouldAntialias_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2510 public static const objc.SEL sel_setShowsPrintPanel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2511 public static const objc.SEL sel_setShowsProgressPanel_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2512 public static const objc.SEL sel_setSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2513 public static const objc.SEL sel_setState_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2514 public static const objc.SEL sel_setString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2515 public static const objc.SEL sel_setString_forType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2516 public static const objc.SEL sel_setStringValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2517 public static const objc.SEL sel_setStroke;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2518 public static const objc.SEL sel_setSubmenu_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2519 public static const objc.SEL sel_setTabStops_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2520 public static const objc.SEL sel_setTabViewType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2521 public static const objc.SEL sel_setTarget_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2522 public static const objc.SEL sel_setTextColor_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2523 public static const objc.SEL sel_setTitle_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2524 public static const objc.SEL sel_setTitleFont_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2525 public static const objc.SEL sel_setTitlePosition_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2526 public static const objc.SEL sel_setToolTip_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2527 public static const objc.SEL sel_setTransformStruct_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2528 public static const objc.SEL sel_setUIDelegate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2529 public static const objc.SEL sel_setURL_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2530 public static const objc.SEL sel_setUpPrintOperationDefaultValues;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2531 public static const objc.SEL sel_setUsesAlternatingRowBackgroundColors_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2532 public static const objc.SEL sel_setUsesThreadedAnimation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2533 public static const objc.SEL sel_setValue_forKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2534 public static const objc.SEL sel_setValueWraps_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2535 public static const objc.SEL sel_setVerticalScroller_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2536 public static const objc.SEL sel_setView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2537 public static const objc.SEL sel_setWidth_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2538 public static const objc.SEL sel_setWidthTracksTextView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2539 public static const objc.SEL sel_setWindingRule_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2540 public static const objc.SEL sel_setWorksWhenModal_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2541 public static const objc.SEL sel_setWraps_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2542 public static const objc.SEL sel_sharedApplication;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2543 public static const objc.SEL sel_sharedColorPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2544 public static const objc.SEL sel_sharedFontManager;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2545 public static const objc.SEL sel_sharedFontPanel;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2546 public static const objc.SEL sel_sharedHTTPCookieStorage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2547 public static const objc.SEL sel_sharedPrintInfo;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2548 public static const objc.SEL sel_sharedWorkspace;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2549 public static const objc.SEL sel_shiftKey;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2550 public static const objc.SEL sel_size;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2551 public static const objc.SEL sel_sizeToFit;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2552 public static const objc.SEL sel_sizeValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2553 public static const objc.SEL sel_skipDescendents;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2554 public static const objc.SEL sel_smallSystemFontSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2555 public static const objc.SEL sel_sortIndicatorRectForBounds_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2556 public static const objc.SEL sel_standardPreferences;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2557 public static const objc.SEL sel_startAnimation_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2558 public static const objc.SEL sel_state;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2559 public static const objc.SEL sel_statusItemWithLength_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2560 public static const objc.SEL sel_stop_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2561 public static const objc.SEL sel_stopLoading_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2562 public static const objc.SEL sel_string;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2563 public static const objc.SEL sel_stringByAddingPercentEscapesUsingEncoding_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2564 public static const objc.SEL sel_stringByAppendingPathComponent_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2565 public static const objc.SEL sel_stringByAppendingString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2566 public static const objc.SEL sel_stringByDeletingLastPathComponent;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2567 public static const objc.SEL sel_stringByDeletingPathExtension;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2568 public static const objc.SEL sel_stringByEvaluatingJavaScriptFromString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2569 public static const objc.SEL sel_stringByReplacingOccurrencesOfString_withString_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2570 public static const objc.SEL sel_stringForObjectValue_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2571 public static const objc.SEL sel_stringForType_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2572 public static const objc.SEL sel_stringValue;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2573 public static const objc.SEL sel_stringWithCharacters_length_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2574 public static const objc.SEL sel_stringWithUTF8String_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2575 public static const objc.SEL sel_stroke;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2576 public static const objc.SEL sel_strokeRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2577 public static const objc.SEL sel_styleMask;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2578 public static const objc.SEL sel_submenu;
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
2579 public static const objc.SEL sel_substringWithRange_;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2580 public static const objc.SEL sel_subviews;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2581 public static const objc.SEL sel_superclass;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2582 public static const objc.SEL sel_superview;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2583 public static const objc.SEL sel_systemFontOfSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2584 public static const objc.SEL sel_systemFontSize;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2585 public static const objc.SEL sel_systemFontSizeForControlSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2586 public static const objc.SEL sel_systemStatusBar;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2587 public static const objc.SEL sel_systemVersion;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2588 public static const objc.SEL sel_tabStopType;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2589 public static const objc.SEL sel_tabStops;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2590 public static const objc.SEL sel_tabView_didSelectTabViewItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2591 public static const objc.SEL sel_tabView_willSelectTabViewItem_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2592 public static const objc.SEL sel_tabViewItemAtPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2593 public static const objc.SEL sel_tableColumns;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2594 public static const objc.SEL sel_tableView_didClickTableColumn_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2595 public static const objc.SEL sel_tableView_objectValueForTableColumn_row_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2596 public static const objc.SEL sel_tableView_setObjectValue_forTableColumn_row_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2597 public static const objc.SEL sel_tableView_shouldEditTableColumn_row_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2598 public static const objc.SEL sel_tableView_willDisplayCell_forTableColumn_row_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2599 public static const objc.SEL sel_tableViewColumnDidMove_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2600 public static const objc.SEL sel_tableViewColumnDidResize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2601 public static const objc.SEL sel_tableViewSelectionDidChange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2602 public static const objc.SEL sel_target;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2603 public static const objc.SEL sel_terminate_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2604 public static const objc.SEL sel_textBackgroundColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2605 public static const objc.SEL sel_textColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2606 public static const objc.SEL sel_textContainer;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2607 public static const objc.SEL sel_textDidChange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2608 public static const objc.SEL sel_textStorage;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2609 public static const objc.SEL sel_textView_clickedOnLink_atIndex_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2610 public static const objc.SEL sel_textView_willChangeSelectionFromCharacterRange_toCharacterRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2611 public static const objc.SEL sel_textViewDidChangeSelection_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2612 public static const objc.SEL sel_threadDictionary;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2613 public static const objc.SEL sel_tile;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2614 public static const objc.SEL sel_timeZone;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2615 public static const objc.SEL sel_title;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2616 public static const objc.SEL sel_titleCell;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2617 public static const objc.SEL sel_titleOfSelectedItem;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2618 public static const objc.SEL sel_titleRectForBounds_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2619 public static const objc.SEL sel_transform;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2620 public static const objc.SEL sel_transformPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2621 public static const objc.SEL sel_transformSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2622 public static const objc.SEL sel_transformStruct;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2623 public static const objc.SEL sel_transformUsingAffineTransform_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2624 public static const objc.SEL sel_translateXBy_yBy_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2625 public static const objc.SEL sel_type;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2626 public static const objc.SEL sel_types;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2627 public static const objc.SEL sel_typesetter;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2628 public static const objc.SEL sel_unarchiveObjectWithData_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2629 public static const objc.SEL sel_unhideAllApplications_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2630 public static const objc.SEL sel_unmarkText;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2631 public static const objc.SEL sel_unregisterDraggedTypes;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2632 public static const objc.SEL sel_use;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2633 public static const objc.SEL sel_usedRectForTextContainer_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2634 public static const objc.SEL sel_userInfo;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2635 public static const objc.SEL sel_usesAlternatingRowBackgroundColors;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2636 public static const objc.SEL sel_validAttributesForMarkedText;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2637 public static const objc.SEL sel_valueForKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2638 public static const objc.SEL sel_valueWithPoint_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2639 public static const objc.SEL sel_valueWithRange_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2640 public static const objc.SEL sel_valueWithRect_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2641 public static const objc.SEL sel_valueWithSize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2642 public static const objc.SEL sel_visibleFrame;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2643 public static const objc.SEL sel_visibleRect;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2644 public static const objc.SEL sel_wantsPeriodicDraggingUpdates;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2645 public static const objc.SEL sel_wantsToHandleMouseEvents;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2646 public static const objc.SEL sel_webFrame;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2647 public static const objc.SEL sel_webView_contextMenuItemsForElement_defaultMenuItems_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2648 public static const objc.SEL sel_webView_createWebViewWithRequest_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2649 public static const objc.SEL sel_webView_decidePolicyForMIMEType_request_frame_decisionListener_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2650 public static const objc.SEL sel_webView_decidePolicyForNavigationAction_request_frame_decisionListener_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2651 public static const objc.SEL sel_webView_decidePolicyForNewWindowAction_request_newFrameName_decisionListener_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2652 public static const objc.SEL sel_webView_didChangeLocationWithinPageForFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2653 public static const objc.SEL sel_webView_didCommitLoadForFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2654 public static const objc.SEL sel_webView_didFailProvisionalLoadWithError_forFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2655 public static const objc.SEL sel_webView_didFinishLoadForFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2656 public static const objc.SEL sel_webView_didReceiveTitle_forFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2657 public static const objc.SEL sel_webView_didStartProvisionalLoadForFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2658 public static const objc.SEL sel_webView_identifierForInitialRequest_fromDataSource_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2659 public static const objc.SEL sel_webView_mouseDidMoveOverElement_modifierFlags_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2660 public static const objc.SEL sel_webView_printFrameView_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2661 public static const objc.SEL sel_webView_resource_didFailLoadingWithError_fromDataSource_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2662 public static const objc.SEL sel_webView_resource_didFinishLoadingFromDataSource_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2663 public static const objc.SEL sel_webView_resource_willSendRequest_redirectResponse_fromDataSource_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2664 public static const objc.SEL sel_webView_runJavaScriptAlertPanelWithMessage_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2665 public static const objc.SEL sel_webView_runJavaScriptConfirmPanelWithMessage_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2666 public static const objc.SEL sel_webView_runOpenPanelForFileButtonWithResultListener_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2667 public static const objc.SEL sel_webView_setFrame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2668 public static const objc.SEL sel_webView_setResizable_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2669 public static const objc.SEL sel_webView_setStatusBarVisible_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2670 public static const objc.SEL sel_webView_setStatusText_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2671 public static const objc.SEL sel_webView_setToolbarsVisible_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2672 public static const objc.SEL sel_webView_unableToImplementPolicyWithError_frame_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2673 public static const objc.SEL sel_webViewClose_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2674 public static const objc.SEL sel_webViewFocus_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2675 public static const objc.SEL sel_webViewShow_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2676 public static const objc.SEL sel_webViewUnfocus_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2677 public static const objc.SEL sel_wheelDelta;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2678 public static const objc.SEL sel_width;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2679 public static const objc.SEL sel_window;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2680 public static const objc.SEL sel_windowBackgroundColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2681 public static const objc.SEL sel_windowDidBecomeKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2682 public static const objc.SEL sel_windowDidMove_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2683 public static const objc.SEL sel_windowDidResignKey_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2684 public static const objc.SEL sel_windowDidResize_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2685 public static const objc.SEL sel_windowFrameColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2686 public static const objc.SEL sel_windowFrameTextColor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2687 public static const objc.SEL sel_windowNumber;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2688 public static const objc.SEL sel_windowShouldClose_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2689 public static const objc.SEL sel_windowWillClose_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2690 public static const objc.SEL sel_windows;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2691 public static const objc.SEL sel_worksWhenModal;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2692 public static const objc.SEL sel_wraps;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2693 public static const objc.SEL sel_writeToPasteboard_;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2694 public static const objc.SEL sel_yearOfCommonEra;
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
2695
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
2696 /** Constants */
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2697 public static const int NSAWTEventType = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2698 public static const int NSAboveBottom = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2699 public static const int NSAboveTop = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2700 public static const int NSAddTraitFontAction = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2701 public static const int NSAdobeCNS1CharacterCollection = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2702 public static const int NSAdobeGB1CharacterCollection = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2703 public static const int NSAdobeJapan1CharacterCollection = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2704 public static const int NSAdobeJapan2CharacterCollection = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2705 public static const int NSAdobeKorea1CharacterCollection = 5;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2706 public static const Cocoa.NSInteger NSAlertAlternateReturn = 0;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2707 public static const Cocoa.NSInteger NSAlertDefaultReturn = 1;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2708 public static const Cocoa.NSInteger NSAlertErrorReturn = -2;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2709 public static const Cocoa.NSInteger NSAlertFirstButtonReturn = 1000;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2710 public static const Cocoa.NSInteger NSAlertOtherReturn = -1;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2711 public static const Cocoa.NSInteger NSAlertSecondButtonReturn = 1001;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2712 public static const Cocoa.NSInteger NSAlertThirdButtonReturn = 1002;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2713 public static const int NSAllScrollerParts = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2714 alias Cocoa.NSBitmapFormat.NSAlphaFirstBitmapFormat NSAlphaFirstBitmapFormat;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2715 alias Cocoa.NSBitmapFormat.NSAlphaNonpremultipliedBitmapFormat NSAlphaNonpremultipliedBitmapFormat;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2716 public static const int NSAlphaShiftKeyMask = 65536;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2717 public static const int NSAlternateKeyMask = 524288;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2718 public static const int NSAnimationBlocking = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2719 public static const int NSAnimationEaseIn = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2720 public static const int NSAnimationEaseInOut = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2721 public static const int NSAnimationEaseOut = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2722 public static const int NSAnimationEffectDisappearingItemDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2723 public static const int NSAnimationEffectPoof = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2724 public static const int NSAnimationLinear = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2725 public static const int NSAnimationNonblocking = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2726 public static const int NSAnimationNonblockingThreaded = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2727 public static const int NSAnyEventMask = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2728 public static const int NSAnyType = 0;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
2729 alias Cocoa.NSEventType.NSAppKitDefined NSAppKitDefined;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2730 public static const int NSAppKitDefinedMask = 8192;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2731 public static const int NSAppKitVersionNumber10_0 = 577;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2732 public static const int NSAppKitVersionNumber10_1 = 620;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2733 public static const int NSAppKitVersionNumber10_2 = 663;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2734 public static const double NSAppKitVersionNumber10_2_3 = 663.60000000000002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2735 public static const int NSAppKitVersionNumber10_3 = 743;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2736 public static const double NSAppKitVersionNumber10_3_2 = 743.13999999999999;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2737 public static const double NSAppKitVersionNumber10_3_3 = 743.20000000000005;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2738 public static const double NSAppKitVersionNumber10_3_5 = 743.24000000000001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2739 public static const double NSAppKitVersionNumber10_3_7 = 743.33000000000004;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2740 public static const double NSAppKitVersionNumber10_3_9 = 743.36000000000001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2741 public static const int NSAppKitVersionNumber10_4 = 824;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2742 public static const double NSAppKitVersionNumberWithColumnResizingBrowser = 685.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2743 public static const double NSAppKitVersionNumberWithContinuousScrollingBrowser = 680.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2744 public static const double NSAppKitVersionNumberWithCursorSizeSupport = 682.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2745 public static const double NSAppKitVersionNumberWithCustomSheetPosition = 686.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2746 public static const double NSAppKitVersionNumberWithDirectionalTabs = 631.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2747 public static const double NSAppKitVersionNumberWithPatternColorLeakFix = 641.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2748 public static const int NSApplicationActivatedEventType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2749 public static const int NSApplicationDeactivatedEventType = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2750 alias Cocoa.NSEventType.NSApplicationDefined NSApplicationDefined;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2751 public static const int NSApplicationDefinedMask = 32768;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2752 public static const int NSApplicationDelegateReplyCancel = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2753 public static const int NSApplicationDelegateReplyFailure = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2754 public static const int NSApplicationDelegateReplySuccess = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2755 public static const int NSAscendingPageOrder = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2756 public static const int NSAtBottom = 5;
90
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 86
diff changeset
2757 alias Cocoa.NSTitlePosition.NSAtTop NSAtTop;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2758 public static const int NSAttachmentCharacter = 65532;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2759 public static const int NSAutoPagination = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2760 public static const int NSAutosaveOperation = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2761 public static const int NSBMPFileType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2762 public static const int NSBackTabCharacter = 25;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2763 public static const int NSBackgroundStyleDark = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2764 public static const int NSBackgroundStyleLight = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2765 public static const int NSBackgroundStyleLowered = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2766 public static const int NSBackgroundStyleRaised = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2767 public static const int NSBackgroundTab = 1;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2768 alias Cocoa.NSBackingStoreType.NSBackingStoreBuffered NSBackingStoreBuffered;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2769 public static const int NSBackingStoreNonretained = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2770 public static const int NSBackingStoreRetained = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2771 public static const int NSBackspaceCharacter = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2772 public static const int NSBacktabTextMovement = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2773 public static const int NSBeginFunctionKey = 63274;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2774 public static const int NSBelowBottom = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2775 public static const int NSBelowTop = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2776 alias Cocoa.NSLineJoinStyle.NSBevelLineJoinStyle NSBevelLineJoinStyle;
48
34237ae5156a Updated Scrollable to 3.514
Jacob Carlborg <doob@me.com>
parents: 46
diff changeset
2777 alias NSBorderType.NSBezelBorder NSBezelBorder;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2778 public static const int NSBlueControlTint = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2779 public static const int NSBoldFontMask = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2780 alias Cocoa.NSBorderlessWindowMask NSBorderlessWindowMask;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2781 alias Cocoa.NSTabViewType.NSBottomTabsBezelBorder NSBottomTabsBezelBorder;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2782 public static const int NSBoxCustom = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2783 public static const int NSBoxOldStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2784 public static const int NSBoxPrimary = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2785 public static const int NSBoxSecondary = 1;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2786 public static const int NSBoxSeparator = 2;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2787 public static const int NSBreakFunctionKey = 63282;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2788 public static const int NSBrowserAutoColumnResizing = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2789 public static const int NSBrowserDropAbove = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2790 public static const int NSBrowserDropOn = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2791 public static const int NSBrowserNoColumnResizing = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2792 public static const int NSBrowserUserColumnResizing = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2793 alias Cocoa.NSLineCapStyle.NSButtLineCapStyle NSButtLineCapStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2794 public static const int NSCMYKColorSpaceModel = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2795 public static const int NSCMYKModeColorPanel = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2796 public static const int NSCancelButton = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2797 public static const int NSCancelTextMovement = 23;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2798 public static const int NSCarriageReturnCharacter = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2799 public static const int NSCellAllowsMixedState = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2800 public static const int NSCellChangesContents = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2801 public static const int NSCellDisabled = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2802 public static const int NSCellEditable = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2803 public static const int NSCellHasImageHorizontal = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2804 public static const int NSCellHasImageOnLeftOrBottom = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2805 public static const int NSCellHasOverlappingImage = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2806 public static const int NSCellHighlighted = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2807 public static const int NSCellHitContentArea = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2808 public static const int NSCellHitEditableTextArea = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2809 public static const int NSCellHitNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2810 public static const int NSCellHitTrackableArea = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2811 public static const int NSCellIsBordered = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2812 public static const int NSCellIsInsetButton = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2813 public static const int NSCellLightsByBackground = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2814 public static const int NSCellLightsByContents = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2815 public static const int NSCellLightsByGray = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2816 public static const int NSCellState = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2817 public static const int NSCenterTabStopType = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2818 alias Cocoa.NSTextAlignment.NSCenterTextAlignment NSCenterTextAlignment;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2819 public static const int NSChangeAutosaved = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2820 public static const int NSChangeBackgroundCell = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2821 public static const int NSChangeBackgroundCellMask = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2822 public static const int NSChangeCleared = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2823 public static const int NSChangeDone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2824 public static const int NSChangeGrayCell = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2825 public static const int NSChangeGrayCellMask = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2826 public static const int NSChangeReadOtherContents = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2827 public static const int NSChangeRedone = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2828 public static const int NSChangeUndone = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2829 public static const int NSCircularBezelStyle = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2830 public static const int NSCircularSlider = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2831 public static const int NSClearControlTint = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2832 public static const int NSClearDisplayFunctionKey = 63290;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2833 public static const int NSClearLineFunctionKey = 63289;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2834 public static const int NSClipPagination = 2;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2835 alias Cocoa.NSDatePickerStyle.NSClockAndCalendarDatePickerStyle NSClockAndCalendarDatePickerStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2836 public static const int NSClosableWindowMask = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2837 alias Cocoa.NSBezierPathElement.NSClosePathBezierPathElement NSClosePathBezierPathElement;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2838 public static const int NSColorListModeColorPanel = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2839 public static const int NSColorPanelAllModesMask = 65535;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2840 public static const int NSColorPanelCMYKModeMask = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2841 public static const int NSColorPanelColorListModeMask = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2842 public static const int NSColorPanelCrayonModeMask = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2843 public static const int NSColorPanelCustomPaletteModeMask = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2844 public static const int NSColorPanelGrayModeMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2845 public static const int NSColorPanelHSBModeMask = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2846 public static const int NSColorPanelRGBModeMask = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2847 public static const int NSColorPanelWheelModeMask = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2848 public static const int NSColorRenderingIntentAbsoluteColorimetric = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2849 public static const int NSColorRenderingIntentDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2850 public static const int NSColorRenderingIntentPerceptual = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2851 public static const int NSColorRenderingIntentRelativeColorimetric = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2852 public static const int NSColorRenderingIntentSaturation = 4;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2853 public static const int NSCommandKeyMask = 1048576;
86
102ff2adce19 Ported dwt.widgets.Tracker
Jacob Carlborg <doob@me.com>
parents: 85
diff changeset
2854 alias Cocoa.NSCompositingOperation.NSCompositeClear NSCompositeClear;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2855 public static const int NSCompositeCopy = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2856 public static const int NSCompositeDestinationAtop = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2857 public static const int NSCompositeDestinationIn = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2858 public static const int NSCompositeDestinationOut = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2859 public static const int NSCompositeDestinationOver = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2860 public static const int NSCompositeHighlight = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2861 public static const int NSCompositePlusDarker = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2862 public static const int NSCompositePlusLighter = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2863 public static const int NSCompositeSourceAtop = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2864 public static const int NSCompositeSourceIn = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2865 public static const int NSCompositeSourceOut = 4;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2866 alias Cocoa.NSCompositingOperation.NSCompositeSourceOver NSCompositeSourceOver;
51
e6f04eb518ae Updated Canvas to 3.514
Jacob Carlborg <doob@me.com>
parents: 50
diff changeset
2867 alias Cocoa.NSCompositingOperation.NSCompositeXOR NSCompositeXOR;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2868 public static const int NSCompressedFontMask = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2869 public static const int NSCondensedFontMask = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2870 public static const int NSContentsCellMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2871 public static const int NSContinuousCapacityLevelIndicatorStyle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2872 public static const int NSControlGlyph = 16777215;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2873 public static const int NSControlKeyMask = 262144;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2874 public static const int NSCrayonModeColorPanel = 7;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2875 alias Cocoa.NSAlertStyle.NSCriticalAlertStyle NSCriticalAlertStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2876 public static const int NSCriticalRequest = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2877 public static const int NSCursorPointingDevice = 2;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
2878 alias Cocoa.NSEventType.NSCursorUpdate NSCursorUpdate;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2879 public static const int NSCursorUpdateMask = 131072;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2880 alias Cocoa.NSBezierPathElement.NSCurveToBezierPathElement NSCurveToBezierPathElement;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2881 public static const int NSCustomPaletteModeColorPanel = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2882 public static const int NSDecimalTabStopType = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2883 public static const int NSDefaultControlTint = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2884 public static const int NSDefaultTokenStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2885 public static const int NSDeleteCharFunctionKey = 63294;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2886 public static const int NSDeleteCharacter = 127;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2887 public static const int NSDeleteFunctionKey = 63272;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2888 public static const int NSDeleteLineFunctionKey = 63292;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2889 public static const int NSDescendingPageOrder = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2890 public static const int NSDeviceIndependentModifierFlagsMask = -65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2891 public static const int NSDeviceNColorSpaceModel = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2892 public static const int NSDirectSelection = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2893 public static const int NSDisclosureBezelStyle = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2894 public static const int NSDiscreteCapacityLevelIndicatorStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2895 public static const int NSDisplayWindowRunLoopOrdering = 600000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2896 public static const int NSDocModalWindowMask = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2897 public static const int NSDockWindowLevel = 20;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2898 public static const int NSDoubleType = 6;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2899 public static const int NSDownArrowFunctionKey = 63233;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2900 public static const int NSDownTextMovement = 22;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2901 public static const int NSDragOperationAll = 15;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2902 public static const int NSDragOperationAll_Obsolete = 15;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2903 public static const int NSDragOperationCopy = 1;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2904 public static const int NSDragOperationDelete = 32;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2905 public static const int NSDragOperationEvery = -1;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2906 public static const int NSDragOperationGeneric = 4;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2907 public static const int NSDragOperationLink = 2;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2908 public static const int NSDragOperationMove = 16;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2909 public static const int NSDragOperationNone = 0;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2910 public static const int NSDragOperationPrivate = 8;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2911 public static const int NSDrawerClosedState = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2912 public static const int NSDrawerClosingState = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2913 public static const int NSDrawerOpenState = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2914 public static const int NSDrawerOpeningState = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2915 public static const int NSEndFunctionKey = 63275;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2916 public static const int NSEnterCharacter = 3;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2917 public static const int NSEraDatePickerElementFlag = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2918 public static const int NSEraserPointingDevice = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
2919 alias Cocoa.NSWindingRule.NSEvenOddWindingRule NSEvenOddWindingRule;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2920 public static const int NSExclude10_4ElementsIconCreationOption = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2921 public static const int NSExcludeQuickDrawElementsIconCreationOption = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2922 public static const int NSExecuteFunctionKey = 63298;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2923 public static const int NSExpandedFontMask = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2924 public static const int NSF10FunctionKey = 63245;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2925 public static const int NSF11FunctionKey = 63246;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2926 public static const int NSF12FunctionKey = 63247;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2927 public static const int NSF13FunctionKey = 63248;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2928 public static const int NSF14FunctionKey = 63249;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2929 public static const int NSF15FunctionKey = 63250;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2930 public static const int NSF16FunctionKey = 63251;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2931 public static const int NSF17FunctionKey = 63252;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2932 public static const int NSF18FunctionKey = 63253;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2933 public static const int NSF19FunctionKey = 63254;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2934 public static const int NSF1FunctionKey = 63236;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2935 public static const int NSF20FunctionKey = 63255;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2936 public static const int NSF21FunctionKey = 63256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2937 public static const int NSF22FunctionKey = 63257;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2938 public static const int NSF23FunctionKey = 63258;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2939 public static const int NSF24FunctionKey = 63259;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2940 public static const int NSF25FunctionKey = 63260;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2941 public static const int NSF26FunctionKey = 63261;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2942 public static const int NSF27FunctionKey = 63262;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2943 public static const int NSF28FunctionKey = 63263;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2944 public static const int NSF29FunctionKey = 63264;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2945 public static const int NSF2FunctionKey = 63237;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2946 public static const int NSF30FunctionKey = 63265;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2947 public static const int NSF31FunctionKey = 63266;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2948 public static const int NSF32FunctionKey = 63267;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2949 public static const int NSF33FunctionKey = 63268;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2950 public static const int NSF34FunctionKey = 63269;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2951 public static const int NSF35FunctionKey = 63270;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2952 public static const int NSF3FunctionKey = 63238;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2953 public static const int NSF4FunctionKey = 63239;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2954 public static const int NSF5FunctionKey = 63240;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2955 public static const int NSF6FunctionKey = 63241;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2956 public static const int NSF7FunctionKey = 63242;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2957 public static const int NSF8FunctionKey = 63243;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2958 public static const int NSF9FunctionKey = 63244;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2959 public static const int NSFPCurrentField = 134;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2960 public static const int NSFPPreviewButton = 131;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2961 public static const int NSFPPreviewField = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2962 public static const int NSFPRevertButton = 130;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2963 public static const int NSFPSetButton = 132;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2964 public static const int NSFPSizeField = 129;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2965 public static const int NSFPSizeTitle = 133;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2966 public static const int NSFileHandlingPanelCancelButton = 0;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
2967 public static const int NSFileHandlingPanelOKButton = 1;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2968 public static const int NSFindFunctionKey = 63301;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2969 public static const int NSFindPanelActionNext = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2970 public static const int NSFindPanelActionPrevious = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2971 public static const int NSFindPanelActionReplace = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2972 public static const int NSFindPanelActionReplaceAll = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2973 public static const int NSFindPanelActionReplaceAllInSelection = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2974 public static const int NSFindPanelActionReplaceAndFind = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2975 public static const int NSFindPanelActionSelectAll = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2976 public static const int NSFindPanelActionSelectAllInSelection = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2977 public static const int NSFindPanelActionSetFindString = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2978 public static const int NSFindPanelActionShowFindPanel = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2979 public static const int NSFindPanelSubstringMatchTypeContains = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2980 public static const int NSFindPanelSubstringMatchTypeEndsWith = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2981 public static const int NSFindPanelSubstringMatchTypeFullWord = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2982 public static const int NSFindPanelSubstringMatchTypeStartsWith = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2983 public static const int NSFitPagination = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2984 public static const int NSFixedPitchFontMask = 1024;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
2985 alias Cocoa.NSEventType.NSFlagsChanged NSFlagsChanged;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2986 public static const int NSFlagsChangedMask = 4096;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2987 public static const int NSFloatType = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2988 public static const int NSFloatingPointSamplesBitmapFormat = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2989 public static const int NSFloatingWindowLevel = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2990 public static const int NSFocusRingAbove = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2991 public static const int NSFocusRingBelow = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2992 public static const int NSFocusRingOnly = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2993 public static const int NSFocusRingTypeDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2994 public static const int NSFocusRingTypeExterior = 2;
83
681769fb5a7a Ported dwt.widgets.Text
Jacob Carlborg <doob@me.com>
parents: 80
diff changeset
2995 alias Cocoa.NSFocusRingType.NSFocusRingTypeNone NSFocusRingTypeNone;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2996 public static const int NSFontAntialiasedIntegerAdvancementsRenderingMode = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2997 public static const int NSFontAntialiasedRenderingMode = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2998 public static const int NSFontBoldTrait = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
2999 public static const int NSFontClarendonSerifsClass = 1073741824;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3000 public static const int NSFontCollectionApplicationOnlyMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3001 public static const int NSFontCondensedTrait = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3002 public static const int NSFontDefaultRenderingMode = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3003 public static const int NSFontExpandedTrait = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3004 public static const int NSFontFamilyClassMask = -268435456;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3005 public static const int NSFontFreeformSerifsClass = 1879048192;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3006 public static const int NSFontIntegerAdvancementsRenderingMode = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3007 public static const int NSFontItalicTrait = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3008 public static const int NSFontModernSerifsClass = 805306368;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3009 public static const int NSFontMonoSpaceTrait = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3010 public static const int NSFontOldStyleSerifsClass = 268435456;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3011 public static const int NSFontOrnamentalsClass = -1879048192;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3012 public static const int NSFontPanelAllEffectsModeMask = 1048320;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3013 public static const int NSFontPanelAllModesMask = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3014 public static const int NSFontPanelCollectionModeMask = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3015 public static const int NSFontPanelDocumentColorEffectModeMask = 2048;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3016 public static const int NSFontPanelFaceModeMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3017 public static const int NSFontPanelShadowEffectModeMask = 4096;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3018 public static const int NSFontPanelSizeModeMask = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3019 public static const int NSFontPanelStandardModesMask = 65535;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3020 public static const int NSFontPanelStrikethroughEffectModeMask = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3021 public static const int NSFontPanelTextColorEffectModeMask = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3022 public static const int NSFontPanelUnderlineEffectModeMask = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3023 public static const int NSFontSansSerifClass = -2147483648;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3024 public static const int NSFontScriptsClass = -1610612736;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3025 public static const int NSFontSlabSerifsClass = 1342177280;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3026 public static const int NSFontSymbolicClass = -1073741824;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3027 public static const int NSFontTransitionalSerifsClass = 536870912;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3028 public static const int NSFontUIOptimizedTrait = 4096;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3029 public static const int NSFontUnknownClass = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3030 public static const int NSFontVerticalTrait = 2048;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3031 public static const int NSFormFeedCharacter = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3032 public static const int NSFunctionKeyMask = 8388608;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3033 public static const int NSGIFFileType = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3034 public static const int NSGlyphAttributeBidiLevel = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3035 public static const int NSGlyphAttributeElastic = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3036 public static const int NSGlyphAttributeInscribe = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3037 public static const int NSGlyphAttributeSoft = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3038 public static const int NSGlyphInscribeAbove = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3039 public static const int NSGlyphInscribeBase = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3040 public static const int NSGlyphInscribeBelow = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3041 public static const int NSGlyphInscribeOverBelow = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3042 public static const int NSGlyphInscribeOverstrike = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3043 public static const int NSGradientConcaveStrong = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3044 public static const int NSGradientConcaveWeak = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3045 public static const int NSGradientConvexStrong = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3046 public static const int NSGradientConvexWeak = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3047 alias Cocoa.NSGradientDrawingOptions.NSGradientDrawsAfterEndingLocation NSGradientDrawsAfterEndingLocation;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3048 alias Cocoa.NSGradientDrawingOptions.NSGradientDrawsBeforeStartingLocation NSGradientDrawsBeforeStartingLocation;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3049 public static const int NSGradientNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3050 public static const int NSGraphiteControlTint = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3051 public static const int NSGrayColorSpaceModel = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3052 public static const int NSGrayModeColorPanel = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3053 public static const int NSGrooveBorder = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3054 public static const int NSHSBModeColorPanel = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3055 public static const int NSHUDWindowMask = 8192;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3056 public static const int NSHeavierFontAction = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3057 public static const int NSHelpButtonBezelStyle = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3058 public static const int NSHelpFunctionKey = 63302;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3059 public static const int NSHelpKeyMask = 4194304;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3060 public static const int NSHighlightModeMatrix = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3061 public static const int NSHomeFunctionKey = 63273;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3062 public static const int NSHorizontalRuler = 0;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3063 alias Cocoa.NSDatePickerElementFlags.NSHourMinuteDatePickerElementFlag NSHourMinuteDatePickerElementFlag;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3064 alias Cocoa.NSDatePickerElementFlags.NSHourMinuteSecondDatePickerElementFlag NSHourMinuteSecondDatePickerElementFlag;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3065 public static const int NSIdentityMappingCharacterCollection = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3066 public static const int NSIllegalTextMovement = 0;
85
844f65808a36 Ported dwt.widgets.ToolItem
Jacob Carlborg <doob@me.com>
parents: 83
diff changeset
3067 alias Cocoa.NSCellImagePosition.NSImageAbove NSImageAbove;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3068 alias NSImageAlignment.NSImageAlignBottom NSImageAlignBottom;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3069 alias NSImageAlignment.NSImageAlignBottomLeft NSImageAlignBottomLeft;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3070 alias NSImageAlignment.NSImageAlignBottomRight NSImageAlignBottomRight;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3071 alias NSImageAlignment.NSImageAlignCenter NSImageAlignCenter;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3072 alias NSImageAlignment.NSImageAlignLeft NSImageAlignLeft;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3073 alias NSImageAlignment.NSImageAlignRight NSImageAlignRight;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3074 alias NSImageAlignment.NSImageAlignTop NSImageAlignTop;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3075 alias NSImageAlignment.NSImageAlignTopLeft NSImageAlignTopLeft;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3076 alias NSImageAlignment.NSImageAlignTopRight NSImageAlignTopRight;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3077 public static const int NSImageBelow = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3078 public static const int NSImageCacheAlways = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3079 public static const int NSImageCacheBySize = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3080 public static const int NSImageCacheDefault = 0;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3081 alias Cocoa.NSImageCacheMode.NSImageCacheNever NSImageCacheNever;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3082 public static const int NSImageCellType = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3083 public static const int NSImageFrameButton = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3084 public static const int NSImageFrameGrayBezel = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3085 public static const int NSImageFrameGroove = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3086 public static const int NSImageFrameNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3087 public static const int NSImageFramePhoto = 1;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3088 alias Cocoa.NSImageInterpolation.NSImageInterpolationDefault NSImageInterpolationDefault;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3089 alias Cocoa.NSImageInterpolation.NSImageInterpolationHigh NSImageInterpolationHigh;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3090 alias Cocoa.NSImageInterpolation.NSImageInterpolationLow NSImageInterpolationLow;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3091 alias Cocoa.NSImageInterpolation.NSImageInterpolationNone NSImageInterpolationNone;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3092 alias Cocoa.NSCellImagePosition.NSImageLeft NSImageLeft;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3093 public static const int NSImageLoadStatusCancelled = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3094 public static const int NSImageLoadStatusCompleted = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3095 public static const int NSImageLoadStatusInvalidData = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3096 public static const int NSImageLoadStatusReadError = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3097 public static const int NSImageLoadStatusUnexpectedEOF = 3;
85
844f65808a36 Ported dwt.widgets.ToolItem
Jacob Carlborg <doob@me.com>
parents: 83
diff changeset
3098 alias Cocoa.NSCellImagePosition.NSImageOnly NSImageOnly;
844f65808a36 Ported dwt.widgets.ToolItem
Jacob Carlborg <doob@me.com>
parents: 83
diff changeset
3099 alias Cocoa.NSCellImagePosition.NSImageOverlaps NSImageOverlaps;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3100 public static const int NSImageRepLoadStatusCompleted = -6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3101 public static const int NSImageRepLoadStatusInvalidData = -4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3102 public static const int NSImageRepLoadStatusReadingHeader = -2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3103 public static const int NSImageRepLoadStatusUnexpectedEOF = -5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3104 public static const int NSImageRepLoadStatusUnknownType = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3105 public static const int NSImageRepLoadStatusWillNeedAllData = -3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3106 public static const int NSImageRepMatchesDevice = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3107 public static const int NSImageRight = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3108 public static const int NSImageScaleAxesIndependently = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3109 public static const int NSImageScaleNone = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3110 public static const int NSImageScaleProportionallyDown = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3111 public static const int NSImageScaleProportionallyUpOrDown = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3112 public static const int NSIndexedColorSpaceModel = 5;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3113 alias Cocoa.NSAlertStyle.NSInformationalAlertStyle NSInformationalAlertStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3114 public static const int NSInformationalRequest = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3115 public static const int NSInsertCharFunctionKey = 63293;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3116 public static const int NSInsertFunctionKey = 63271;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3117 public static const int NSInsertLineFunctionKey = 63291;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3118 public static const int NSIntType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3119 public static const int NSItalicFontMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3120 public static const int NSJPEG2000FileType = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3121 public static const int NSJPEGFileType = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3122 alias Cocoa.NSTextAlignment.NSJustifiedTextAlignment NSJustifiedTextAlignment;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3123 alias Cocoa.NSEventType.NSKeyDown NSKeyDown;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3124 public static const int NSKeyDownMask = 1024;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3125 alias Cocoa.NSEventType.NSKeyUp NSKeyUp;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3126 public static const int NSKeyUpMask = 2048;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3127 public static const int NSLABColorSpaceModel = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3128 public static const int NSLandscapeOrientation = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3129 public static const int NSLeftArrowFunctionKey = 63234;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3130 alias Cocoa.NSEventType.NSLeftMouseDown NSLeftMouseDown;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3131 public static const int NSLeftMouseDownMask = 2;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3132 alias Cocoa.NSEventType.NSLeftMouseDragged NSLeftMouseDragged;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3133 public static const int NSLeftMouseDraggedMask = 64;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3134 alias Cocoa.NSEventType.NSLeftMouseUp NSLeftMouseUp;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3135 public static const int NSLeftMouseUpMask = 4;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3136 alias Cocoa.NSTextTabType.NSLeftTabStopType NSLeftTabStopType;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3137 public static const int NSLeftTabsBezelBorder = 1;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3138 alias Cocoa.NSTextAlignment.NSLeftTextAlignment NSLeftTextAlignment;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3139 public static const int NSLeftTextMovement = 19;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3140 public static const int NSLighterFontAction = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3141 public static const int NSLineBorder = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3142 public static const int NSLineBreakByCharWrapping = 1;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3143 alias Cocoa.NSLineBreakMode.NSLineBreakByClipping NSLineBreakByClipping;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3144 public static const int NSLineBreakByTruncatingHead = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3145 public static const int NSLineBreakByTruncatingMiddle = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3146 public static const int NSLineBreakByTruncatingTail = 4;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3147 alias Cocoa.NSLineBreakMode.NSLineBreakByWordWrapping NSLineBreakByWordWrapping;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3148 public static const int NSLineDoesntMove = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3149 public static const int NSLineMovesDown = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3150 public static const int NSLineMovesLeft = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3151 public static const int NSLineMovesRight = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3152 public static const int NSLineMovesUp = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3153 public static const int NSLineSeparatorCharacter = 8232;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3154 public static const int NSLineSweepDown = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3155 public static const int NSLineSweepLeft = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3156 public static const int NSLineSweepRight = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3157 public static const int NSLineSweepUp = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3158 alias Cocoa.NSBezierPathElement.NSLineToBezierPathElement NSLineToBezierPathElement;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3159 public static const int NSLinearSlider = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3160 public static const int NSListModeMatrix = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3161 public static const int NSMacintoshInterfaceStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3162 public static const int NSMainMenuWindowLevel = 24;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3163 public static const int NSMenuFunctionKey = 63285;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3164 public static const int NSMiniControlSize = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3165 public static const int NSMiniaturizableWindowMask = 4;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3166 alias Cocoa.NSLineJoinStyle.NSMiterLineJoinStyle NSMiterLineJoinStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3167 public static const int NSMixedState = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3168 public static const int NSModalPanelWindowLevel = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3169 public static const int NSModeSwitchFunctionKey = 63303;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3170 public static const int NSMomentaryChangeButton = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3171 public static const int NSMomentaryLight = 7;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3172 alias Cocoa.NSButtonType.NSMomentaryLightButton NSMomentaryLightButton;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3173 public static const int NSMomentaryPushButton = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3174 public static const int NSMomentaryPushInButton = 7;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3175 alias Cocoa.NSEventType.NSMouseEntered NSMouseEntered;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3176 public static const int NSMouseEnteredMask = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3177 public static const int NSMouseEventSubtype = 0;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3178 alias Cocoa.NSEventType.NSMouseExited NSMouseExited;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3179 public static const int NSMouseExitedMask = 512;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3180 alias Cocoa.NSEventType.NSMouseMoved NSMouseMoved;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3181 public static const int NSMouseMovedMask = 32;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3182 alias Cocoa.NSBezierPathElement.NSMoveToBezierPathElement NSMoveToBezierPathElement;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3183 public static const int NSNarrowFontMask = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3184 public static const int NSNativeShortGlyphPacking = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3185 public static const int NSNaturalTextAlignment = 4;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3186 public static const int NSNewlineCharacter = 10;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3187 public static const int NSNextFunctionKey = 63296;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3188 public static const int NSNextStepInterfaceStyle = 1;
48
34237ae5156a Updated Scrollable to 3.514
Jacob Carlborg <doob@me.com>
parents: 46
diff changeset
3189 alias NSBorderType.NSNoBorder NSNoBorder;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3190 public static const int NSNoCellMask = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3191 public static const int NSNoFontChangeAction = 0;
85
844f65808a36 Ported dwt.widgets.ToolItem
Jacob Carlborg <doob@me.com>
parents: 83
diff changeset
3192 alias Cocoa.NSCellImagePosition.NSNoImage NSNoImage;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3193 public static const int NSNoInterfaceStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3194 public static const int NSNoModeColorPanel = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3195 public static const int NSNoScrollerParts = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3196 public static const int NSNoTabsBezelBorder = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3197 public static const int NSNoTabsLineBorder = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3198 public static const int NSNoTabsNoBorder = 6;
90
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 86
diff changeset
3199 alias Cocoa.NSTitlePosition.NSNoTitle NSNoTitle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3200 public static const int NSNoUnderlineStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3201 public static const int NSNonStandardCharacterSetFontMask = 8;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3202 alias Cocoa.NSWindingRule.NSNonZeroWindingRule NSNonZeroWindingRule;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3203 public static const int NSNonactivatingPanelMask = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3204 public static const int NSNormalWindowLevel = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3205 public static const int NSNullCellType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3206 public static const int NSNullGlyph = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3207 public static const int NSNumericPadKeyMask = 2097152;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3208 public static const int NSOKButton = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3209 public static const int NSOPENGL_CURRENT_VERSION = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3210 public static const int NSOffState = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3211 public static const int NSOnOffButton = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3212 public static const int NSOnState = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3213 public static const int NSOnlyScrollerArrows = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3214 public static const int NSOpenGLCPRasterizationEnable = 221;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3215 public static const int NSOpenGLCPStateValidation = 301;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3216 public static const int NSOpenGLCPSurfaceOpacity = 236;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3217 public static const int NSOpenGLCPSurfaceOrder = 235;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3218 public static const int NSOpenGLCPSwapInterval = 222;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3219 public static const int NSOpenGLCPSwapRectangle = 200;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3220 public static const int NSOpenGLCPSwapRectangleEnable = 201;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3221 public static const int NSOpenGLGOClearFormatCache = 502;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3222 public static const int NSOpenGLGOFormatCacheSize = 501;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3223 public static const int NSOpenGLGOResetLibrary = 504;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3224 public static const int NSOpenGLGORetainRenderers = 503;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3225 public static const int NSOpenGLPFAAccelerated = 73;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3226 public static const int NSOpenGLPFAAccumSize = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3227 public static const int NSOpenGLPFAAllRenderers = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3228 public static const int NSOpenGLPFAAllowOfflineRenderers = 96;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3229 public static const int NSOpenGLPFAAlphaSize = 11;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3230 public static const int NSOpenGLPFAAuxBuffers = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3231 public static const int NSOpenGLPFAAuxDepthStencil = 57;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3232 public static const int NSOpenGLPFABackingStore = 76;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3233 public static const int NSOpenGLPFAClosestPolicy = 74;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3234 public static const int NSOpenGLPFAColorFloat = 58;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3235 public static const int NSOpenGLPFAColorSize = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3236 public static const int NSOpenGLPFACompliant = 83;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3237 public static const int NSOpenGLPFADepthSize = 12;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3238 public static const int NSOpenGLPFADoubleBuffer = 5;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3239 public static const int NSOpenGLPFAFullScreen = 54;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3240 public static const int NSOpenGLPFAMPSafe = 78;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3241 public static const int NSOpenGLPFAMaximumPolicy = 52;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3242 public static const int NSOpenGLPFAMinimumPolicy = 51;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3243 public static const int NSOpenGLPFAMultiScreen = 81;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3244 public static const int NSOpenGLPFAMultisample = 59;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3245 public static const int NSOpenGLPFANoRecovery = 72;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3246 public static const int NSOpenGLPFAOffScreen = 53;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3247 public static const int NSOpenGLPFAPixelBuffer = 90;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3248 public static const int NSOpenGLPFARendererID = 70;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3249 public static const int NSOpenGLPFARobust = 75;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3250 public static const int NSOpenGLPFASampleAlpha = 61;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3251 public static const int NSOpenGLPFASampleBuffers = 55;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3252 public static const int NSOpenGLPFASamples = 56;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3253 public static const int NSOpenGLPFAScreenMask = 84;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3254 public static const int NSOpenGLPFASingleRenderer = 71;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3255 public static const int NSOpenGLPFAStencilSize = 13;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3256 public static const int NSOpenGLPFAStereo = 6;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3257 public static const int NSOpenGLPFASupersample = 60;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3258 public static const int NSOpenGLPFAVirtualScreenCount = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3259 public static const int NSOpenGLPFAWindow = 80;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3260 alias Cocoa.NSEventType.NSOtherMouseDown NSOtherMouseDown;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3261 public static const int NSOtherMouseDownMask = 33554432;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3262 alias Cocoa.NSEventType.NSOtherMouseDragged NSOtherMouseDragged;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3263 public static const int NSOtherMouseDraggedMask = 134217728;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3264 alias Cocoa.NSEventType.NSOtherMouseUp NSOtherMouseUp;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3265 public static const int NSOtherMouseUpMask = 67108864;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3266 public static const int NSOtherTextMovement = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3267 public static const int NSOutlineViewDropOnItemIndex = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3268 public static const int NSPNGFileType = 4;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3269 public static const int NSPageDownFunctionKey = 63277;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3270 public static const int NSPageUpFunctionKey = 63276;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3271 public static const int NSParagraphSeparatorCharacter = 8233;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3272 public static const int NSPathStyleNavigationBar = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3273 public static const int NSPathStylePopUp = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3274 public static const int NSPathStyleStandard = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3275 public static const int NSPatternColorSpaceModel = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3276 public static const int NSPauseFunctionKey = 63280;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3277 public static const int NSPenLowerSideMask = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3278 public static const int NSPenPointingDevice = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3279 public static const int NSPenTipMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3280 public static const int NSPenUpperSideMask = 4;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3281 alias Cocoa.NSEventType.NSPeriodic NSPeriodic;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3282 public static const int NSPeriodicMask = 65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3283 public static const int NSPlainTextTokenStyle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3284 public static const int NSPopUpArrowAtBottom = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3285 public static const int NSPopUpArrowAtCenter = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3286 public static const int NSPopUpMenuWindowLevel = 101;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3287 public static const int NSPopUpNoArrow = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3288 public static const int NSPortraitOrientation = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3289 public static const int NSPositiveDoubleType = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3290 public static const int NSPositiveFloatType = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3291 public static const int NSPositiveIntType = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3292 public static const int NSPosterFontMask = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3293 public static const int NSPowerOffEventType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3294 public static const int NSPressedTab = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3295 public static const int NSPrevFunctionKey = 63295;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3296 public static const int NSPrintFunctionKey = 63288;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3297 public static const int NSPrintPanelShowsCopies = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3298 public static const int NSPrintPanelShowsOrientation = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3299 public static const int NSPrintPanelShowsPageRange = 2;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3300 alias Cocoa.NSPrintPanelOptions.NSPrintPanelShowsPageSetupAccessory NSPrintPanelShowsPageSetupAccessory;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3301 public static const int NSPrintPanelShowsPaperSize = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3302 public static const int NSPrintPanelShowsPreview = 131072;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3303 public static const int NSPrintPanelShowsScaling = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3304 public static const int NSPrintScreenFunctionKey = 63278;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3305 public static const int NSPrinterTableError = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3306 public static const int NSPrinterTableNotFound = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3307 public static const int NSPrinterTableOK = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3308 public static const int NSPrintingCancelled = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3309 public static const int NSPrintingFailure = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3310 public static const int NSPrintingReplyLater = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3311 public static const int NSPrintingSuccess = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3312 public static const int NSProgressIndicatorBarStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3313 public static const int NSProgressIndicatorPreferredAquaThickness = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3314 public static const int NSProgressIndicatorPreferredLargeThickness = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3315 public static const int NSProgressIndicatorPreferredSmallThickness = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3316 public static const int NSProgressIndicatorPreferredThickness = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3317 public static const int NSProgressIndicatorSpinningStyle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3318 public static const int NSPushInCell = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3319 public static const int NSPushInCellMask = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3320 alias Cocoa.NSButtonType.NSPushOnPushOffButton NSPushOnPushOffButton;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3321 public static const int NSQTMovieLoopingBackAndForthPlayback = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3322 public static const int NSQTMovieLoopingPlayback = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3323 public static const int NSQTMovieNormalPlayback = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3324 public static const int NSRGBColorSpaceModel = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3325 public static const int NSRGBModeColorPanel = 1;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3326 alias Cocoa.NSButtonType.NSRadioButton NSRadioButton;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3327 public static const int NSRadioModeMatrix = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3328 public static const int NSRangeDateMode = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3329 public static const int NSRatingLevelIndicatorStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3330 public static const int NSRecessedBezelStyle = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3331 public static const int NSRedoFunctionKey = 63300;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3332 public static const int NSRegularControlSize = 0;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3333 alias Cocoa.NSBezelStyle.NSRegularSquareBezelStyle NSRegularSquareBezelStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3334 public static const int NSRelevancyLevelIndicatorStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3335 public static const int NSRemoveTraitFontAction = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3336 public static const int NSResetCursorRectsRunLoopOrdering = 700000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3337 public static const int NSResetFunctionKey = 63283;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3338 public static const int NSResizableWindowMask = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3339 public static const int NSReturnTextMovement = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3340 public static const int NSRightArrowFunctionKey = 63235;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3341 alias Cocoa.NSEventType.NSRightMouseDown NSRightMouseDown;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3342 public static const int NSRightMouseDownMask = 8;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3343 alias Cocoa.NSEventType.NSRightMouseDragged NSRightMouseDragged;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3344 public static const int NSRightMouseDraggedMask = 128;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3345 alias Cocoa.NSEventType.NSRightMouseUp NSRightMouseUp;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3346 public static const int NSRightMouseUpMask = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3347 public static const int NSRightTabStopType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3348 public static const int NSRightTabsBezelBorder = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3349 alias Cocoa.NSTextAlignment.NSRightTextAlignment NSRightTextAlignment;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3350 public static const int NSRightTextMovement = 20;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3351 alias Cocoa.NSLineCapStyle.NSRoundLineCapStyle NSRoundLineCapStyle;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3352 alias Cocoa.NSLineJoinStyle.NSRoundLineJoinStyle NSRoundLineJoinStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3353 public static const int NSRoundRectBezelStyle = 12;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3354 alias Cocoa.NSBezelStyle.NSRoundedBezelStyle NSRoundedBezelStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3355 public static const int NSRoundedDisclosureBezelStyle = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3356 public static const int NSRoundedTokenStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3357 public static const int NSRuleEditorNestingModeCompound = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3358 public static const int NSRuleEditorNestingModeList = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3359 public static const int NSRuleEditorNestingModeSimple = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3360 public static const int NSRuleEditorNestingModeSingle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3361 public static const int NSRuleEditorRowTypeCompound = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3362 public static const int NSRuleEditorRowTypeSimple = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3363 public static const int NSRunAbortedResponse = -1001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3364 public static const int NSRunContinuesResponse = -1002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3365 public static const int NSRunStoppedResponse = -1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3366 public static const int NSSaveAsOperation = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3367 public static const int NSSaveOperation = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3368 public static const int NSSaveToOperation = 2;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3369 alias Cocoa.NSImageScaling.NSScaleNone NSScaleNone;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3370 public static const int NSScaleProportionally = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3371 public static const int NSScaleToFit = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3372 public static const int NSScreenChangedEventType = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3373 public static const int NSScreenSaverWindowLevel = 1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3374 public static const int NSScrollLockFunctionKey = 63279;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3375 alias Cocoa.NSEventType.NSScrollWheel NSScrollWheel;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3376 public static const int NSScrollWheelMask = 4194304;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3377 public static const int NSScrollerArrowsDefaultSetting = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3378 public static const int NSScrollerArrowsMaxEnd = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3379 public static const int NSScrollerArrowsMinEnd = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3380 public static const int NSScrollerArrowsNone = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3381 public static const int NSScrollerDecrementArrow = 1;
57
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
3382 alias NSScrollerPart.NSScrollerDecrementLine NSScrollerDecrementLine;
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
3383 alias NSScrollerPart.NSScrollerDecrementPage NSScrollerDecrementPage;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3384 public static const int NSScrollerIncrementArrow = 0;
57
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
3385 alias NSScrollerPart.NSScrollerIncrementLine NSScrollerIncrementLine;
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
3386 alias NSScrollerPart.NSScrollerIncrementPage NSScrollerIncrementPage;
4444d15131d5 Updated ScrollBar to 3.514
Jacob Carlborg <doob@me.com>
parents: 56
diff changeset
3387 alias NSScrollerPart.NSScrollerKnob NSScrollerKnob;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3388 public static const int NSScrollerKnobSlot = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3389 public static const int NSScrollerNoPart = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3390 public static const int NSSearchFieldClearRecentsMenuItemTag = 1002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3391 public static const int NSSearchFieldNoRecentsMenuItemTag = 1003;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3392 public static const int NSSearchFieldRecentsMenuItemTag = 1001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3393 public static const int NSSearchFieldRecentsTitleMenuItemTag = 1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3394 public static const int NSSegmentStyleAutomatic = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3395 public static const int NSSegmentStyleCapsule = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3396 public static const int NSSegmentStyleRoundRect = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3397 public static const int NSSegmentStyleRounded = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3398 public static const int NSSegmentStyleSmallSquare = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3399 public static const int NSSegmentStyleTexturedRounded = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3400 public static const int NSSegmentStyleTexturedSquare = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3401 public static const int NSSegmentSwitchTrackingMomentary = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3402 public static const int NSSegmentSwitchTrackingSelectAny = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3403 public static const int NSSegmentSwitchTrackingSelectOne = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3404 public static const int NSSelectByCharacter = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3405 public static const int NSSelectByParagraph = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3406 public static const int NSSelectByWord = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3407 public static const int NSSelectFunctionKey = 63297;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3408 public static const int NSSelectedTab = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3409 public static const int NSSelectingNext = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3410 public static const int NSSelectingPrevious = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3411 public static const int NSSelectionAffinityDownstream = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3412 public static const int NSSelectionAffinityUpstream = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3413 public static const int NSServiceApplicationLaunchFailedError = 66561;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3414 public static const int NSServiceApplicationNotFoundError = 66560;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3415 public static const int NSServiceErrorMaximum = 66817;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3416 public static const int NSServiceErrorMinimum = 66560;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3417 public static const int NSServiceInvalidPasteboardDataError = 66563;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3418 public static const int NSServiceMalformedServiceDictionaryError = 66564;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3419 public static const int NSServiceMiscellaneousError = 66800;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3420 public static const int NSServiceRequestTimedOutError = 66562;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3421 alias Cocoa.NSBezelStyle.NSShadowlessSquareBezelStyle NSShadowlessSquareBezelStyle;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3422 public static const int NSShiftKeyMask = 131072;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3423 public static const int NSShowControlGlyphs = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3424 public static const int NSShowInvisibleGlyphs = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3425 public static const int NSSingleDateMode = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3426 public static const int NSSingleUnderlineStyle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3427 public static const int NSSizeDownFontAction = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3428 public static const int NSSizeUpFontAction = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3429 public static const int NSSmallCapsFontMask = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3430 public static const int NSSmallControlSize = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3431 public static const int NSSmallIconButtonBezelStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3432 public static const int NSSmallSquareBezelStyle = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3433 public static const int NSSpecialPageOrder = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3434 public static const int NSSpeechImmediateBoundary = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3435 public static const int NSSpeechSentenceBoundary = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3436 public static const int NSSpeechWordBoundary = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3437 public static const int NSSpellingStateGrammarFlag = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3438 public static const int NSSpellingStateSpellingFlag = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3439 public static const int NSSplitViewDividerStyleThick = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3440 public static const int NSSplitViewDividerStyleThin = 2;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3441 alias Cocoa.NSLineCapStyle.NSSquareLineCapStyle NSSquareLineCapStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3442 public static const int NSSquareStatusItemLength = -2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3443 public static const int NSStatusWindowLevel = 25;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3444 public static const int NSStopFunctionKey = 63284;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3445 public static const int NSStringDrawingDisableScreenFontSubstitution = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3446 public static const int NSStringDrawingOneShot = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3447 public static const int NSStringDrawingTruncatesLastVisibleLine = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3448 public static const int NSStringDrawingUsesDeviceMetrics = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3449 public static const int NSStringDrawingUsesFontLeading = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3450 public static const int NSStringDrawingUsesLineFragmentOrigin = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3451 public static const int NSSubmenuWindowLevel = 3;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3452 alias Cocoa.NSButtonType.NSSwitchButton NSSwitchButton;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3453 public static const int NSSysReqFunctionKey = 63281;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3454 alias Cocoa.NSEventType.NSSystemDefined NSSystemDefined;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3455 public static const int NSSystemDefinedMask = 16384;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3456 public static const int NSSystemFunctionKey = 63287;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3457 public static const int NSTIFFCompressionCCITTFAX3 = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3458 public static const int NSTIFFCompressionCCITTFAX4 = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3459 public static const int NSTIFFCompressionJPEG = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3460 public static const int NSTIFFCompressionLZW = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3461 public static const int NSTIFFCompressionNEXT = 32766;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3462 public static const int NSTIFFCompressionNone = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3463 public static const int NSTIFFCompressionOldJPEG = 32865;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3464 public static const int NSTIFFCompressionPackBits = 32773;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3465 public static const int NSTIFFFileType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3466 public static const int NSTabCharacter = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3467 public static const int NSTabTextMovement = 17;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3468 public static const int NSTableColumnAutoresizingMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3469 public static const int NSTableColumnNoResizing = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3470 public static const int NSTableColumnUserResizingMask = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3471 public static const int NSTableViewDropAbove = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3472 public static const int NSTableViewDropOn = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3473 public static const int NSTableViewFirstColumnOnlyAutoresizingStyle = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3474 public static const int NSTableViewGridNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3475 public static const int NSTableViewLastColumnOnlyAutoresizingStyle = 4;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3476 alias Cocoa.NSTableViewColumnAutoresizingStyle.NSTableViewNoColumnAutoresizing NSTableViewNoColumnAutoresizing;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3477 public static const int NSTableViewReverseSequentialColumnAutoresizingStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3478 public static const int NSTableViewSelectionHighlightStyleRegular = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3479 public static const int NSTableViewSelectionHighlightStyleSourceList = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3480 public static const int NSTableViewSequentialColumnAutoresizingStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3481 public static const int NSTableViewSolidHorizontalGridLineMask = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3482 public static const int NSTableViewSolidVerticalGridLineMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3483 public static const int NSTableViewUniformColumnAutoresizingStyle = 1;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3484 alias Cocoa.NSEventType.NSTabletPoint NSTabletPoint;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3485 public static const int NSTabletPointEventSubtype = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3486 public static const int NSTabletPointMask = 8388608;
61
c74ba20de292 Fix: The application responds to events now
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
3487 alias Cocoa.NSEventType.NSTabletProximity NSTabletProximity;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3488 public static const int NSTabletProximityEventSubtype = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3489 public static const int NSTabletProximityMask = 16777216;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3490 alias Cocoa.NSApplicationTerminateReply.NSTerminateCancel NSTerminateCancel;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3491 alias Cocoa.NSApplicationTerminateReply.NSTerminateLater NSTerminateLater;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3492 alias Cocoa.NSApplicationTerminateReply.NSTerminateNow NSTerminateNow;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3493 public static const int NSTextBlockAbsoluteValueType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3494 public static const int NSTextBlockBaselineAlignment = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3495 public static const int NSTextBlockBorder = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3496 public static const int NSTextBlockBottomAlignment = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3497 public static const int NSTextBlockHeight = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3498 public static const int NSTextBlockMargin = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3499 public static const int NSTextBlockMaximumHeight = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3500 public static const int NSTextBlockMaximumWidth = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3501 public static const int NSTextBlockMiddleAlignment = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3502 public static const int NSTextBlockMinimumHeight = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3503 public static const int NSTextBlockMinimumWidth = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3504 public static const int NSTextBlockPadding = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3505 public static const int NSTextBlockPercentageValueType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3506 public static const int NSTextBlockTopAlignment = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3507 public static const int NSTextBlockWidth = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3508 public static const int NSTextCellType = 1;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3509 alias Cocoa.NSDatePickerStyle.NSTextFieldAndStepperDatePickerStyle NSTextFieldAndStepperDatePickerStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3510 public static const int NSTextFieldDatePickerStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3511 public static const int NSTextFieldRoundedBezel = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3512 public static const int NSTextFieldSquareBezel = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3513 public static const int NSTextListPrependEnclosingMarker = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3514 public static const int NSTextReadInapplicableDocumentTypeError = 65806;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3515 public static const int NSTextReadWriteErrorMaximum = 66303;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3516 public static const int NSTextReadWriteErrorMinimum = 65792;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3517 public static const int NSTextStorageEditedAttributes = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3518 public static const int NSTextStorageEditedCharacters = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3519 public static const int NSTextTableAutomaticLayoutAlgorithm = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3520 public static const int NSTextTableFixedLayoutAlgorithm = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3521 public static const int NSTextWriteInapplicableDocumentTypeError = 66062;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3522 public static const int NSTexturedBackgroundWindowMask = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3523 public static const int NSTexturedRoundedBezelStyle = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3524 public static const int NSTexturedSquareBezelStyle = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3525 public static const int NSThickSquareBezelStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3526 public static const int NSThickerSquareBezelStyle = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3527 public static const int NSTickMarkAbove = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3528 public static const int NSTickMarkBelow = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3529 public static const int NSTickMarkLeft = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3530 public static const int NSTickMarkRight = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3531 public static const int NSTimeZoneDatePickerElementFlag = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3532 public static const int NSTitledWindowMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3533 public static const int NSToggleButton = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3534 public static const int NSToolbarDisplayModeDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3535 public static const int NSToolbarDisplayModeIconAndLabel = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3536 public static const int NSToolbarDisplayModeIconOnly = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3537 public static const int NSToolbarDisplayModeLabelOnly = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3538 public static const int NSToolbarItemVisibilityPriorityHigh = 1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3539 public static const int NSToolbarItemVisibilityPriorityLow = -1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3540 public static const int NSToolbarItemVisibilityPriorityStandard = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3541 public static const int NSToolbarItemVisibilityPriorityUser = 2000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3542 public static const int NSToolbarSizeModeDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3543 public static const int NSToolbarSizeModeRegular = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3544 public static const int NSToolbarSizeModeSmall = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3545 public static const int NSTopTabsBezelBorder = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3546 public static const int NSTornOffMenuWindowLevel = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3547 public static const int NSTrackModeMatrix = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3548 public static const int NSTrackingActiveAlways = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3549 public static const int NSTrackingActiveInActiveApp = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3550 public static const int NSTrackingActiveInKeyWindow = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3551 public static const int NSTrackingActiveWhenFirstResponder = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3552 public static const int NSTrackingAssumeInside = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3553 public static const int NSTrackingCursorUpdate = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3554 public static const int NSTrackingEnabledDuringMouseDrag = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3555 public static const int NSTrackingInVisibleRect = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3556 public static const int NSTrackingMouseEnteredAndExited = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3557 public static const int NSTrackingMouseMoved = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3558 public static const int NSTypesetterBehavior_10_2 = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3559 public static const int NSTypesetterBehavior_10_2_WithCompatibility = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3560 public static const int NSTypesetterBehavior_10_3 = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3561 public static const int NSTypesetterBehavior_10_4 = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3562 public static const int NSTypesetterContainerBreakAction = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3563 public static const int NSTypesetterHorizontalTabAction = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3564 public static const int NSTypesetterLatestBehavior = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3565 public static const int NSTypesetterLineBreakAction = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3566 public static const int NSTypesetterOriginalBehavior = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3567 public static const int NSTypesetterParagraphBreakAction = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3568 public static const int NSTypesetterWhitespaceAction = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3569 public static const int NSTypesetterZeroAdvancementAction = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3570 public static const int NSUnboldFontMask = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3571 public static const int NSUnderlinePatternDash = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3572 public static const int NSUnderlinePatternDashDot = 768;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3573 public static const int NSUnderlinePatternDashDotDot = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3574 public static const int NSUnderlinePatternDot = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3575 public static const int NSUnderlinePatternSolid = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3576 public static const int NSUnderlineStyleDouble = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3577 public static const int NSUnderlineStyleNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3578 public static const int NSUnderlineStyleSingle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3579 public static const int NSUnderlineStyleThick = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3580 public static const int NSUndoFunctionKey = 63299;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3581 public static const int NSUnifiedTitleAndToolbarWindowMask = 4096;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3582 public static const int NSUnitalicFontMask = 16777216;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3583 public static const int NSUnknownColorSpaceModel = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3584 public static const int NSUnknownPageOrder = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3585 public static const int NSUnknownPointingDevice = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3586 public static const int NSUnscaledWindowMask = 2048;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3587 public static const int NSUpArrowFunctionKey = 63232;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3588 public static const int NSUpTextMovement = 21;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3589 public static const int NSUpdateWindowsRunLoopOrdering = 500000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3590 public static const int NSUserFunctionKey = 63286;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3591 public static const int NSUtilityWindowMask = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3592 public static const int NSVariableStatusItemLength = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3593 public static const int NSVerticalRuler = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3594 public static const int NSViaPanelFontAction = 1;
126
38807a925e24 Fixed compile errors, support for SWT language files
Jacob Carlborg <doob@me.com>
parents: 123
diff changeset
3595 public static const Cocoa.NSUInteger NSViewHeightSizable = 16;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3596 public static const int NSViewMaxXMargin = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3597 public static const int NSViewMaxYMargin = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3598 public static const int NSViewMinXMargin = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3599 public static const int NSViewMinYMargin = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3600 public static const int NSViewNotSizable = 0;
126
38807a925e24 Fixed compile errors, support for SWT language files
Jacob Carlborg <doob@me.com>
parents: 123
diff changeset
3601 public static const Cocoa.NSUInteger NSViewWidthSizable = 2;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3602 public static const int NSWantsBidiLevels = 4;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3603 alias Cocoa.NSAlertStyle.NSWarningAlertStyle NSWarningAlertStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3604 public static const int NSWheelModeColorPanel = 6;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3605 alias Cocoa.NSWindowOrderingMode.NSWindowAbove NSWindowAbove;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3606 public static const int NSWindowBackingLocationDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3607 public static const int NSWindowBackingLocationMainMemory = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3608 public static const int NSWindowBackingLocationVideoMemory = 1;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
3609 alias Cocoa.NSWindowOrderingMode.NSWindowBelow NSWindowBelow;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3610 public static const int NSWindowCloseButton = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3611 public static const int NSWindowCollectionBehaviorCanJoinAllSpaces = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3612 public static const int NSWindowCollectionBehaviorDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3613 public static const int NSWindowCollectionBehaviorMoveToActiveSpace = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3614 public static const int NSWindowDocumentIconButton = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3615 public static const int NSWindowExposedEventType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3616 public static const int NSWindowMiniaturizeButton = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3617 public static const int NSWindowMovedEventType = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3618 public static const int NSWindowOut = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3619 public static const int NSWindowSharingNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3620 public static const int NSWindowSharingReadOnly = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3621 public static const int NSWindowSharingReadWrite = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3622 public static const int NSWindowToolbarButton = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3623 public static const int NSWindowZoomButton = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3624 public static const int NSWindows95InterfaceStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3625 public static const int NSWorkspaceLaunchAllowingClassicStartup = 131072;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3626 public static const int NSWorkspaceLaunchAndHide = 1048576;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3627 public static const int NSWorkspaceLaunchAndHideOthers = 2097152;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3628 public static const int NSWorkspaceLaunchAndPrint = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3629 public static const int NSWorkspaceLaunchAsync = 65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3630 public static const int NSWorkspaceLaunchDefault = 196608;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3631 public static const int NSWorkspaceLaunchInhibitingBackgroundOnly = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3632 public static const int NSWorkspaceLaunchNewInstance = 524288;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3633 public static const int NSWorkspaceLaunchPreferringClassic = 262144;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3634 public static const int NSWorkspaceLaunchWithoutActivation = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3635 public static const int NSWorkspaceLaunchWithoutAddingToRecents = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3636 public static const int NSWritingDirectionLeftToRight = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3637 public static const int NSWritingDirectionNatural = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3638 public static const int NSWritingDirectionRightToLeft = 1;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3639 alias Cocoa.NSDatePickerElementFlags.NSYearMonthDatePickerElementFlag NSYearMonthDatePickerElementFlag;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3640 alias Cocoa.NSDatePickerElementFlags.NSYearMonthDayDatePickerElementFlag NSYearMonthDayDatePickerElementFlag;
126
38807a925e24 Fixed compile errors, support for SWT language files
Jacob Carlborg <doob@me.com>
parents: 123
diff changeset
3641 public static const Carbon.CFStringEncoding kCFStringEncodingUTF8 = 134217984;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3642 public static const int NSASCIIStringEncoding = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3643 public static const int NSAdminApplicationDirectory = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3644 public static const int NSAggregateExpressionType = 14;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3645 alias Cocoa.NSSearchPathDirectory.NSAllApplicationsDirectory NSAllApplicationsDirectory;
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3646 alias Cocoa.NSSearchPathDomainMask.NSAllDomainsMask NSAllDomainsMask;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3647 public static const int NSAllLibrariesDirectory = 101;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3648 public static const int NSAllPredicateModifier = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3649 public static const int NSAnchoredSearch = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3650 public static const int NSAndPredicateType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3651 public static const int NSAnyPredicateModifier = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3652 public static const int NSApplicationDirectory = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3653 public static const int NSApplicationSupportDirectory = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3654 public static const int NSArgumentEvaluationScriptError = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3655 public static const int NSArgumentsWrongScriptError = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3656 public static const int NSAtomicWrite = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3657 public static const int NSBackwardsSearch = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3658 public static const int NSBeginsWithComparison = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3659 public static const int NSBeginsWithPredicateOperatorType = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3660 public static const int NSBetweenPredicateOperatorType = 100;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3661 public static const int NSBundleExecutableArchitectureI386 = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3662 public static const int NSBundleExecutableArchitecturePPC = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3663 public static const int NSBundleExecutableArchitecturePPC64 = 16777234;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3664 public static const int NSBundleExecutableArchitectureX86_64 = 16777223;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3665 public static const int NSCachesDirectory = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3666 public static const int NSCalculationDivideByZero = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3667 public static const int NSCalculationLossOfPrecision = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3668 public static const int NSCalculationNoError = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3669 public static const int NSCalculationOverflow = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3670 public static const int NSCalculationUnderflow = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3671 public static const int NSCannotCreateScriptCommandError = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3672 public static const int NSCaseInsensitivePredicateOption = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3673 public static const int NSCaseInsensitiveSearch = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3674 public static const int NSCollectorDisabledOption = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3675 public static const int NSConstantValueExpressionType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3676 public static const int NSContainerSpecifierError = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3677 public static const int NSContainsComparison = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3678 public static const int NSContainsPredicateOperatorType = 99;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3679 public static const int NSCoreServiceDirectory = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3680 public static const int NSCustomSelectorPredicateOperatorType = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3681 public static const int NSDateFormatterBehavior10_0 = 1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3682 public static const int NSDateFormatterBehavior10_4 = 1040;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3683 public static const int NSDateFormatterBehaviorDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3684 public static const int NSDateFormatterFullStyle = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3685 public static const int NSDateFormatterLongStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3686 public static const int NSDateFormatterMediumStyle = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3687 public static const int NSDateFormatterNoStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3688 public static const int NSDateFormatterShortStyle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3689 public static const int NSDayCalendarUnit = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3690 public static const int NSDecimalMaxSize = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3691 public static const int NSDecimalNoScale = 32767;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3692 public static const int NSDemoApplicationDirectory = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3693 public static const int NSDesktopDirectory = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3694 public static const int NSDeveloperApplicationDirectory = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3695 public static const int NSDeveloperDirectory = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3696 public static const int NSDiacriticInsensitivePredicateOption = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3697 public static const int NSDiacriticInsensitiveSearch = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3698 public static const int NSDirectPredicateModifier = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3699 public static const int NSDocumentDirectory = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3700 public static const int NSDocumentationDirectory = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3701 public static const int NSDownloadsDirectory = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3702 public static const int NSEndsWithComparison = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3703 public static const int NSEndsWithPredicateOperatorType = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3704 public static const int NSEqualToComparison = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3705 public static const int NSEqualToPredicateOperatorType = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3706 public static const int NSEraCalendarUnit = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3707 public static const int NSEvaluatedObjectExpressionType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3708 public static const int NSEverySubelement = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3709 public static const int NSExecutableArchitectureMismatchError = 3585;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3710 public static const int NSExecutableErrorMaximum = 3839;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3711 public static const int NSExecutableErrorMinimum = 3584;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3712 public static const int NSExecutableLinkError = 3588;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3713 public static const int NSExecutableLoadError = 3587;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3714 public static const int NSExecutableNotLoadableError = 3584;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3715 public static const int NSExecutableRuntimeMismatchError = 3586;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3716 public static const int NSFileErrorMaximum = 1023;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3717 public static const int NSFileErrorMinimum = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3718 public static const int NSFileLockingError = 255;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3719 public static const int NSFileNoSuchFileError = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3720 public static const int NSFileReadCorruptFileError = 259;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3721 public static const int NSFileReadInapplicableStringEncodingError = 261;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3722 public static const int NSFileReadInvalidFileNameError = 258;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3723 public static const int NSFileReadNoPermissionError = 257;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3724 public static const int NSFileReadNoSuchFileError = 260;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3725 public static const int NSFileReadTooLargeError = 263;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3726 public static const int NSFileReadUnknownError = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3727 public static const int NSFileReadUnknownStringEncodingError = 264;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3728 public static const int NSFileReadUnsupportedSchemeError = 262;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3729 public static const int NSFileWriteInapplicableStringEncodingError = 517;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3730 public static const int NSFileWriteInvalidFileNameError = 514;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3731 public static const int NSFileWriteNoPermissionError = 513;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3732 public static const int NSFileWriteOutOfSpaceError = 640;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3733 public static const int NSFileWriteUnknownError = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3734 public static const int NSFileWriteUnsupportedSchemeError = 518;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3735 public static const int NSForcedOrderingSearch = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3736 public static const int NSFormattingError = 2048;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3737 public static const int NSFormattingErrorMaximum = 2559;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3738 public static const int NSFormattingErrorMinimum = 2048;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3739 public static const double NSFoundationVersionNumber10_0 = 397.39999999999998;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3740 public static const double NSFoundationVersionNumber10_1 = 425.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3741 public static const double NSFoundationVersionNumber10_1_1 = 425.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3742 public static const double NSFoundationVersionNumber10_1_2 = 425.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3743 public static const double NSFoundationVersionNumber10_1_3 = 425.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3744 public static const double NSFoundationVersionNumber10_1_4 = 425.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3745 public static const double NSFoundationVersionNumber10_2 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3746 public static const double NSFoundationVersionNumber10_2_1 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3747 public static const double NSFoundationVersionNumber10_2_2 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3748 public static const double NSFoundationVersionNumber10_2_3 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3749 public static const double NSFoundationVersionNumber10_2_4 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3750 public static const double NSFoundationVersionNumber10_2_5 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3751 public static const double NSFoundationVersionNumber10_2_6 = 462.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3752 public static const double NSFoundationVersionNumber10_2_7 = 462.69999999999999;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3753 public static const double NSFoundationVersionNumber10_2_8 = 462.69999999999999;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3754 public static const double NSFoundationVersionNumber10_3 = 500.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3755 public static const double NSFoundationVersionNumber10_3_1 = 500.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3756 public static const double NSFoundationVersionNumber10_3_2 = 500.30000000000001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3757 public static const double NSFoundationVersionNumber10_3_3 = 500.54000000000002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3758 public static const double NSFoundationVersionNumber10_3_4 = 500.56000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3759 public static const double NSFoundationVersionNumber10_3_5 = 500.56000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3760 public static const double NSFoundationVersionNumber10_3_6 = 500.56000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3761 public static const double NSFoundationVersionNumber10_3_7 = 500.56000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3762 public static const double NSFoundationVersionNumber10_3_8 = 500.56000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3763 public static const double NSFoundationVersionNumber10_3_9 = 500.57999999999998;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3764 public static const double NSFoundationVersionNumber10_4 = 567.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3765 public static const double NSFoundationVersionNumber10_4_1 = 567.00000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3766 public static const double NSFoundationVersionNumber10_4_10 = 567.28999999999996;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3767 public static const double NSFoundationVersionNumber10_4_11 = 567.36000000000001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3768 public static const double NSFoundationVersionNumber10_4_2 = 567.12000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3769 public static const double NSFoundationVersionNumber10_4_3 = 567.21000000000004;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3770 public static const double NSFoundationVersionNumber10_4_4_Intel = 567.23000000000002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3771 public static const double NSFoundationVersionNumber10_4_4_PowerPC = 567.21000000000004;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3772 public static const double NSFoundationVersionNumber10_4_5 = 567.25000000000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3773 public static const double NSFoundationVersionNumber10_4_6 = 567.25999999999999;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3774 public static const double NSFoundationVersionNumber10_4_7 = 567.26999999999998;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3775 public static const double NSFoundationVersionNumber10_4_8 = 567.27999999999997;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3776 public static const double NSFoundationVersionNumber10_4_9 = 567.28999999999996;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3777 public static const int NSFoundationVersionWithFileManagerResourceForkSupport = 412;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3778 public static const int NSFunctionExpressionType = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3779 public static const int NSGreaterThanComparison = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3780 public static const int NSGreaterThanOrEqualToComparison = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3781 public static const int NSGreaterThanOrEqualToPredicateOperatorType = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3782 public static const int NSGreaterThanPredicateOperatorType = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3783 public static const int NSHPUXOperatingSystem = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3784 public static const int NSHTTPCookieAcceptPolicyAlways = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3785 public static const int NSHTTPCookieAcceptPolicyNever = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3786 public static const int NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3787 public static const int NSHashTableCopyIn = 65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3788 public static const int NSHashTableObjectPointerPersonality = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3789 public static const int NSHashTableStrongMemory = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3790 public static const int NSHashTableZeroingWeakMemory = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3791 public static const int NSHourCalendarUnit = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3792 public static const int NSINTEGER_DEFINED = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3793 public static const int NSISO2022JPStringEncoding = 21;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3794 public static const int NSISOLatin1StringEncoding = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3795 public static const int NSISOLatin2StringEncoding = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3796 public static const int NSInPredicateOperatorType = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3797 public static const int NSIndexSubelement = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3798 public static const int NSIntegerMax = 2147483647;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3799 public static const int NSIntegerMin = -2147483648;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3800 public static const int NSInternalScriptError = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3801 public static const int NSInternalSpecifierError = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3802 public static const int NSIntersectSetExpressionType = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3803 public static const int NSInvalidIndexSpecifierError = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3804 public static const int NSJapaneseEUCStringEncoding = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3805 public static const int NSKeyPathExpressionType = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3806 public static const int NSKeySpecifierEvaluationScriptError = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3807 public static const int NSKeyValueChangeInsertion = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3808 public static const int NSKeyValueChangeRemoval = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3809 public static const int NSKeyValueChangeReplacement = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3810 public static const int NSKeyValueChangeSetting = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3811 public static const int NSKeyValueIntersectSetMutation = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3812 public static const int NSKeyValueMinusSetMutation = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3813 public static const int NSKeyValueObservingOptionInitial = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3814 public static const int NSKeyValueObservingOptionNew = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3815 public static const int NSKeyValueObservingOptionOld = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3816 public static const int NSKeyValueObservingOptionPrior = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3817 public static const int NSKeyValueSetSetMutation = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3818 public static const int NSKeyValueUnionSetMutation = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3819 public static const int NSKeyValueValidationError = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3820 public static const int NSLessThanComparison = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3821 public static const int NSLessThanOrEqualToComparison = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3822 public static const int NSLessThanOrEqualToPredicateOperatorType = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3823 public static const int NSLessThanPredicateOperatorType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3824 public static const int NSLibraryDirectory = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3825 public static const int NSLikePredicateOperatorType = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3826 public static const int NSLiteralSearch = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3827 public static const int NSLocalDomainMask = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3828 public static const int NSMACHOperatingSystem = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3829 public static const int NSMacOSRomanStringEncoding = 30;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3830 public static const int NSMachPortDeallocateNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3831 public static const int NSMachPortDeallocateReceiveRight = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3832 public static const int NSMachPortDeallocateSendRight = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3833 public static const int NSMapTableCopyIn = 65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3834 public static const int NSMapTableObjectPointerPersonality = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3835 public static const int NSMapTableStrongMemory = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3836 public static const int NSMapTableZeroingWeakMemory = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3837 public static const int NSMappedRead = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3838 public static const int NSMatchesPredicateOperatorType = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3839 public static const int NSMaxXEdge = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3840 public static const int NSMaxYEdge = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3841 public static const int NSMiddleSubelement = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3842 public static const int NSMinXEdge = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3843 public static const int NSMinYEdge = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3844 public static const int NSMinusSetExpressionType = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3845 public static const int NSMinuteCalendarUnit = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3846 public static const int NSMonthCalendarUnit = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3847 public static const int NSNEXTSTEPStringEncoding = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3848 public static const int NSNetServiceNoAutoRename = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3849 public static const int NSNetServicesActivityInProgress = -72003;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3850 public static const int NSNetServicesBadArgumentError = -72004;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3851 public static const int NSNetServicesCancelledError = -72005;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3852 public static const int NSNetServicesCollisionError = -72001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3853 public static const int NSNetServicesInvalidError = -72006;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3854 public static const int NSNetServicesNotFoundError = -72002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3855 public static const int NSNetServicesTimeoutError = -72007;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3856 public static const int NSNetServicesUnknownError = -72000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3857 public static const int NSNetworkDomainMask = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3858 public static const int NSNoScriptError = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3859 public static const int NSNoSpecifierError = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3860 public static const int NSNoSubelement = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3861 public static const int NSNoTopLevelContainersSpecifierError = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3862 public static const int NSNonLossyASCIIStringEncoding = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3863 public static const int NSNotEqualToPredicateOperatorType = 5;
51
e6f04eb518ae Updated Canvas to 3.514
Jacob Carlborg <doob@me.com>
parents: 50
diff changeset
3864 alias Cocoa.NSNotFound NSNotFound;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3865 public static const int NSNotPredicateType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3866 public static const int NSNotificationCoalescingOnName = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3867 public static const int NSNotificationCoalescingOnSender = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3868 public static const int NSNotificationDeliverImmediately = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3869 public static const int NSNotificationNoCoalescing = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3870 public static const int NSNotificationPostToAllSessions = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3871 public static const int NSNotificationSuspensionBehaviorCoalesce = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3872 public static const int NSNotificationSuspensionBehaviorDeliverImmediately = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3873 public static const int NSNotificationSuspensionBehaviorDrop = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3874 public static const int NSNotificationSuspensionBehaviorHold = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3875 public static const int NSNumberFormatterBehavior10_0 = 1000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3876 public static const int NSNumberFormatterBehavior10_4 = 1040;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3877 public static const int NSNumberFormatterBehaviorDefault = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3878 public static const int NSNumberFormatterCurrencyStyle = 2;
123
63a09873578e Fixed compile errors
Jacob Carlborg <doob@me.com>
parents: 122
diff changeset
3879 alias Cocoa.NSNumberFormatterStyle.NSNumberFormatterDecimalStyle NSNumberFormatterDecimalStyle;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3880 public static const int NSNumberFormatterNoStyle = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3881 public static const int NSNumberFormatterPadAfterPrefix = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3882 public static const int NSNumberFormatterPadAfterSuffix = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3883 public static const int NSNumberFormatterPadBeforePrefix = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3884 public static const int NSNumberFormatterPadBeforeSuffix = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3885 public static const int NSNumberFormatterPercentStyle = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3886 public static const int NSNumberFormatterRoundCeiling = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3887 public static const int NSNumberFormatterRoundDown = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3888 public static const int NSNumberFormatterRoundFloor = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3889 public static const int NSNumberFormatterRoundHalfDown = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3890 public static const int NSNumberFormatterRoundHalfEven = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3891 public static const int NSNumberFormatterRoundHalfUp = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3892 public static const int NSNumberFormatterRoundUp = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3893 public static const int NSNumberFormatterScientificStyle = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3894 public static const int NSNumberFormatterSpellOutStyle = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3895 public static const int NSNumericSearch = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3896 public static const int NSOSF1OperatingSystem = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3897 public static const int NSObjCArrayType = 91;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3898 public static const int NSObjCBitfield = 98;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3899 public static const int NSObjCBoolType = 66;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3900 public static const int NSObjCCharType = 99;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3901 public static const int NSObjCDoubleType = 100;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3902 public static const int NSObjCFloatType = 102;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3903 public static const int NSObjCLongType = 108;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3904 public static const int NSObjCLonglongType = 113;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3905 public static const int NSObjCNoType = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3906 public static const int NSObjCObjectType = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3907 public static const int NSObjCPointerType = 94;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3908 public static const int NSObjCSelectorType = 58;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3909 public static const int NSObjCShortType = 115;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3910 public static const int NSObjCStringType = 42;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3911 public static const int NSObjCStructType = 123;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3912 public static const int NSObjCUnionType = 40;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3913 public static const int NSObjCVoidType = 118;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3914 public static const int NSObjectAutoreleasedEvent = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3915 public static const int NSObjectExtraRefDecrementedEvent = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3916 public static const int NSObjectExtraRefIncrementedEvent = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3917 public static const int NSObjectInternalRefDecrementedEvent = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3918 public static const int NSObjectInternalRefIncrementedEvent = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3919 public static const int NSOpenStepUnicodeReservedBase = 62464;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3920 public static const int NSOperationNotSupportedForKeyScriptError = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3921 public static const int NSOperationNotSupportedForKeySpecifierError = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3922 public static const int NSOperationQueueDefaultMaxConcurrentOperationCount = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3923 public static const int NSOperationQueuePriorityHigh = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3924 public static const int NSOperationQueuePriorityLow = -4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3925 public static const int NSOperationQueuePriorityNormal = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3926 public static const int NSOperationQueuePriorityVeryHigh = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3927 public static const int NSOperationQueuePriorityVeryLow = -8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3928 public static const int NSOrPredicateType = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3929 public static const int NSOrderedAscending = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3930 public static const int NSOrderedDescending = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3931 public static const int NSOrderedSame = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3932 public static const int NSPointerFunctionsCStringPersonality = 768;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3933 public static const int NSPointerFunctionsCopyIn = 65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3934 public static const int NSPointerFunctionsIntegerPersonality = 1280;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3935 public static const int NSPointerFunctionsMachVirtualMemory = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3936 public static const int NSPointerFunctionsMallocMemory = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3937 public static const int NSPointerFunctionsObjectPersonality = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3938 public static const int NSPointerFunctionsObjectPointerPersonality = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3939 public static const int NSPointerFunctionsOpaqueMemory = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3940 public static const int NSPointerFunctionsOpaquePersonality = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3941 public static const int NSPointerFunctionsStrongMemory = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3942 public static const int NSPointerFunctionsStructPersonality = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3943 public static const int NSPointerFunctionsZeroingWeakMemory = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3944 public static const int NSPositionAfter = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3945 public static const int NSPositionBefore = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3946 public static const int NSPositionBeginning = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3947 public static const int NSPositionEnd = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3948 public static const int NSPositionReplace = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3949 public static const int NSPostASAP = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3950 public static const int NSPostNow = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3951 public static const int NSPostWhenIdle = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3952 public static const int NSPropertyListBinaryFormat_v1_0 = 200;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3953 public static const int NSPropertyListImmutable = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3954 public static const int NSPropertyListMutableContainers = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3955 public static const int NSPropertyListMutableContainersAndLeaves = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3956 public static const int NSPropertyListOpenStepFormat = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3957 public static const int NSPropertyListXMLFormat_v1_0 = 100;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3958 public static const int NSRandomSubelement = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3959 public static const int NSReceiverEvaluationScriptError = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3960 public static const int NSReceiversCantHandleCommandScriptError = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3961 public static const int NSRelativeAfter = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3962 public static const int NSRelativeBefore = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3963 public static const int NSRequiredArgumentsMissingScriptError = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3964 public static const int NSRoundBankers = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3965 public static const int NSRoundDown = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3966 public static const int NSRoundPlain = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3967 public static const int NSRoundUp = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3968 public static const int NSSaveOptionsAsk = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3969 public static const int NSSaveOptionsNo = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3970 public static const int NSSaveOptionsYes = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3971 public static const int NSScannedOption = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3972 public static const int NSSecondCalendarUnit = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3973 public static const int NSShiftJISStringEncoding = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3974 public static const int NSSolarisOperatingSystem = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3975 public static const int NSStreamEventEndEncountered = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3976 public static const int NSStreamEventErrorOccurred = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3977 public static const int NSStreamEventHasBytesAvailable = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3978 public static const int NSStreamEventHasSpaceAvailable = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3979 public static const int NSStreamEventNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3980 public static const int NSStreamEventOpenCompleted = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3981 public static const int NSStreamStatusAtEnd = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3982 public static const int NSStreamStatusClosed = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3983 public static const int NSStreamStatusError = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3984 public static const int NSStreamStatusNotOpen = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3985 public static const int NSStreamStatusOpen = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3986 public static const int NSStreamStatusOpening = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3987 public static const int NSStreamStatusReading = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3988 public static const int NSStreamStatusWriting = 4;
138
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
3989 alias Cocoa.NSStringEncodingConversionOptions.NSStringEncodingConversionAllowLossy NSStringEncodingConversionAllowLossy;
3d9eb62cd2e3 Fixes #8
Jacob Carlborg <doob@me.com>
parents: 130
diff changeset
3990 alias Cocoa.NSStringEncodingConversionOptions.NSStringEncodingConversionExternalRepresentation NSStringEncodingConversionExternalRepresentation;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3991 public static const int NSSubqueryExpressionType = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3992 public static const int NSSunOSOperatingSystem = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3993 public static const int NSSymbolStringEncoding = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3994 public static const int NSSystemDomainMask = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3995 public static const double NSTimeIntervalSince1970 = 978307200.00000000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3996 public static const int NSTimeZoneNameStyleDaylightSaving = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3997 public static const int NSTimeZoneNameStyleShortDaylightSaving = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3998 public static const int NSTimeZoneNameStyleShortStandard = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
3999 public static const int NSTimeZoneNameStyleStandard = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4000 public static const long NSUIntegerMax = 4294967295L;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4001 public static const int NSURLCacheStorageAllowed = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4002 public static const int NSURLCacheStorageAllowedInMemoryOnly = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4003 public static const int NSURLCacheStorageNotAllowed = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4004 public static const int NSURLCredentialPersistenceForSession = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4005 public static const int NSURLCredentialPersistenceNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4006 public static const int NSURLCredentialPersistencePermanent = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4007 public static const int NSURLErrorBadServerResponse = -1011;
126
38807a925e24 Fixed compile errors, support for SWT language files
Jacob Carlborg <doob@me.com>
parents: 123
diff changeset
4008 public static const Cocoa.NSInteger NSURLErrorBadURL = -1000;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4009 public static const int NSURLErrorCancelled = -999;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4010 public static const int NSURLErrorCannotCloseFile = -3002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4011 public static const int NSURLErrorCannotConnectToHost = -1004;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4012 public static const int NSURLErrorCannotCreateFile = -3000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4013 public static const int NSURLErrorCannotDecodeContentData = -1016;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4014 public static const int NSURLErrorCannotDecodeRawData = -1015;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4015 public static const int NSURLErrorCannotFindHost = -1003;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4016 public static const int NSURLErrorCannotLoadFromNetwork = -2000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4017 public static const int NSURLErrorCannotMoveFile = -3005;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4018 public static const int NSURLErrorCannotOpenFile = -3001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4019 public static const int NSURLErrorCannotParseResponse = -1017;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4020 public static const int NSURLErrorCannotRemoveFile = -3004;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4021 public static const int NSURLErrorCannotWriteToFile = -3003;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4022 public static const int NSURLErrorClientCertificateRejected = -1205;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4023 public static const int NSURLErrorDNSLookupFailed = -1006;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4024 public static const int NSURLErrorDataLengthExceedsMaximum = -1103;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4025 public static const int NSURLErrorDownloadDecodingFailedMidStream = -3006;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4026 public static const int NSURLErrorDownloadDecodingFailedToComplete = -3007;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4027 public static const int NSURLErrorFileDoesNotExist = -1100;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4028 public static const int NSURLErrorFileIsDirectory = -1101;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4029 public static const int NSURLErrorHTTPTooManyRedirects = -1007;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4030 public static const int NSURLErrorNetworkConnectionLost = -1005;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4031 public static const int NSURLErrorNoPermissionsToReadFile = -1102;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4032 public static const int NSURLErrorNotConnectedToInternet = -1009;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4033 public static const int NSURLErrorRedirectToNonExistentLocation = -1010;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4034 public static const int NSURLErrorResourceUnavailable = -1008;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4035 public static const int NSURLErrorSecureConnectionFailed = -1200;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4036 public static const int NSURLErrorServerCertificateHasBadDate = -1201;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4037 public static const int NSURLErrorServerCertificateHasUnknownRoot = -1203;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4038 public static const int NSURLErrorServerCertificateNotYetValid = -1204;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4039 public static const int NSURLErrorServerCertificateUntrusted = -1202;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4040 public static const int NSURLErrorTimedOut = -1001;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4041 public static const int NSURLErrorUnknown = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4042 public static const int NSURLErrorUnsupportedURL = -1002;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4043 public static const int NSURLErrorUserAuthenticationRequired = -1013;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4044 public static const int NSURLErrorUserCancelledAuthentication = -1012;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4045 public static const int NSURLErrorZeroByteResource = -1014;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4046 public static const int NSURLHandleLoadFailed = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4047 public static const int NSURLHandleLoadInProgress = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4048 public static const int NSURLHandleLoadSucceeded = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4049 public static const int NSURLHandleNotLoaded = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4050 public static const int NSURLRequestReloadIgnoringCacheData = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4051 public static const int NSURLRequestReloadIgnoringLocalAndRemoteCacheData = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4052 public static const int NSURLRequestReloadIgnoringLocalCacheData = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4053 public static const int NSURLRequestReloadRevalidatingCacheData = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4054 public static const int NSURLRequestReturnCacheDataDontLoad = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4055 public static const int NSURLRequestReturnCacheDataElseLoad = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4056 public static const int NSURLRequestUseProtocolCachePolicy = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4057 public static const int NSUTF16BigEndianStringEncoding = -1879047936;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4058 public static const int NSUTF16LittleEndianStringEncoding = -1811939072;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4059 public static const int NSUTF16StringEncoding = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4060 public static const int NSUTF32BigEndianStringEncoding = -1744830208;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4061 public static const int NSUTF32LittleEndianStringEncoding = -1677721344;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4062 public static const int NSUTF32StringEncoding = -1946156800;
122
2e671fa40eec Ported dwt.dnd, dwt.opengl, dwt.printing and dwt.program
Jacob Carlborg <doob@me.com>
parents: 121
diff changeset
4063 alias Cocoa.NSStringEncoding.NSUTF8StringEncoding NSUTF8StringEncoding;
46
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4064 public static const int NSUncachedRead = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4065 public static const int NSUndefinedDateComponent = 2147483647;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4066 public static const int NSUndoCloseGroupingRunLoopOrdering = 350000;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4067 public static const int NSUnicodeStringEncoding = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4068 public static const int NSUnionSetExpressionType = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4069 public static const int NSUnknownKeyScriptError = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4070 public static const int NSUnknownKeySpecifierError = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4071 public static const int NSUserCancelledError = 3072;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4072 public static const int NSUserDirectory = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4073 public static const int NSUserDomainMask = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4074 public static const int NSValidationErrorMaximum = 2047;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4075 public static const int NSValidationErrorMinimum = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4076 public static const int NSVariableExpressionType = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4077 public static const int NSWeekCalendarUnit = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4078 public static const int NSWeekdayCalendarUnit = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4079 public static const int NSWeekdayOrdinalCalendarUnit = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4080 public static const int NSWidthInsensitiveSearch = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4081 public static const int NSWindows95OperatingSystem = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4082 public static const int NSWindowsCP1250StringEncoding = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4083 public static const int NSWindowsCP1251StringEncoding = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4084 public static const int NSWindowsCP1252StringEncoding = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4085 public static const int NSWindowsCP1253StringEncoding = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4086 public static const int NSWindowsCP1254StringEncoding = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4087 public static const int NSWindowsNTOperatingSystem = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4088 public static const int NSWrapCalendarComponents = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4089 public static const int NSXMLAttributeCDATAKind = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4090 public static const int NSXMLAttributeDeclarationKind = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4091 public static const int NSXMLAttributeEntitiesKind = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4092 public static const int NSXMLAttributeEntityKind = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4093 public static const int NSXMLAttributeEnumerationKind = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4094 public static const int NSXMLAttributeIDKind = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4095 public static const int NSXMLAttributeIDRefKind = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4096 public static const int NSXMLAttributeIDRefsKind = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4097 public static const int NSXMLAttributeKind = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4098 public static const int NSXMLAttributeNMTokenKind = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4099 public static const int NSXMLAttributeNMTokensKind = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4100 public static const int NSXMLAttributeNotationKind = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4101 public static const int NSXMLCommentKind = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4102 public static const int NSXMLDTDKind = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4103 public static const int NSXMLDocumentHTMLKind = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4104 public static const int NSXMLDocumentIncludeContentTypeDeclaration = 262144;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4105 public static const int NSXMLDocumentKind = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4106 public static const int NSXMLDocumentTextKind = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4107 public static const int NSXMLDocumentTidyHTML = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4108 public static const int NSXMLDocumentTidyXML = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4109 public static const int NSXMLDocumentValidate = 8192;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4110 public static const int NSXMLDocumentXHTMLKind = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4111 public static const int NSXMLDocumentXInclude = 65536;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4112 public static const int NSXMLDocumentXMLKind = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4113 public static const int NSXMLElementDeclarationAnyKind = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4114 public static const int NSXMLElementDeclarationElementKind = 20;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4115 public static const int NSXMLElementDeclarationEmptyKind = 17;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4116 public static const int NSXMLElementDeclarationKind = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4117 public static const int NSXMLElementDeclarationMixedKind = 19;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4118 public static const int NSXMLElementDeclarationUndefinedKind = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4119 public static const int NSXMLElementKind = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4120 public static const int NSXMLEntityDeclarationKind = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4121 public static const int NSXMLEntityGeneralKind = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4122 public static const int NSXMLEntityParameterKind = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4123 public static const int NSXMLEntityParsedKind = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4124 public static const int NSXMLEntityPredefined = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4125 public static const int NSXMLEntityUnparsedKind = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4126 public static const int NSXMLInvalidKind = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4127 public static const int NSXMLNamespaceKind = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4128 public static const int NSXMLNodeCompactEmptyElement = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4129 public static const int NSXMLNodeExpandEmptyElement = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4130 public static const int NSXMLNodeIsCDATA = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4131 public static const int NSXMLNodeOptionsNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4132 public static const int NSXMLNodePreserveAll = -1048546;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4133 public static const int NSXMLNodePreserveAttributeOrder = 2097152;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4134 public static const int NSXMLNodePreserveCDATA = 16777216;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4135 public static const int NSXMLNodePreserveCharacterReferences = 134217728;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4136 public static const int NSXMLNodePreserveDTD = 67108864;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4137 public static const int NSXMLNodePreserveEmptyElements = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4138 public static const int NSXMLNodePreserveEntities = 4194304;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4139 public static const int NSXMLNodePreserveNamespaceOrder = 1048576;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4140 public static const int NSXMLNodePreservePrefixes = 8388608;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4141 public static const int NSXMLNodePreserveQuotes = 24;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4142 public static const int NSXMLNodePreserveWhitespace = 33554432;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4143 public static const int NSXMLNodePrettyPrint = 131072;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4144 public static const int NSXMLNodeUseDoubleQuotes = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4145 public static const int NSXMLNodeUseSingleQuotes = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4146 public static const int NSXMLNotationDeclarationKind = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4147 public static const int NSXMLParserAttributeHasNoValueError = 41;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4148 public static const int NSXMLParserAttributeListNotFinishedError = 51;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4149 public static const int NSXMLParserAttributeListNotStartedError = 50;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4150 public static const int NSXMLParserAttributeNotFinishedError = 40;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4151 public static const int NSXMLParserAttributeNotStartedError = 39;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4152 public static const int NSXMLParserAttributeRedefinedError = 42;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4153 public static const int NSXMLParserCDATANotFinishedError = 63;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4154 public static const int NSXMLParserCharacterRefAtEOFError = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4155 public static const int NSXMLParserCharacterRefInDTDError = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4156 public static const int NSXMLParserCharacterRefInEpilogError = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4157 public static const int NSXMLParserCharacterRefInPrologError = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4158 public static const int NSXMLParserCommentContainsDoubleHyphenError = 80;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4159 public static const int NSXMLParserCommentNotFinishedError = 45;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4160 public static const int NSXMLParserConditionalSectionNotFinishedError = 59;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4161 public static const int NSXMLParserConditionalSectionNotStartedError = 58;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4162 public static const int NSXMLParserDOCTYPEDeclNotFinishedError = 61;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4163 public static const int NSXMLParserDelegateAbortedParseError = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4164 public static const int NSXMLParserDocumentStartError = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4165 public static const int NSXMLParserElementContentDeclNotFinishedError = 55;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4166 public static const int NSXMLParserElementContentDeclNotStartedError = 54;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4167 public static const int NSXMLParserEmptyDocumentError = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4168 public static const int NSXMLParserEncodingNotSupportedError = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4169 public static const int NSXMLParserEntityBoundaryError = 90;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4170 public static const int NSXMLParserEntityIsExternalError = 29;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4171 public static const int NSXMLParserEntityIsParameterError = 30;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4172 public static const int NSXMLParserEntityNotFinishedError = 37;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4173 public static const int NSXMLParserEntityNotStartedError = 36;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4174 public static const int NSXMLParserEntityRefAtEOFError = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4175 public static const int NSXMLParserEntityRefInDTDError = 17;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4176 public static const int NSXMLParserEntityRefInEpilogError = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4177 public static const int NSXMLParserEntityRefInPrologError = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4178 public static const int NSXMLParserEntityRefLoopError = 89;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4179 public static const int NSXMLParserEntityReferenceMissingSemiError = 23;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4180 public static const int NSXMLParserEntityReferenceWithoutNameError = 22;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4181 public static const int NSXMLParserEntityValueRequiredError = 84;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4182 public static const int NSXMLParserEqualExpectedError = 75;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4183 public static const int NSXMLParserExternalStandaloneEntityError = 82;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4184 public static const int NSXMLParserExternalSubsetNotFinishedError = 60;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4185 public static const int NSXMLParserExtraContentError = 86;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4186 public static const int NSXMLParserGTRequiredError = 73;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4187 public static const int NSXMLParserInternalError = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4188 public static const int NSXMLParserInvalidCharacterError = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4189 public static const int NSXMLParserInvalidCharacterInEntityError = 87;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4190 public static const int NSXMLParserInvalidCharacterRefError = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4191 public static const int NSXMLParserInvalidConditionalSectionError = 83;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4192 public static const int NSXMLParserInvalidDecimalCharacterRefError = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4193 public static const int NSXMLParserInvalidEncodingError = 81;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4194 public static const int NSXMLParserInvalidEncodingNameError = 79;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4195 public static const int NSXMLParserInvalidHexCharacterRefError = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4196 public static const int NSXMLParserInvalidURIError = 91;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4197 public static const int NSXMLParserLTRequiredError = 72;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4198 public static const int NSXMLParserLTSlashRequiredError = 74;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4199 public static const int NSXMLParserLessThanSymbolInAttributeError = 38;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4200 public static const int NSXMLParserLiteralNotFinishedError = 44;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4201 public static const int NSXMLParserLiteralNotStartedError = 43;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4202 public static const int NSXMLParserMisplacedCDATAEndStringError = 62;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4203 public static const int NSXMLParserMisplacedXMLDeclarationError = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4204 public static const int NSXMLParserMixedContentDeclNotFinishedError = 53;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4205 public static const int NSXMLParserMixedContentDeclNotStartedError = 52;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4206 public static const int NSXMLParserNAMERequiredError = 68;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4207 public static const int NSXMLParserNMTOKENRequiredError = 67;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4208 public static const int NSXMLParserNamespaceDeclarationError = 35;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4209 public static const int NSXMLParserNoDTDError = 94;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4210 public static const int NSXMLParserNotWellBalancedError = 85;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4211 public static const int NSXMLParserNotationNotFinishedError = 49;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4212 public static const int NSXMLParserNotationNotStartedError = 48;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4213 public static const int NSXMLParserOutOfMemoryError = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4214 public static const int NSXMLParserPCDATARequiredError = 69;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4215 public static const int NSXMLParserParsedEntityRefAtEOFError = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4216 public static const int NSXMLParserParsedEntityRefInEpilogError = 20;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4217 public static const int NSXMLParserParsedEntityRefInInternalError = 88;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4218 public static const int NSXMLParserParsedEntityRefInInternalSubsetError = 21;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4219 public static const int NSXMLParserParsedEntityRefInPrologError = 19;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4220 public static const int NSXMLParserParsedEntityRefMissingSemiError = 25;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4221 public static const int NSXMLParserParsedEntityRefNoNameError = 24;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4222 public static const int NSXMLParserPrematureDocumentEndError = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4223 public static const int NSXMLParserProcessingInstructionNotFinishedError = 47;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4224 public static const int NSXMLParserProcessingInstructionNotStartedError = 46;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4225 public static const int NSXMLParserPublicIdentifierRequiredError = 71;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4226 public static const int NSXMLParserSeparatorRequiredError = 66;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4227 public static const int NSXMLParserSpaceRequiredError = 65;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4228 public static const int NSXMLParserStandaloneValueError = 78;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4229 public static const int NSXMLParserStringNotClosedError = 34;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4230 public static const int NSXMLParserStringNotStartedError = 33;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4231 public static const int NSXMLParserTagNameMismatchError = 76;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4232 public static const int NSXMLParserURIFragmentError = 92;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4233 public static const int NSXMLParserURIRequiredError = 70;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4234 public static const int NSXMLParserUndeclaredEntityError = 26;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4235 public static const int NSXMLParserUnfinishedTagError = 77;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4236 public static const int NSXMLParserUnknownEncodingError = 31;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4237 public static const int NSXMLParserUnparsedEntityError = 28;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4238 public static const int NSXMLParserXMLDeclNotFinishedError = 57;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4239 public static const int NSXMLParserXMLDeclNotStartedError = 56;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4240 public static const int NSXMLProcessingInstructionKind = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4241 public static const int NSXMLTextKind = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4242 public static const int NSYearCalendarUnit = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4243 public static const int NS_BigEndian = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4244 public static const int NS_LittleEndian = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4245 public static const int NS_UNICHAR_IS_EIGHT_BIT = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4246 public static const int NS_UnknownByteOrder = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4247 public static const int DOM_ADDITION = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4248 public static const int DOM_ANY_TYPE = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4249 public static const int DOM_ANY_UNORDERED_NODE_TYPE = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4250 public static const int DOM_ATTRIBUTE_NODE = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4251 public static const int DOM_AT_TARGET = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4252 public static const int DOM_BAD_BOUNDARYPOINTS_ERR = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4253 public static const int DOM_BOOLEAN_TYPE = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4254 public static const int DOM_BOTH = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4255 public static const int DOM_BUBBLING_PHASE = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4256 public static const int DOM_CAPTURING_PHASE = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4257 public static const int DOM_CDATA_SECTION_NODE = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4258 public static const int DOM_CHARSET_RULE = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4259 public static const int DOM_COMMENT_NODE = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4260 public static const int DOM_CSS_ATTR = 22;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4261 public static const int DOM_CSS_CM = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4262 public static const int DOM_CSS_COUNTER = 23;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4263 public static const int DOM_CSS_CUSTOM = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4264 public static const int DOM_CSS_DEG = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4265 public static const int DOM_CSS_DIMENSION = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4266 public static const int DOM_CSS_EMS = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4267 public static const int DOM_CSS_EXS = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4268 public static const int DOM_CSS_GRAD = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4269 public static const int DOM_CSS_HZ = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4270 public static const int DOM_CSS_IDENT = 21;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4271 public static const int DOM_CSS_IN = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4272 public static const int DOM_CSS_INHERIT = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4273 public static const int DOM_CSS_KHZ = 17;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4274 public static const int DOM_CSS_MM = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4275 public static const int DOM_CSS_MS = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4276 public static const int DOM_CSS_NUMBER = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4277 public static const int DOM_CSS_PC = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4278 public static const int DOM_CSS_PERCENTAGE = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4279 public static const int DOM_CSS_PRIMITIVE_VALUE = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4280 public static const int DOM_CSS_PT = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4281 public static const int DOM_CSS_PX = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4282 public static const int DOM_CSS_RAD = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4283 public static const int DOM_CSS_RECT = 24;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4284 public static const int DOM_CSS_RGBCOLOR = 25;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4285 public static const int DOM_CSS_S = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4286 public static const int DOM_CSS_STRING = 19;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4287 public static const int DOM_CSS_UNKNOWN = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4288 public static const int DOM_CSS_URI = 20;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4289 public static const int DOM_CSS_VALUE_LIST = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4290 public static const int DOM_DOCUMENT_FRAGMENT_NODE = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4291 public static const int DOM_DOCUMENT_NODE = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4292 public static const int DOM_DOCUMENT_TYPE_NODE = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4293 public static const int DOM_DOMSTRING_SIZE_ERR = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4294 public static const int DOM_ELEMENT_NODE = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4295 public static const int DOM_END_TO_END = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4296 public static const int DOM_END_TO_START = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4297 public static const int DOM_ENTITY_NODE = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4298 public static const int DOM_ENTITY_REFERENCE_NODE = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4299 public static const int DOM_FILTER_ACCEPT = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4300 public static const int DOM_FILTER_REJECT = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4301 public static const int DOM_FILTER_SKIP = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4302 public static const int DOM_FIRST_ORDERED_NODE_TYPE = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4303 public static const int DOM_FONT_FACE_RULE = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4304 public static const int DOM_HIERARCHY_REQUEST_ERR = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4305 public static const int DOM_HORIZONTAL = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4306 public static const int DOM_IMPORT_RULE = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4307 public static const int DOM_INDEX_SIZE_ERR = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4308 public static const int DOM_INUSE_ATTRIBUTE_ERR = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4309 public static const int DOM_INVALID_ACCESS_ERR = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4310 public static const int DOM_INVALID_CHARACTER_ERR = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4311 public static const int DOM_INVALID_EXPRESSION_ERR = 51;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4312 public static const int DOM_INVALID_MODIFICATION_ERR = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4313 public static const int DOM_INVALID_NODE_TYPE_ERR = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4314 public static const int DOM_INVALID_STATE_ERR = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4315 public static const int DOM_KEY_LOCATION_LEFT = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4316 public static const int DOM_KEY_LOCATION_NUMPAD = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4317 public static const int DOM_KEY_LOCATION_RIGHT = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4318 public static const int DOM_KEY_LOCATION_STANDARD = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4319 public static const int DOM_MEDIA_RULE = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4320 public static const int DOM_MODIFICATION = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4321 public static const int DOM_NAMESPACE_ERR = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4322 public static const int DOM_NODE_AFTER = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4323 public static const int DOM_NODE_BEFORE = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4324 public static const int DOM_NODE_BEFORE_AND_AFTER = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4325 public static const int DOM_NODE_INSIDE = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4326 public static const int DOM_NOTATION_NODE = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4327 public static const int DOM_NOT_FOUND_ERR = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4328 public static const int DOM_NOT_SUPPORTED_ERR = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4329 public static const int DOM_NO_DATA_ALLOWED_ERR = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4330 public static const int DOM_NO_MODIFICATION_ALLOWED_ERR = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4331 public static const int DOM_NUMBER_TYPE = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4332 public static const int DOM_ORDERED_NODE_ITERATOR_TYPE = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4333 public static const int DOM_ORDERED_NODE_SNAPSHOT_TYPE = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4334 public static const int DOM_PAGE_RULE = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4335 public static const int DOM_PROCESSING_INSTRUCTION_NODE = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4336 public static const int DOM_REMOVAL = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4337 public static const int DOM_SHOW_ALL = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4338 public static const int DOM_SHOW_ATTRIBUTE = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4339 public static const int DOM_SHOW_CDATA_SECTION = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4340 public static const int DOM_SHOW_COMMENT = 128;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4341 public static const int DOM_SHOW_DOCUMENT = 256;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4342 public static const int DOM_SHOW_DOCUMENT_FRAGMENT = 1024;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4343 public static const int DOM_SHOW_DOCUMENT_TYPE = 512;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4344 public static const int DOM_SHOW_ELEMENT = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4345 public static const int DOM_SHOW_ENTITY = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4346 public static const int DOM_SHOW_ENTITY_REFERENCE = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4347 public static const int DOM_SHOW_NOTATION = 2048;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4348 public static const int DOM_SHOW_PROCESSING_INSTRUCTION = 64;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4349 public static const int DOM_SHOW_TEXT = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4350 public static const int DOM_START_TO_END = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4351 public static const int DOM_START_TO_START = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4352 public static const int DOM_STRING_TYPE = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4353 public static const int DOM_STYLE_RULE = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4354 public static const int DOM_SYNTAX_ERR = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4355 public static const int DOM_TEXT_NODE = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4356 public static const int DOM_TYPE_ERR = 52;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4357 public static const int DOM_UNKNOWN_RULE = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4358 public static const int DOM_UNORDERED_NODE_ITERATOR_TYPE = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4359 public static const int DOM_UNORDERED_NODE_SNAPSHOT_TYPE = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4360 public static const int DOM_UNSPECIFIED_EVENT_TYPE_ERR = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4361 public static const int DOM_VERTICAL = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4362 public static const int DOM_WRONG_DOCUMENT_ERR = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4363 public static const int WebCacheModelDocumentBrowser = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4364 public static const int WebCacheModelDocumentViewer = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4365 public static const int WebCacheModelPrimaryWebBrowser = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4366 public static const int WebDragDestinationActionAny = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4367 public static const int WebDragDestinationActionDHTML = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4368 public static const int WebDragDestinationActionEdit = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4369 public static const int WebDragDestinationActionLoad = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4370 public static const int WebDragDestinationActionNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4371 public static const int WebDragSourceActionAny = -1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4372 public static const int WebDragSourceActionDHTML = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4373 public static const int WebDragSourceActionImage = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4374 public static const int WebDragSourceActionLink = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4375 public static const int WebDragSourceActionNone = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4376 public static const int WebDragSourceActionSelection = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4377 public static const int WebJNIReturnTypeBoolean = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4378 public static const int WebJNIReturnTypeByte = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4379 public static const int WebJNIReturnTypeChar = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4380 public static const int WebJNIReturnTypeDouble = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4381 public static const int WebJNIReturnTypeFloat = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4382 public static const int WebJNIReturnTypeInt = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4383 public static const int WebJNIReturnTypeInvalid = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4384 public static const int WebJNIReturnTypeLong = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4385 public static const int WebJNIReturnTypeObject = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4386 public static const int WebJNIReturnTypeShort = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4387 public static const int WebJNIReturnTypeVoid = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4388 public static const int WebKitErrorCannotFindPlugIn = 200;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4389 public static const int WebKitErrorCannotLoadPlugIn = 201;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4390 public static const int WebKitErrorCannotShowMIMEType = 100;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4391 public static const int WebKitErrorCannotShowURL = 101;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4392 public static const int WebKitErrorFrameLoadInterruptedByPolicyChange = 102;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4393 public static const int WebKitErrorJavaUnavailable = 202;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4394 public static const int WebMenuItemPDFActualSize = 24;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4395 public static const int WebMenuItemPDFAutoSize = 27;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4396 public static const int WebMenuItemPDFContinuous = 30;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4397 public static const int WebMenuItemPDFFacingPages = 29;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4398 public static const int WebMenuItemPDFNextPage = 31;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4399 public static const int WebMenuItemPDFPreviousPage = 32;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4400 public static const int WebMenuItemPDFSinglePage = 28;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4401 public static const int WebMenuItemPDFZoomIn = 25;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4402 public static const int WebMenuItemPDFZoomOut = 26;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4403 public static const int WebMenuItemTagCopy = 8;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4404 public static const int WebMenuItemTagCopyImageToClipboard = 6;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4405 public static const int WebMenuItemTagCopyLinkToClipboard = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4406 public static const int WebMenuItemTagCut = 13;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4407 public static const int WebMenuItemTagDownloadImageToDisk = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4408 public static const int WebMenuItemTagDownloadLinkToDisk = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4409 public static const int WebMenuItemTagGoBack = 9;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4410 public static const int WebMenuItemTagGoForward = 10;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4411 public static const int WebMenuItemTagIgnoreSpelling = 17;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4412 public static const int WebMenuItemTagLearnSpelling = 18;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4413 public static const int WebMenuItemTagLookUpInDictionary = 22;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4414 public static const int WebMenuItemTagNoGuessesFound = 16;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4415 public static const int WebMenuItemTagOpenFrameInNewWindow = 7;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4416 public static const int WebMenuItemTagOpenImageInNewWindow = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4417 public static const int WebMenuItemTagOpenLinkInNewWindow = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4418 public static const int WebMenuItemTagOpenWithDefaultApplication = 23;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4419 public static const int WebMenuItemTagOther = 19;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4420 public static const int WebMenuItemTagPaste = 14;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4421 public static const int WebMenuItemTagReload = 12;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4422 public static const int WebMenuItemTagSearchInSpotlight = 20;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4423 public static const int WebMenuItemTagSearchWeb = 21;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4424 public static const int WebMenuItemTagSpellingGuess = 15;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4425 public static const int WebMenuItemTagStop = 11;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4426 public static const int WebNavigationTypeBackForward = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4427 public static const int WebNavigationTypeFormResubmitted = 4;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4428 public static const int WebNavigationTypeFormSubmitted = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4429 public static const int WebNavigationTypeLinkClicked = 0;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4430 public static const int WebNavigationTypeOther = 5;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4431 public static const int WebNavigationTypeReload = 3;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4432 public static const int WebViewInsertActionDropped = 2;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4433 public static const int WebViewInsertActionPasted = 1;
cfa563df4fdd Updated Widget and Display to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
4434 public static const int WebViewInsertActionTyped = 0;
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
4435
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4436 /** Globals */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4437 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4438 alias Cocoa.NSAccessibilityButtonRole NSAccessibilityButtonRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4439 public static const NSString NSAccessibilityButtonRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4440 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4441 alias Cocoa.NSAccessibilityCheckBoxRole NSAccessibilityCheckBoxRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4442 public static const NSString NSAccessibilityCheckBoxRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4443 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4444 alias Cocoa.NSAccessibilityChildrenAttribute NSAccessibilityChildrenAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4445 public static const NSString NSAccessibilityChildrenAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4446 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4447 alias Cocoa.NSAccessibilityColumnRole NSAccessibilityColumnRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4448 public static const NSString NSAccessibilityColumnRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4449 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4450 alias Cocoa.NSAccessibilityComboBoxRole NSAccessibilityComboBoxRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4451 public static const NSString NSAccessibilityComboBoxRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4452 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4453 alias Cocoa.NSAccessibilityConfirmAction NSAccessibilityConfirmAction_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4454 public static const NSString NSAccessibilityConfirmAction;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4455 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4456 alias Cocoa.NSAccessibilityContentsAttribute NSAccessibilityContentsAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4457 public static const NSString NSAccessibilityContentsAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4458 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4459 alias Cocoa.NSAccessibilityDescriptionAttribute NSAccessibilityDescriptionAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4460 public static const NSString NSAccessibilityDescriptionAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4461 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4462 alias Cocoa.NSAccessibilityDialogSubrole NSAccessibilityDialogSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4463 public static const NSString NSAccessibilityDialogSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4464 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4465 alias Cocoa.NSAccessibilityEnabledAttribute NSAccessibilityEnabledAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4466 public static const NSString NSAccessibilityEnabledAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4467 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4468 alias Cocoa.NSAccessibilityExpandedAttribute NSAccessibilityExpandedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4469 public static const NSString NSAccessibilityExpandedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4470 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4471 alias Cocoa.NSAccessibilityFloatingWindowSubrole NSAccessibilityFloatingWindowSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4472 public static const NSString NSAccessibilityFloatingWindowSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4473 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4474 alias Cocoa.NSAccessibilityFocusedAttribute NSAccessibilityFocusedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4475 public static const NSString NSAccessibilityFocusedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4476 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4477 alias Cocoa.NSAccessibilityFocusedUIElementChangedNotification NSAccessibilityFocusedUIElementChangedNotification_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4478 public static const NSString NSAccessibilityFocusedUIElementChangedNotification;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4479 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4480 alias Cocoa.NSAccessibilityGridRole NSAccessibilityGridRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4481 public static const NSString NSAccessibilityGridRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4482 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4483 alias Cocoa.NSAccessibilityGroupRole NSAccessibilityGroupRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4484 public static const NSString NSAccessibilityGroupRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4485 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4486 alias Cocoa.NSAccessibilityHelpAttribute NSAccessibilityHelpAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4487 public static const NSString NSAccessibilityHelpAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4488 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4489 alias Cocoa.NSAccessibilityHelpTagRole NSAccessibilityHelpTagRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4490 public static const NSString NSAccessibilityHelpTagRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4491 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4492 alias Cocoa.NSAccessibilityHorizontalOrientationValue NSAccessibilityHorizontalOrientationValue_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4493 public static const NSString NSAccessibilityHorizontalOrientationValue;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4494 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4495 alias Cocoa.NSAccessibilityHorizontalScrollBarAttribute NSAccessibilityHorizontalScrollBarAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4496 public static const NSString NSAccessibilityHorizontalScrollBarAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4497 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4498 alias Cocoa.NSAccessibilityImageRole NSAccessibilityImageRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4499 public static const NSString NSAccessibilityImageRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4500 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4501 alias Cocoa.NSAccessibilityIncrementorRole NSAccessibilityIncrementorRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4502 public static const NSString NSAccessibilityIncrementorRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4503 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4504 alias Cocoa.NSAccessibilityInsertionPointLineNumberAttribute NSAccessibilityInsertionPointLineNumberAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4505 public static const NSString NSAccessibilityInsertionPointLineNumberAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4506 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4507 alias Cocoa.NSAccessibilityLabelValueAttribute NSAccessibilityLabelValueAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4508 public static const NSString NSAccessibilityLabelValueAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4509 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4510 alias Cocoa.NSAccessibilityLineForIndexParameterizedAttribute NSAccessibilityLineForIndexParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4511 public static const NSString NSAccessibilityLineForIndexParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4512 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4513 alias Cocoa.NSAccessibilityLinkRole NSAccessibilityLinkRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4514 public static const NSString NSAccessibilityLinkRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4515 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4516 alias Cocoa.NSAccessibilityLinkTextAttribute NSAccessibilityLinkTextAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4517 public static const NSString NSAccessibilityLinkTextAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4518 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4519 alias Cocoa.NSAccessibilityListRole NSAccessibilityListRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4520 public static const NSString NSAccessibilityListRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4521 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4522 alias Cocoa.NSAccessibilityMaxValueAttribute NSAccessibilityMaxValueAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4523 public static const NSString NSAccessibilityMaxValueAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4524 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4525 alias Cocoa.NSAccessibilityMenuBarRole NSAccessibilityMenuBarRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4526 public static const NSString NSAccessibilityMenuBarRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4527 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4528 alias Cocoa.NSAccessibilityMenuButtonRole NSAccessibilityMenuButtonRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4529 public static const NSString NSAccessibilityMenuButtonRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4530 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4531 alias Cocoa.NSAccessibilityMenuItemRole NSAccessibilityMenuItemRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4532 public static const NSString NSAccessibilityMenuItemRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4533 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4534 alias Cocoa.NSAccessibilityMenuRole NSAccessibilityMenuRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4535 public static const NSString NSAccessibilityMenuRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4536 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4537 alias Cocoa.NSAccessibilityMinValueAttribute NSAccessibilityMinValueAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4538 public static const NSString NSAccessibilityMinValueAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4539 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4540 alias Cocoa.NSAccessibilityNextContentsAttribute NSAccessibilityNextContentsAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4541 public static const NSString NSAccessibilityNextContentsAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4542 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4543 alias Cocoa.NSAccessibilityNumberOfCharactersAttribute NSAccessibilityNumberOfCharactersAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4544 public static const NSString NSAccessibilityNumberOfCharactersAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4545 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4546 alias Cocoa.NSAccessibilityOrientationAttribute NSAccessibilityOrientationAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4547 public static const NSString NSAccessibilityOrientationAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4548 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4549 alias Cocoa.NSAccessibilityOutlineRole NSAccessibilityOutlineRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4550 public static const NSString NSAccessibilityOutlineRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4551 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4552 alias Cocoa.NSAccessibilityOutlineRowSubrole NSAccessibilityOutlineRowSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4553 public static const NSString NSAccessibilityOutlineRowSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4554 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4555 alias Cocoa.NSAccessibilityParentAttribute NSAccessibilityParentAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4556 public static const NSString NSAccessibilityParentAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4557 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4558 alias Cocoa.NSAccessibilityPopUpButtonRole NSAccessibilityPopUpButtonRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4559 public static const NSString NSAccessibilityPopUpButtonRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4560 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4561 alias Cocoa.NSAccessibilityPositionAttribute NSAccessibilityPositionAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4562 public static const NSString NSAccessibilityPositionAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4563 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4564 alias Cocoa.NSAccessibilityPressAction NSAccessibilityPressAction_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4565 public static const NSString NSAccessibilityPressAction;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4566 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4567 alias Cocoa.NSAccessibilityPreviousContentsAttribute NSAccessibilityPreviousContentsAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4568 public static const NSString NSAccessibilityPreviousContentsAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4569 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4570 alias Cocoa.NSAccessibilityProgressIndicatorRole NSAccessibilityProgressIndicatorRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4571 public static const NSString NSAccessibilityProgressIndicatorRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4572 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4573 alias Cocoa.NSAccessibilityRTFForRangeParameterizedAttribute NSAccessibilityRTFForRangeParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4574 public static const NSString NSAccessibilityRTFForRangeParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4575 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4576 alias Cocoa.NSAccessibilityRadioButtonRole NSAccessibilityRadioButtonRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4577 public static const NSString NSAccessibilityRadioButtonRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4578 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4579 alias Cocoa.NSAccessibilityRadioGroupRole NSAccessibilityRadioGroupRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4580 public static const NSString NSAccessibilityRadioGroupRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4581 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4582 alias Cocoa.NSAccessibilityRangeForIndexParameterizedAttribute NSAccessibilityRangeForIndexParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4583 public static const NSString NSAccessibilityRangeForIndexParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4584 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4585 alias Cocoa.NSAccessibilityRangeForLineParameterizedAttribute NSAccessibilityRangeForLineParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4586 public static const NSString NSAccessibilityRangeForLineParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4587 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4588 alias Cocoa.NSAccessibilityRangeForPositionParameterizedAttribute NSAccessibilityRangeForPositionParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4589 public static const NSString NSAccessibilityRangeForPositionParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4590 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4591 alias Cocoa.NSAccessibilityRoleAttribute NSAccessibilityRoleAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4592 public static const NSString NSAccessibilityRoleAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4593 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4594 alias Cocoa.NSAccessibilityRoleDescriptionAttribute NSAccessibilityRoleDescriptionAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4595 public static const NSString NSAccessibilityRoleDescriptionAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4596 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4597 alias Cocoa.NSAccessibilityRowRole NSAccessibilityRowRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4598 public static const NSString NSAccessibilityRowRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4599 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4600 alias Cocoa.NSAccessibilityScrollAreaRole NSAccessibilityScrollAreaRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4601 public static const NSString NSAccessibilityScrollAreaRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4602 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4603 alias Cocoa.NSAccessibilityScrollBarRole NSAccessibilityScrollBarRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4604 public static const NSString NSAccessibilityScrollBarRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4605 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4606 alias Cocoa.NSAccessibilitySelectedAttribute NSAccessibilitySelectedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4607 public static const NSString NSAccessibilitySelectedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4608 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4609 alias Cocoa.NSAccessibilitySelectedChildrenAttribute NSAccessibilitySelectedChildrenAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4610 public static const NSString NSAccessibilitySelectedChildrenAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4611 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4612 alias Cocoa.NSAccessibilitySelectedChildrenChangedNotification NSAccessibilitySelectedChildrenChangedNotification_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4613 public static const NSString NSAccessibilitySelectedChildrenChangedNotification;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4614 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4615 alias Cocoa.NSAccessibilitySelectedTextAttribute NSAccessibilitySelectedTextAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4616 public static const NSString NSAccessibilitySelectedTextAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4617 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4618 alias Cocoa.NSAccessibilitySelectedTextChangedNotification NSAccessibilitySelectedTextChangedNotification_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4619 public static const NSString NSAccessibilitySelectedTextChangedNotification;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4620 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4621 alias Cocoa.NSAccessibilitySelectedTextRangeAttribute NSAccessibilitySelectedTextRangeAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4622 public static const NSString NSAccessibilitySelectedTextRangeAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4623 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4624 alias Cocoa.NSAccessibilitySelectedTextRangesAttribute NSAccessibilitySelectedTextRangesAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4625 public static const NSString NSAccessibilitySelectedTextRangesAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4626 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4627 alias Cocoa.NSAccessibilitySizeAttribute NSAccessibilitySizeAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4628 public static const NSString NSAccessibilitySizeAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4629 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4630 alias Cocoa.NSAccessibilitySliderRole NSAccessibilitySliderRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4631 public static const NSString NSAccessibilitySliderRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4632 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4633 alias Cocoa.NSAccessibilitySortButtonRole NSAccessibilitySortButtonRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4634 public static const NSString NSAccessibilitySortButtonRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4635 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4636 alias Cocoa.NSAccessibilitySplitterRole NSAccessibilitySplitterRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4637 public static const NSString NSAccessibilitySplitterRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4638 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4639 alias Cocoa.NSAccessibilityStandardWindowSubrole NSAccessibilityStandardWindowSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4640 public static const NSString NSAccessibilityStandardWindowSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4641 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4642 alias Cocoa.NSAccessibilityStaticTextRole NSAccessibilityStaticTextRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4643 public static const NSString NSAccessibilityStaticTextRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4644 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4645 alias Cocoa.NSAccessibilityStringForRangeParameterizedAttribute NSAccessibilityStringForRangeParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4646 public static const NSString NSAccessibilityStringForRangeParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4647 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4648 alias Cocoa.NSAccessibilityStyleRangeForIndexParameterizedAttribute NSAccessibilityStyleRangeForIndexParameterizedAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4649 public static const NSString NSAccessibilityStyleRangeForIndexParameterizedAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4650 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4651 alias Cocoa.NSAccessibilitySubroleAttribute NSAccessibilitySubroleAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4652 public static const NSString NSAccessibilitySubroleAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4653 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4654 alias Cocoa.NSAccessibilitySystemDialogSubrole NSAccessibilitySystemDialogSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4655 public static const NSString NSAccessibilitySystemDialogSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4656 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4657 alias Cocoa.NSAccessibilityTabGroupRole NSAccessibilityTabGroupRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4658 public static const NSString NSAccessibilityTabGroupRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4659 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4660 alias Cocoa.NSAccessibilityTableRole NSAccessibilityTableRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4661 public static const NSString NSAccessibilityTableRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4662 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4663 alias Cocoa.NSAccessibilityTableRowSubrole NSAccessibilityTableRowSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4664 public static const NSString NSAccessibilityTableRowSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4665 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4666 alias Cocoa.NSAccessibilityTabsAttribute NSAccessibilityTabsAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4667 public static const NSString NSAccessibilityTabsAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4668 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4669 alias Cocoa.NSAccessibilityTextAreaRole NSAccessibilityTextAreaRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4670 public static const NSString NSAccessibilityTextAreaRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4671 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4672 alias Cocoa.NSAccessibilityTextFieldRole NSAccessibilityTextFieldRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4673 public static const NSString NSAccessibilityTextFieldRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4674 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4675 alias Cocoa.NSAccessibilityTextLinkSubrole NSAccessibilityTextLinkSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4676 public static const NSString NSAccessibilityTextLinkSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4677 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4678 alias Cocoa.NSAccessibilityTitleAttribute NSAccessibilityTitleAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4679 public static const NSString NSAccessibilityTitleAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4680 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4681 alias Cocoa.NSAccessibilityTitleUIElementAttribute NSAccessibilityTitleUIElementAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4682 public static const NSString NSAccessibilityTitleUIElementAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4683 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4684 alias Cocoa.NSAccessibilityToolbarRole NSAccessibilityToolbarRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4685 public static const NSString NSAccessibilityToolbarRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4686 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4687 alias Cocoa.NSAccessibilityTopLevelUIElementAttribute NSAccessibilityTopLevelUIElementAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4688 public static const NSString NSAccessibilityTopLevelUIElementAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4689 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4690 alias Cocoa.NSAccessibilityUnknownRole NSAccessibilityUnknownRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4691 public static const NSString NSAccessibilityUnknownRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4692 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4693 alias Cocoa.NSAccessibilityUnknownSubrole NSAccessibilityUnknownSubrole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4694 public static const NSString NSAccessibilityUnknownSubrole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4695 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4696 alias Cocoa.NSAccessibilityValueAttribute NSAccessibilityValueAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4697 public static const NSString NSAccessibilityValueAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4698 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4699 alias Cocoa.NSAccessibilityValueChangedNotification NSAccessibilityValueChangedNotification_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4700 public static const NSString NSAccessibilityValueChangedNotification;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4701 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4702 alias Cocoa.NSAccessibilityValueDescriptionAttribute NSAccessibilityValueDescriptionAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4703 public static const NSString NSAccessibilityValueDescriptionAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4704 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4705 alias Cocoa.NSAccessibilityValueIndicatorRole NSAccessibilityValueIndicatorRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4706 public static const NSString NSAccessibilityValueIndicatorRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4707 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4708 alias Cocoa.NSAccessibilityVerticalOrientationValue NSAccessibilityVerticalOrientationValue_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4709 public static const NSString NSAccessibilityVerticalOrientationValue;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4710 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4711 alias Cocoa.NSAccessibilityVerticalScrollBarAttribute NSAccessibilityVerticalScrollBarAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4712 public static const NSString NSAccessibilityVerticalScrollBarAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4713 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4714 alias Cocoa.NSAccessibilityVisibleCharacterRangeAttribute NSAccessibilityVisibleCharacterRangeAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4715 public static const NSString NSAccessibilityVisibleCharacterRangeAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4716 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4717 alias Cocoa.NSAccessibilityVisibleChildrenAttribute NSAccessibilityVisibleChildrenAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4718 public static const NSString NSAccessibilityVisibleChildrenAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4719 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4720 alias Cocoa.NSAccessibilityWindowAttribute NSAccessibilityWindowAttribute_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4721 public static const NSString NSAccessibilityWindowAttribute;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4722 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4723 alias Cocoa.NSAccessibilityWindowRole NSAccessibilityWindowRole_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4724 public static const NSString NSAccessibilityWindowRole;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4725 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4726 alias Cocoa.NSBackgroundColorAttributeName NSBackgroundColorAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4727 public static const NSString NSBackgroundColorAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4728 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4729 alias Cocoa.NSBaselineOffsetAttributeName NSBaselineOffsetAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4730 public static const NSString NSBaselineOffsetAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4731 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4732 alias Cocoa.NSCalibratedRGBColorSpace NSCalibratedRGBColorSpace_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4733 public static const NSString NSCalibratedRGBColorSpace;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4734 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4735 alias Cocoa.NSDeviceRGBColorSpace NSDeviceRGBColorSpace_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4736 public static const NSString NSDeviceRGBColorSpace;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4737 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4738 alias Cocoa.NSDeviceResolution NSDeviceResolution_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4739 public static const NSString NSDeviceResolution;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4740 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4741 alias Cocoa.NSDragPboard NSDragPboard_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4742 public static const NSString NSDragPboard;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4743 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4744 alias Cocoa.NSFilenamesPboardType NSFilenamesPboardType_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4745 public static const NSString NSFilenamesPboardType;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4746 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4747 alias Cocoa.NSFontAttributeName NSFontAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4748 public static const NSString NSFontAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4749 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4750 alias Cocoa.NSForegroundColorAttributeName NSForegroundColorAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4751 public static const NSString NSForegroundColorAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4752 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4753 alias Cocoa.NSHTMLPboardType NSHTMLPboardType_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4754 public static const NSString NSHTMLPboardType;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4755 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4756 alias Cocoa.NSLinkAttributeName NSLinkAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4757 public static const NSString NSLinkAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4758 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4759 alias Cocoa.NSParagraphStyleAttributeName NSParagraphStyleAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4760 public static const NSString NSParagraphStyleAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4761 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4762 alias Cocoa.NSPrintAllPages NSPrintAllPages_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4763 public static const NSString NSPrintAllPages;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4764 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4765 alias Cocoa.NSPrintCopies NSPrintCopies_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4766 public static const NSString NSPrintCopies;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4767 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4768 alias Cocoa.NSPrintFirstPage NSPrintFirstPage_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4769 public static const NSString NSPrintFirstPage;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4770 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4771 alias Cocoa.NSPrintJobDisposition NSPrintJobDisposition_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4772 public static const NSString NSPrintJobDisposition;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4773 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4774 alias Cocoa.NSPrintLastPage NSPrintLastPage_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4775 public static const NSString NSPrintLastPage;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4776 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4777 alias Cocoa.NSPrintMustCollate NSPrintMustCollate_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4778 public static const NSString NSPrintMustCollate;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4779 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4780 alias Cocoa.NSPrintPreviewJob NSPrintPreviewJob_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4781 public static const NSString NSPrintPreviewJob;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4782 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4783 alias Cocoa.NSPrintSaveJob NSPrintSaveJob_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4784 public static const NSString NSPrintSaveJob;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4785 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4786 alias Cocoa.NSPrintSavePath NSPrintSavePath_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4787 public static const NSString NSPrintSavePath;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4788 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4789 alias Cocoa.NSPrintSpoolJob NSPrintSpoolJob_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4790 public static const NSString NSPrintSpoolJob;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4791 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4792 alias Cocoa.NSRTFPboardType NSRTFPboardType_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4793 public static const NSString NSRTFPboardType;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4794 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4795 alias Cocoa.NSStrikethroughColorAttributeName NSStrikethroughColorAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4796 public static const NSString NSStrikethroughColorAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4797 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4798 alias Cocoa.NSStrikethroughStyleAttributeName NSStrikethroughStyleAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4799 public static const NSString NSStrikethroughStyleAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4800 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4801 alias Cocoa.NSStringPboardType NSStringPboardType_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4802 public static const NSString NSStringPboardType;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4803 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4804 alias Cocoa.NSTIFFPboardType NSTIFFPboardType_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4805 public static const NSString NSTIFFPboardType;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4806 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4807 alias Cocoa.NSURLPboardType NSURLPboardType_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4808 public static const NSString NSURLPboardType;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4809 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4810 alias Cocoa.NSUnderlineColorAttributeName NSUnderlineColorAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4811 public static const NSString NSUnderlineColorAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4812 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4813 alias Cocoa.NSUnderlineStyleAttributeName NSUnderlineStyleAttributeName_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4814 public static const NSString NSUnderlineStyleAttributeName;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4815 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4816 alias Cocoa.NSDefaultRunLoopMode NSDefaultRunLoopMode_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4817 public static const NSString NSDefaultRunLoopMode;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4818 /** @method flags=const */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4819 alias Cocoa.NSErrorFailingURLStringKey NSErrorFailingURLStringKey_;
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 57
diff changeset
4820 public static const NSString NSErrorFailingURLStringKey;
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4821 /** Functions */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4822
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4823 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4824 * @param action cast=(NSString*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4825 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4826 alias Cocoa.NSAccessibilityActionDescription NSAccessibilityActionDescription;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4827 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4828 * @param element cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4829 * @param notification cast=(NSString*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4830 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4831 alias Cocoa.NSAccessibilityPostNotification NSAccessibilityPostNotification;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4832 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4833 * @param element cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4834 * @param attribute cast=(NSString*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4835 * @param value cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4836 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4837 alias Cocoa.NSAccessibilityRaiseBadArgumentException NSAccessibilityRaiseBadArgumentException;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4838 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4839 * @param role cast=(NSString*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4840 * @param subrole cast=(NSString*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4841 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4842 alias Cocoa.NSAccessibilityRoleDescription NSAccessibilityRoleDescription;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4843 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4844 * @param element cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4845 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4846 alias Cocoa.NSAccessibilityRoleDescriptionForUIElement NSAccessibilityRoleDescriptionForUIElement;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4847 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4848 * @param element cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4849 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4850 alias Cocoa.NSAccessibilityUnignoredAncestor NSAccessibilityUnignoredAncestor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4851 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4852 * @param originalChildren cast=(NSArray*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4853 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4854 alias Cocoa.NSAccessibilityUnignoredChildren NSAccessibilityUnignoredChildren;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4855 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4856 * @param originalChild cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4857 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4858 alias Cocoa.NSAccessibilityUnignoredChildrenForOnlyChild NSAccessibilityUnignoredChildrenForOnlyChild;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4859 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4860 * @param element cast=(id)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4861 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4862 alias Cocoa.NSAccessibilityUnignoredDescendant NSAccessibilityUnignoredDescendant;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4863 alias Cocoa.NSBeep NSBeep;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4864 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4865 * @param depth cast=(NSWindowDepth)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4866 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4867 alias Cocoa.NSBitsPerPixelFromDepth NSBitsPerPixelFromDepth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4868 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4869 * @param cf cast=(CFTypeRef)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4870 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4871 alias Carbon.CFRelease CFRelease;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4872 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4873 * @param allocator cast=(CFAllocatorRef)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4874 * @param originalString cast=(CFStringRef)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4875 * @param charactersToLeaveUnescaped cast=(CFStringRef)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4876 * @param legalURLCharactersToBeEscaped cast=(CFStringRef)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4877 * @param encoding cast=(CFStringEncoding)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4878 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4879 alias Carbon.CFURLCreateStringByAddingPercentEscapes CFURLCreateStringByAddingPercentEscapes;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4880 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4881 * @param newCursorPosition flags=struct */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4882 alias Carbon.CGWarpMouseCursorPosition CGWarpMouseCursorPosition;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4883 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4884 * @param hfsFileTypeCode cast=(OSType)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4885 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4886 alias Cocoa.NSFileTypeForHFSTypeCode NSFileTypeForHFSTypeCode;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4887 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4888 * @param typePtr cast=(char*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4889 * @param sizep cast=(NSUInteger*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4890 * @param alignp cast=(NSUInteger*)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4891 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4892 alias Cocoa.NSGetSizeAndAlignment NSGetSizeAndAlignment;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4893 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4894 * @param directory cast=(NSSearchPathDirectory)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4895 * @param domainMask cast=(NSSearchPathDomainMask)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4896 * @param expandTilde cast=(BOOL)
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4897 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4898 alias Cocoa.NSSearchPathForDirectoriesInDomains NSSearchPathForDirectoriesInDomains;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4899 alias Cocoa.NSTemporaryDirectory NSTemporaryDirectory;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4900
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4901 /** Sends */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4902
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4903 /** @method flags=cast */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4904 alias objc.objc_msgSend_bool objc_msgSend_bool;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4905 /** @method flags=cast */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4906 alias objc.objc_msgSend_fpret objc_msgSend_fpret;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4907 /** @method flags=cast */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4908 alias objc.objc_msgSend objc_msgSend;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4909 /** @method flags=cast */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4910 alias objc.objc_msgSend_stret objc_msgSend_stret;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4911
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4912 /** Sizeof natives */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4913
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4914
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4915 /** Memmove natives */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4916
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4917 /**
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4918 * @param dest cast=(void *),flags=no_in critical
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4919 * @param src cast=(void *),flags=critical
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4920 */
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4921 alias stdc.memmove memmove;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4922
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 38
diff changeset
4923 /** This section is auto generated */
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
4924 }