annotate dwt/internal/objc/cocoa/Cocoa.d @ 121:e1c48e37e0f5

Ported dwt.program.Program
author Jacob Carlborg <doob@me.com>
date Wed, 31 Dec 2008 16:50:37 +0100
parents 580596d83ac4
children 2e671fa40eec
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 /**
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
2 * Copyright: Copyright (c) 2008 Jacob Carlborg. All rights reserved.
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
3 * Authors: Jacob Carlborg
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
4 * Version: Initial created: Nov 18, 2008
0
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
5 * License: $(LINK2 http://opensource.org/licenses/bsd-license.php, BSD Style)
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
6 *
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 module dwt.internal.objc.cocoa.Cocoa;
380af2bdd8e5 Upload of whole dwt tree
Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
parents:
diff changeset
9
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
10 import tango.stdc.config;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
11 import bindings = dwt.internal.objc.cocoa.bindings;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
12 import dwt.internal.objc.runtime;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
13
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
14 extern (C)
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
15 {
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
16 // *.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
17 extern
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
18 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
19 id NSAccessibilityButtonRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
20 id NSAccessibilityCheckBoxRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
21 id NSAccessibilityChildrenAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
22 id NSAccessibilityColumnRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
23 id NSAccessibilityComboBoxRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
24 id NSAccessibilityConfirmAction;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
25 id NSAccessibilityContentsAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
26 id NSAccessibilityDescriptionAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
27 id NSAccessibilityDialogSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
28 id NSAccessibilityEnabledAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
29 id NSAccessibilityExpandedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
30 id NSAccessibilityFloatingWindowSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
31 id NSAccessibilityFocusedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
32 id NSAccessibilityFocusedUIElementChangedNotification;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
33 id NSAccessibilityGridRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
34 id NSAccessibilityGroupRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
35 id NSAccessibilityHelpAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
36 id NSAccessibilityHelpTagRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
37 id NSAccessibilityHorizontalOrientationValue;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
38 id NSAccessibilityHorizontalScrollBarAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
39 id NSAccessibilityImageRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
40 id NSAccessibilityIncrementorRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
41 id NSAccessibilityInsertionPointLineNumberAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
42 id NSAccessibilityLabelValueAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
43 id NSAccessibilityLineForIndexParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
44 id NSAccessibilityLinkRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
45 id NSAccessibilityLinkTextAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
46 id NSAccessibilityListRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
47 id NSAccessibilityMaxValueAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
48 id NSAccessibilityMenuBarRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
49 id NSAccessibilityMenuButtonRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
50 id NSAccessibilityMenuItemRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
51 id NSAccessibilityMenuRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
52 id NSAccessibilityMinValueAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
53 id NSAccessibilityNextContentsAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
54 id NSAccessibilityNumberOfCharactersAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
55 id NSAccessibilityOrientationAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
56 id NSAccessibilityOutlineRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
57 id NSAccessibilityOutlineRowSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
58 id NSAccessibilityParentAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
59 id NSAccessibilityPopUpButtonRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
60 id NSAccessibilityPositionAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
61 id NSAccessibilityPressAction;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
62 id NSAccessibilityPreviousContentsAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
63 id NSAccessibilityProgressIndicatorRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
64 id NSAccessibilityRTFForRangeParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
65 id NSAccessibilityRadioButtonRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
66 id NSAccessibilityRadioGroupRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
67 id NSAccessibilityRangeForIndexParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
68 id NSAccessibilityRangeForLineParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
69 id NSAccessibilityRangeForPositionParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
70 id NSAccessibilityRoleAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
71 id NSAccessibilityRoleDescriptionAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
72 id NSAccessibilityRowRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
73 id NSAccessibilityScrollAreaRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
74 id NSAccessibilityScrollBarRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
75 id NSAccessibilitySelectedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
76 id NSAccessibilitySelectedChildrenAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
77 id NSAccessibilitySelectedChildrenChangedNotification;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
78 id NSAccessibilitySelectedTextAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
79 id NSAccessibilitySelectedTextChangedNotification;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
80 id NSAccessibilitySelectedTextRangeAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
81 id NSAccessibilitySelectedTextRangesAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
82 id NSAccessibilitySizeAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
83 id NSAccessibilitySliderRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
84 id NSAccessibilitySortButtonRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
85 id NSAccessibilitySplitterRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
86 id NSAccessibilityStandardWindowSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
87 id NSAccessibilityStaticTextRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
88 id NSAccessibilityStringForRangeParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
89 id NSAccessibilityStyleRangeForIndexParameterizedAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
90 id NSAccessibilitySubroleAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
91 id NSAccessibilitySystemDialogSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
92 id NSAccessibilityTabGroupRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
93 id NSAccessibilityTableRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
94 id NSAccessibilityTableRowSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
95 id NSAccessibilityTabsAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
96 id NSAccessibilityTextAreaRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
97 id NSAccessibilityTextFieldRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
98 id NSAccessibilityTextLinkSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
99 id NSAccessibilityTitleAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
100 id NSAccessibilityTitleUIElementAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
101 id NSAccessibilityToolbarRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
102 id NSAccessibilityTopLevelUIElementAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
103 id NSAccessibilityUnknownRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
104 id NSAccessibilityUnknownSubrole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
105 id NSAccessibilityValueAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
106 id NSAccessibilityValueChangedNotification;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
107 id NSAccessibilityValueDescriptionAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
108 id NSAccessibilityValueIndicatorRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
109 id NSAccessibilityVerticalOrientationValue;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
110 id NSAccessibilityVerticalScrollBarAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
111 id NSAccessibilityVisibleCharacterRangeAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
112 id NSAccessibilityVisibleChildrenAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
113 id NSAccessibilityWindowAttribute;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
114 id NSAccessibilityWindowRole;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
115 id NSBackgroundColorAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
116 id NSBaselineOffsetAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
117 id NSCalibratedRGBColorSpace;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
118 id NSDeviceRGBColorSpace;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
119 id NSDeviceResolution;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
120 id NSDragPboard;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
121 id NSFilenamesPboardType;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
122 id NSFontAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
123 id NSForegroundColorAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
124 id NSHTMLPboardType;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
125 id NSLinkAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
126 id NSParagraphStyleAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
127 id NSPrintAllPages;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
128 id NSPrintCopies;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
129 id NSPrintFirstPage;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
130 id NSPrintJobDisposition;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
131 id NSPrintLastPage;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
132 id NSPrintMustCollate;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
133 id NSPrintPreviewJob;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
134 id NSPrintSaveJob;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
135 id NSPrintSavePath;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
136 id NSPrintSpoolJob;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
137 id NSRTFPboardType;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
138 id NSStrikethroughColorAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
139 id NSStrikethroughStyleAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
140 id NSStringPboardType;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
141 id NSTIFFPboardType;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
142 id NSURLPboardType;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
143 id NSUnderlineColorAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
144 id NSUnderlineStyleAttributeName;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
145 id NSDefaultRunLoopMode;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
146 id NSErrorFailingURLStringKey;
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
147 }
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
148 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
149
121
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
150 enum NSSearchPathDirectory
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
151 {
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
152 NSApplicationDirectory = 1,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
153 NSDemoApplicationDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
154 NSDeveloperApplicationDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
155 NSAdminApplicationDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
156 NSLibraryDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
157 NSDeveloperDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
158 NSUserDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
159 NSDocumentationDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
160 NSDocumentDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
161 NSCoreServiceDirectory,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
162 NSDesktopDirectory = 12,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
163 NSCachesDirectory = 13,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
164 NSApplicationSupportDirectory = 14,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
165 NSDownloadsDirectory = 15,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
166 NSAllApplicationsDirectory = 100,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
167 NSAllLibrariesDirectory = 101
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
168 }
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
169
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
170 enum NSSearchPathDomainMask
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
171 {
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
172 NSUserDomainMask = 1,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
173 NSLocalDomainMask = 2,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
174 NSNetworkDomainMask = 4,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
175 NSSystemDomainMask = 8,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
176 NSAllDomainsMask = 0x0ffff,
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
177 }
e1c48e37e0f5 Ported dwt.program.Program
Jacob Carlborg <doob@me.com>
parents: 116
diff changeset
178
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
179
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
180
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
181
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
182 //NSAccessibility.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
183 alias bindings.NSAccessibilityActionDescription NSAccessibilityActionDescription;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
184 alias bindings.NSAccessibilityPostNotification NSAccessibilityPostNotification;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
185 alias bindings.NSAccessibilityRaiseBadArgumentException NSAccessibilityRaiseBadArgumentException;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
186 alias bindings.NSAccessibilityRoleDescription NSAccessibilityRoleDescription;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
187 alias bindings.NSAccessibilityRoleDescriptionForUIElement NSAccessibilityRoleDescriptionForUIElement;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
188 alias bindings.NSAccessibilityUnignoredAncestor NSAccessibilityUnignoredAncestor;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
189 alias bindings.NSAccessibilityUnignoredChildren NSAccessibilityUnignoredChildren;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
190 alias bindings.NSAccessibilityUnignoredChildrenForOnlyChild NSAccessibilityUnignoredChildrenForOnlyChild;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
191 alias bindings.NSAccessibilityUnignoredDescendant NSAccessibilityUnignoredDescendant;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
192
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
193
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
194
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
195 // NSAlert.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
196 enum NSAlertStyle : NSUInteger
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
197 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
198 NSWarningAlertStyle = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
199 NSInformationalAlertStyle = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
200 NSCriticalAlertStyle = 2
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
201 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
202
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
203
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
204
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
205 // NSApplication.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
206 enum NSApplicationTerminateReply
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
207 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
208 NSTerminateCancel = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
209 NSTerminateNow = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
210 NSTerminateLater = 2
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
211 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
212
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
213
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
214
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
215 // NSBezierPath.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
216 enum NSBezierPathElement
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
217 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
218 NSMoveToBezierPathElement,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
219 NSLineToBezierPathElement,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
220 NSCurveToBezierPathElement,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
221 NSClosePathBezierPathElement
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
222 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
223
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
224 enum NSLineCapStyle
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
225 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
226 NSButtLineCapStyle = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
227 NSRoundLineCapStyle = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
228 NSSquareLineCapStyle = 2
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
229 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
230
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
231 enum NSLineJoinStyle
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
232 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
233 NSMiterLineJoinStyle = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
234 NSRoundLineJoinStyle = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
235 NSBevelLineJoinStyle = 2
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
236 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
237
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
238 enum NSWindingRule
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
239 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
240 NSNonZeroWindingRule = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
241 NSEvenOddWindingRule = 1
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
242 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
243
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
244
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
245
90
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
246 // NSBox.h
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
247 enum NSTitlePosition
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
248 {
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
249 NSNoTitle = 0,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
250 NSAboveTop = 1,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
251 NSAtTop = 2,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
252 NSBelowTop = 3,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
253 NSAboveBottom = 4,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
254 NSAtBottom = 5,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
255 NSBelowBottom = 6
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
256 }
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
257
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
258
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
259
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
260 // NSButtonCell.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
261 enum NSBezelStyle : NSUInteger {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
262 NSRoundedBezelStyle = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
263 NSRegularSquareBezelStyle = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
264 NSThickSquareBezelStyle = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
265 NSThickerSquareBezelStyle = 4,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
266 NSDisclosureBezelStyle = 5,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
267 NSShadowlessSquareBezelStyle = 6,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
268 NSCircularBezelStyle = 7,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
269 NSTexturedSquareBezelStyle = 8,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
270 NSHelpButtonBezelStyle = 9,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
271 NSSmallSquareBezelStyle = 10,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
272 NSTexturedRoundedBezelStyle = 11,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
273 NSRoundRectBezelStyle = 12,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
274 NSRecessedBezelStyle = 13,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
275 NSRoundedDisclosureBezelStyle = 14,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
276 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
277
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
278 enum NSButtonType : NSUInteger {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
279 NSMomentaryLightButton = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
280 NSPushOnPushOffButton = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
281 NSToggleButton = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
282 NSSwitchButton = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
283 NSRadioButton = 4,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
284 NSMomentaryChangeButton = 5,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
285 NSOnOffButton = 6,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
286 NSMomentaryPushInButton = 7,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
287 NSMomentaryPushButton = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
288 NSMomentaryLight = 7
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
289 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
290
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
291
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
292
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
293 // NSCell.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
294 enum NSControlSize : NSUInteger
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
295 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
296 NSRegularControlSize,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
297 NSSmallControlSize,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
298 NSMiniControlSize
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
299 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
300
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
301 enum NSImageScaling : NSUInteger
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
302 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
303 NSImageScaleProportionallyDown = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
304 NSImageScaleAxesIndependently,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
305 NSImageScaleNone,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
306 NSImageScaleProportionallyUpOrDown
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
307 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
308
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
309 enum NSCellImagePosition : NSUInteger
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
310 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
311 NSNoImage = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
312 NSImageOnly = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
313 NSImageLeft = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
314 NSImageRight = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
315 NSImageBelow = 4,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
316 NSImageAbove = 5,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
317 NSImageOverlaps = 6
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
318 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
319
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
320
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
321
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
322 // NSDragging.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
323 enum NSDragOperation : uint
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
324 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
325 NSDragOperationNone = 0,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
326 NSDragOperationCopy = 1,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
327 NSDragOperationLink = 2,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
328 NSDragOperationGeneric = 4,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
329 NSDragOperationPrivate = 8,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
330 NSDragOperationAll_Obsolete = 15,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
331 NSDragOperationMove = 16,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
332 NSDragOperationDelete = 32,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
333 NSDragOperationEvery = uint.max // UINT_MAX
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
334 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
335
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
336
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
337
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
338 // NSEvent.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
339 enum NSEventType
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
340 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
341 NSLeftMouseDown = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
342 NSLeftMouseUp = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
343 NSRightMouseDown = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
344 NSRightMouseUp = 4,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
345 NSMouseMoved = 5,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
346 NSLeftMouseDragged = 6,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
347 NSRightMouseDragged = 7,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
348 NSMouseEntered = 8,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
349 NSMouseExited = 9,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
350 NSKeyDown = 10,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
351 NSKeyUp = 11,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
352 NSFlagsChanged = 12,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
353 NSAppKitDefined = 13,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
354 NSSystemDefined = 14,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
355 NSApplicationDefined = 15,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
356 NSPeriodic = 16,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
357 NSCursorUpdate = 17,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
358 NSScrollWheel = 22,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
359 NSTabletPoint = 23,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
360 NSTabletProximity = 24,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
361 NSOtherMouseDown = 25,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
362 NSOtherMouseUp = 26,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
363 NSOtherMouseDragged = 27
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
364 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
365
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
366
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
367
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
368 // NSGraphics.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
369 alias int NSWindowDepth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
370
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
371 alias bindings.NSBeep NSBeep;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
372 alias bindings.NSBitsPerPixelFromDepth NSBitsPerPixelFromDepth;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
373
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
374 enum NSCompositingOperation
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
375 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
376 NSCompositeClear = 0,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
377 NSCompositeCopy = 1,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
378 NSCompositeSourceOver = 2,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
379 NSCompositeSourceIn = 3,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
380 NSCompositeSourceOut = 4,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
381 NSCompositeSourceAtop = 5,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
382 NSCompositeDestinationOver = 6,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
383 NSCompositeDestinationIn = 7,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
384 NSCompositeDestinationOut = 8,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
385 NSCompositeDestinationAtop = 9,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
386 NSCompositeXOR = 10,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
387 NSCompositePlusDarker = 11,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
388 NSCompositeHighlight = 12,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
389 NSCompositePlusLighter = 13
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
390 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
391
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
392 enum NSWindowOrderingMode
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
393 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
394 NSWindowAbove = 1,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
395 NSWindowBelow = -1,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
396 NSWindowOut = 0
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
397 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
398
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
399 enum NSFocusRingType
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
400 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
401 NSFocusRingTypeDefault = 0,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
402 NSFocusRingTypeNone = 1,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
403 NSFocusRingTypeExterior = 2
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
404 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
405
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
406 enum NSBackingStoreType
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
407 {
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
408 NSBackingStoreRetained = 0,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
409 NSBackingStoreNonretained = 1,
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
410 NSBackingStoreBuffered = 2
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
411 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
412
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
413
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
414
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
415 //NSGeometry.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
416 alias bindings.NSIntersectionRect NSIntersectionRect;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
417
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
418
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
419
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
420 // NSGradient.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
421 enum NSGradientDrawingOptions : NSUInteger
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
422 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
423 NSGradientDrawsBeforeStartingLocation = (1 << 0),
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
424 NSGradientDrawsAfterEndingLocation = (1 << 1),
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
425 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
426
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
427
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
428
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
429 // NSGraphicsContext.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
430 enum NSImageInterpolation
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
431 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
432 NSImageInterpolationDefault,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
433 NSImageInterpolationNone,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
434 NSImageInterpolationLow,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
435 NSImageInterpolationHigh
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
436 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
437
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
438
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
439
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
440 // NSHFSFileTypes.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
441 alias bindings.NSFileTypeForHFSTypeCode NSFileTypeForHFSTypeCode;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
442
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
443
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
444
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
445 //IKPictureTaker.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
446 alias c_long NSInteger;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
447 alias c_ulong NSUInteger;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
448
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
449
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
450
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
451 // NSImage.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
452 enum NSImageCacheMode
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
453 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
454 NSImageCacheDefault,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
455 NSImageCacheAlways,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
456 NSImageCacheBySize,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
457 NSImageCacheNever
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
458 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
459
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
460
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
461
90
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
462 // NSImageCell.h
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
463 enum NSImageAlignment
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
464 {
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
465 NSImageAlignCenter = 0,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
466 NSImageAlignTop,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
467 NSImageAlignTopLeft,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
468 NSImageAlignTopRight,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
469 NSImageAlignLeft,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
470 NSImageAlignBottom,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
471 NSImageAlignBottomLeft,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
472 NSImageAlignBottomRight,
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
473 NSImageAlignRight
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
474 }
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
475
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
476
c7f7f4d7091a All widgets are ported
Jacob Carlborg <doob@me.com>
parents: 60
diff changeset
477
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
478 // NSBitmapImageRep.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
479 enum NSTIFFCompression : NSUInteger {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
480 NSTIFFCompressionNone = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
481 NSTIFFCompressionCCITTFAX3 = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
482 NSTIFFCompressionCCITTFAX4 = 4,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
483 NSTIFFCompressionLZW = 5,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
484 NSTIFFCompressionJPEG = 6,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
485 NSTIFFCompressionNEXT = 32766,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
486 NSTIFFCompressionPackBits = 32773,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
487 NSTIFFCompressionOldJPEG = 32865
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
488 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
489
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
490 enum NSBitmapFormat : NSUInteger {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
491 NSAlphaFirstBitmapFormat = 1 << 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
492 NSAlphaNonpremultipliedBitmapFormat = 1 << 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
493 NSFloatingPointSamplesBitmapFormat = 1 << 2
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
494 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
495
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
496
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
497
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
498 // NSObjCRuntime.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
499 alias bindings.NSGetSizeAndAlignment NSGetSizeAndAlignment;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
500
51
e6f04eb518ae Updated Canvas to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
501 enum
e6f04eb518ae Updated Canvas to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
502 {
e6f04eb518ae Updated Canvas to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
503 NSNotFound = 0x7fffffff
e6f04eb518ae Updated Canvas to 3.514
Jacob Carlborg <doob@me.com>
parents: 45
diff changeset
504 }
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
505
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
506
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
507
116
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
508 // NSOpenGL.h
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
509 enum NSOpenGLPixelFormatAttribute : uint
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
510 {
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
511 NSOpenGLPFAAllRenderers = 1,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
512 NSOpenGLPFADoubleBuffer = 5,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
513 NSOpenGLPFAStereo = 6,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
514 NSOpenGLPFAAuxBuffers = 7,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
515 NSOpenGLPFAColorSize = 8,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
516 NSOpenGLPFAAlphaSize = 11,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
517 NSOpenGLPFADepthSize = 12,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
518 NSOpenGLPFAStencilSize = 13,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
519 NSOpenGLPFAAccumSize = 14,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
520 NSOpenGLPFAMinimumPolicy = 51,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
521 NSOpenGLPFAMaximumPolicy = 52,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
522 NSOpenGLPFAOffScreen = 53,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
523 NSOpenGLPFAFullScreen = 54,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
524 NSOpenGLPFASampleBuffers = 55,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
525 NSOpenGLPFASamples = 56,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
526 NSOpenGLPFAAuxDepthStencil = 57,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
527 NSOpenGLPFAColorFloat = 58,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
528 NSOpenGLPFAMultisample = 59,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
529 NSOpenGLPFASupersample = 60,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
530 NSOpenGLPFASampleAlpha = 61,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
531 NSOpenGLPFARendererID = 70,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
532 NSOpenGLPFASingleRenderer = 71,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
533 NSOpenGLPFANoRecovery = 72,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
534 NSOpenGLPFAAccelerated = 73,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
535 NSOpenGLPFAClosestPolicy = 74,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
536 NSOpenGLPFARobust = 75,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
537 NSOpenGLPFABackingStore = 76,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
538 NSOpenGLPFAMPSafe = 78,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
539 NSOpenGLPFAWindow = 80,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
540 NSOpenGLPFAMultiScreen = 81,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
541 NSOpenGLPFACompliant = 83,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
542 NSOpenGLPFAScreenMask = 84,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
543 NSOpenGLPFAPixelBuffer = 90,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
544 NSOpenGLPFAAllowOfflineRenderers = 96,
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
545 NSOpenGLPFAVirtualScreenCount = 128
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
546 }
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
547
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
548
580596d83ac4 Ported dwt.opengl.GLCanvas
Jacob Carlborg <doob@me.com>
parents: 90
diff changeset
549
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
550 // NSParagraphStyle.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
551 enum NSLineBreakMode
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
552 {
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
553 NSLineBreakByWordWrapping = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
554 NSLineBreakByCharWrapping,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
555 NSLineBreakByClipping,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
556 NSLineBreakByTruncatingHead,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
557 NSLineBreakByTruncatingTail,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
558 NSLineBreakByTruncatingMiddle
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
559 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
560
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
561 enum NSTextTabType
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
562 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
563 NSLeftTabStopType = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
564 NSRightTabStopType,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
565 NSCenterTabStopType,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
566 NSDecimalTabStopType
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
567 }
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
568
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
569
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
570
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
571 // NSPathUtilities.h
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
572 alias bindings.NSSearchPathForDirectoriesInDomains NSSearchPathForDirectoriesInDomains;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
573 alias bindings.NSTemporaryDirectory NSTemporaryDirectory;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
574
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
575
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
576
60
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
577 // NSText.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
578 enum NSTextAlignment
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
579 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
580 NSLeftTextAlignment = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
581 NSRightTextAlignment = 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
582 NSCenterTextAlignment = 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
583 NSJustifiedTextAlignment = 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
584 NSNaturalTextAlignment = 4
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
585 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
586
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
587
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
588
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
589 // NSWindow.h
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
590 enum : NSUInteger
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
591 {
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
592 NSBorderlessWindowMask = 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
593 NSTitledWindowMask = 1 << 0,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
594 NSClosableWindowMask = 1 << 1,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
595 NSMiniaturizableWindowMask = 1 << 2,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
596 NSResizableWindowMask = 1 << 3,
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
597 NSTexturedBackgroundWindowMask = 1 << 8
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
598 }
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
599
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
600
62202ce0039f Updated and fixed many modules to 3.514
Jacob Carlborg <doob@me.com>
parents: 51
diff changeset
601
45
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
602 // NSZone.h
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
603 alias void* _NSZone;
d8635bb48c7c Merge with SWT 3.5
Jacob Carlborg <doob@me.com>
parents: 0
diff changeset
604 alias _NSZone NSZone;