View | Details | Raw Unified | Return to bug 276148
Collapse All | Expand All

(-)b/x11-toolkits/gnustep-gui/Makefile (-17 / +15 lines)
Lines 1-7 Link Here
1
PORTNAME=	gnustep-gui
1
PORTNAME=	gnustep-gui
2
DISTVERSIONPREFIX=	gui-
2
DISTVERSIONPREFIX=	gui-
3
DISTVERSION=	0_28_0
3
DISTVERSION=	0_30_0
4
PORTREVISION=	7
5
CATEGORIES=	x11-toolkits gnustep
4
CATEGORIES=	x11-toolkits gnustep
6
5
7
MAINTAINER=	ports@FreeBSD.org
6
MAINTAINER=	ports@FreeBSD.org
Lines 11-23 WWW= http://www.gnustep.org/ Link Here
11
LICENSE=	GPLv3 LGPL3
10
LICENSE=	GPLv3 LGPL3
12
LICENSE_COMB=	multi
11
LICENSE_COMB=	multi
13
12
14
LIB_DEPENDS+=	libtiff.so:graphics/tiff
13
LIB_DEPENDS+=	libtiff.so:graphics/tiff \
15
LIB_DEPENDS+=	libpng.so:graphics/png
14
		libpng.so:graphics/png \
16
LIB_DEPENDS+=	libgif.so:graphics/giflib
15
		libgif.so:graphics/giflib \
17
LIB_DEPENDS+=	libicui18n.so:devel/icu
16
		libicui18n.so:devel/icu \
18
LIB_DEPENDS+=	libsndfile.so:audio/libsndfile
17
		libsndfile.so:audio/libsndfile \
19
LIB_DEPENDS+=	libao.so:audio/libao
18
		libao.so:audio/libao \
20
LIB_DEPENDS+=	libflite.so:audio/flite
19
		libflite.so:audio/flite
21
20
22
USES=		gnustep jpeg pkgconfig xorg
21
USES=		gnustep jpeg pkgconfig xorg
23
USE_GNUSTEP=	base build
22
USE_GNUSTEP=	base build
Lines 28-40 GH_ACCOUNT= gnustep Link Here
28
GH_PROJECT=	libs-gui
27
GH_PROJECT=	libs-gui
29
28
30
GNU_CONFIGURE=	yes
29
GNU_CONFIGURE=	yes
31
CONFIGURE_ARGS+=	--with-tiff-library=${LOCALBASE}/lib
30
CONFIGURE_ARGS+=	--with-tiff-library=${LOCALBASE}/lib \
32
CONFIGURE_ARGS+=	--with-tiff-include=${LOCALBASE}/include
31
			--with-tiff-include=${LOCALBASE}/include \
33
CONFIGURE_ARGS+=	--with-jpeg-library=${LOCALBASE}/lib
32
			--with-jpeg-library=${LOCALBASE}/lib \
34
CONFIGURE_ARGS+=	--with-jpeg-include=${LOCALBASE}/include
33
			--with-jpeg-include=${LOCALBASE}/include \
35
CONFIGURE_ARGS+=	--with-x
34
			--with-x \
36
CONFIGURE_ARGS+=	--with-x-include=${LOCALBASE}/include
35
			--with-x-include=${LOCALBASE}/include \
37
CONFIGURE_ARGS+=	--with-x-include=${LOCALBASE}/lib
36
			--with-x-include=${LOCALBASE}/lib
38
37
39
MAKE_FLAGS+=	OPTFLAG="${CFLAGS}"
38
MAKE_FLAGS+=	OPTFLAG="${CFLAGS}"
40
39
Lines 55-61 ASPELL_CONFIGURE_ENABLE= aspell Link Here
55
USE_LDCONFIG=	${GNUSTEP_SYSTEM_LIBRARIES}
54
USE_LDCONFIG=	${GNUSTEP_SYSTEM_LIBRARIES}
56
55
57
post-patch:
56
post-patch:
58
	${REINPLACE_CMD} -e "s|libpng/png.h|png.h|" ${WRKSRC}/configure
59
	${REINPLACE_CMD} -e "s|doc=no|doc=yes|" ${WRKSRC}/GNUmakefile
57
	${REINPLACE_CMD} -e "s|doc=no|doc=yes|" ${WRKSRC}/GNUmakefile
60
58
61
pre-configure:
59
pre-configure:
(-)b/x11-toolkits/gnustep-gui/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1613252261
1
TIMESTAMP = 1704118298
2
SHA256 (gnustep-libs-gui-gui-0_28_0_GH0.tar.gz) = 24023400c8bd854acca5acf90fb1892c9dcb410884565189d425a3e67e182d66
2
SHA256 (gnustep-libs-gui-gui-0_30_0_GH0.tar.gz) = 4bb7dc478957d26ee07c72cc83a34689e88b2c60159d2447347db0c36ddd051f
3
SIZE (gnustep-libs-gui-gui-0_28_0_GH0.tar.gz) = 2933423
3
SIZE (gnustep-libs-gui-gui-0_30_0_GH0.tar.gz) = 3045228
(-)b/x11-toolkits/gnustep-gui/files/patch-doc-makefile-headers (+16 lines)
Added Link Here
1
--- Source/DocMakefile
2
+++ Source/DocMakefile
3
@@ -72,13 +72,8 @@ NSCell.h \
4
 NSCIImageRep.h \
5
 NSClickGestureRecognizer.h \
6
 NSClipView.h \
7
-NSCollectionViewCompositionalLayout.h \
8
-NSCollectionViewFlowLayout.h \
9
-NSCollectionViewGridLayout.h \
10
 NSCollectionView.h \
11
 NSCollectionViewItem.h \
12
-NSCollectionViewLayout.h \
13
-NSCollectionViewTransitionLayout.h \
14
 NSColor.h \
15
 NSColorList.h \
16
 NSColorPanel.h \
(-)a/x11-toolkits/gnustep-gui/files/patch-icu68 (-29 lines)
Removed Link Here
1
Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844
2
3
GSCharacterPanel.m:81:10: error: use of undeclared identifier 'TRUE'
4
  return TRUE;
5
         ^
6
GSCharacterPanel.m:106:10: error: use of undeclared identifier 'TRUE'
7
  return TRUE;
8
         ^
9
10
--- Source/GSCharacterPanel.m.orig	2019-01-06 22:00:38 UTC
11
+++ Source/GSCharacterPanel.m
12
@@ -78,7 +78,7 @@
13
 static UBool enumCharNamesFn(void *context, UChar32 code, UCharNameChoice nameChoice, const char *name, int32_t length)
14
 {
15
   [(NSMutableIndexSet*)context addIndex: (NSUInteger)code];
16
-  return TRUE;
17
+  return true;
18
 }
19
 
20
 static NSIndexSet *AssignedCodepoints()
21
@@ -103,7 +103,7 @@ static UBool searchCharNamesFn(void *context, UChar32 
22
     {
23
       [ctx->set addIndex: (NSUInteger)code];
24
     }
25
-  return TRUE;
26
+  return true;
27
 }
28
 
29
 static NSIndexSet *CodepointsWithNameContainingSubstring(NSString *str)
(-)b/x11-toolkits/gnustep-gui/pkg-plist (-170 / +96 lines)
Lines 1-6 Link Here
1
GNUstep/System/Applications/GSSpeechServer.app/GSSpeechServer
1
GNUstep/System/Applications/GSSpeechServer.app/GSSpeechServer
2
GNUstep/System/Applications/GSSpeechServer.app/Resources/GSSpeechServer.desktop
2
GNUstep/System/Applications/GSSpeechServer.app/Resources/GSSpeechServer.desktop
3
GNUstep/System/Applications/GSSpeechServer.app/Resources/Info-gnustep.plist
3
GNUstep/System/Applications/GSSpeechServer.app/Resources/Info-gnustep.plist
4
GNUstep/System/Applications/GSSpeechServer.app/Resources/SpeechSynthesizer.png
4
GNUstep/System/Applications/GSSpeechServer.app/stamp.make
5
GNUstep/System/Applications/GSSpeechServer.app/stamp.make
5
GNUstep/System/Library/Bundles/AudioOutput.nssound/AudioOutput
6
GNUstep/System/Library/Bundles/AudioOutput.nssound/AudioOutput
6
GNUstep/System/Library/Bundles/AudioOutput.nssound/Resources/Info-gnustep.plist
7
GNUstep/System/Library/Bundles/AudioOutput.nssound/Resources/Info-gnustep.plist
Lines 45-52 GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make Link Here
45
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/Functions.html
46
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/Functions.html
46
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.gsdoc
47
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.gsdoc
47
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.html
48
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.html
48
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.gsdoc
49
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.html
50
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.gsdoc
49
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.gsdoc
51
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.html
50
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.html
52
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTable.gsdoc
51
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTable.gsdoc
Lines 107-318 GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make Link Here
107
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.html
106
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.html
108
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.igsdoc
107
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.igsdoc
109
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/MainIndex.html
108
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/MainIndex.html
110
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSActionCell.gsdoc
109
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAccessibilityProtocols.gsdoc
111
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSActionCell.html
110
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAccessibilityProtocols.html
112
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.gsdoc
111
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.gsdoc
113
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.html
112
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.html
114
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSApplication.gsdoc
115
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSApplication.html
116
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.gsdoc
113
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.gsdoc
117
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.html
114
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.html
118
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.gsdoc
115
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCollectionView.gsdoc
119
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.html
116
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCollectionView.html
120
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.gsdoc
121
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.html
122
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBox.gsdoc
123
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBox.html
124
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowser.gsdoc
125
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowser.html
126
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.gsdoc
127
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.html
128
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButton.gsdoc
129
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButton.html
130
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.gsdoc
131
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.html
132
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.gsdoc
133
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.html
134
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCell.gsdoc
135
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCell.html
136
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSClipView.gsdoc
137
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSClipView.html
138
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.gsdoc
117
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.gsdoc
139
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.html
118
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.html
140
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorList.gsdoc
141
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorList.html
142
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.gsdoc
119
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.gsdoc
143
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.html
120
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.html
144
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.gsdoc
121
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicking.gsdoc
145
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.html
122
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicking.html
146
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorWell.gsdoc
147
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorWell.html
148
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBox.gsdoc
149
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBox.html
150
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.gsdoc
151
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.html
152
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.gsdoc
123
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.gsdoc
153
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.html
124
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.html
154
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCursor.gsdoc
155
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCursor.html
156
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.gsdoc
157
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.html
158
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLink.gsdoc
159
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLink.html
160
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.gsdoc
161
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.html
162
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.gsdoc
125
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.gsdoc
163
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.html
126
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.html
164
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocument.gsdoc
127
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDragging.gsdoc
165
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocument.html
128
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDragging.html
166
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.gsdoc
129
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFileWrapperExtensions.gsdoc
167
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.html
130
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFileWrapperExtensions.html
168
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDrawer.gsdoc
169
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDrawer.html
170
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.gsdoc
171
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.html
172
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEvent.gsdoc
173
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEvent.html
174
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.gsdoc
131
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.gsdoc
175
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.html
132
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.html
176
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontManager.gsdoc
177
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontManager.html
178
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.gsdoc
133
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.gsdoc
179
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.html
134
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.html
180
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSForm.gsdoc
135
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphGenerator.gsdoc
181
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSForm.html
136
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphGenerator.html
182
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFormCell.gsdoc
137
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphInfo.gsdoc
183
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFormCell.html
138
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphInfo.html
184
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.gsdoc
139
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.gsdoc
185
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.html
140
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.html
186
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.gsdoc
141
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.gsdoc
187
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.html
142
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.html
188
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.gsdoc
143
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.gsdoc
189
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.html
144
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.html
190
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImage.gsdoc
191
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImage.html
192
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageCell.gsdoc
193
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageCell.html
194
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.gsdoc
145
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.gsdoc
195
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.html
146
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.html
196
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageView.gsdoc
197
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageView.html
198
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.gsdoc
147
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.gsdoc
199
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.html
148
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.html
200
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.gsdoc
149
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.gsdoc
201
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.html
150
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.html
202
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.gsdoc
151
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSKeyValueBinding.gsdoc
203
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.html
152
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSKeyValueBinding.html
204
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.gsdoc
153
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.gsdoc
205
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.html
154
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.html
206
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.gsdoc
155
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.gsdoc
207
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.html
156
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.html
208
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.gsdoc
157
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.gsdoc
209
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.html
158
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.html
210
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.gsdoc
159
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNibLoading.gsdoc
211
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.html
160
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNibLoading.html
212
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuView.gsdoc
213
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuView.html
214
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNib.gsdoc
215
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNib.html
216
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGL.gsdoc
217
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGL.html
218
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGLView.gsdoc
219
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGLView.html
220
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.gsdoc
221
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.html
222
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.gsdoc
161
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.gsdoc
223
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.html
162
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.html
224
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.gsdoc
163
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.gsdoc
225
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.html
164
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.html
226
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPanel.gsdoc
227
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPanel.html
228
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.gsdoc
229
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.html
230
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.gsdoc
165
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.gsdoc
231
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.html
166
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.html
232
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.gsdoc
233
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.html
234
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.gsdoc
235
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.html
236
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.gsdoc
237
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.html
238
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.gsdoc
239
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.html
240
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.gsdoc
167
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.gsdoc
241
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.html
168
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.html
242
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrinter.gsdoc
243
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrinter.html
244
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.gsdoc
245
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.html
246
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSResponder.gsdoc
247
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSResponder.html
248
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.gsdoc
249
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.html
250
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerView.gsdoc
251
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerView.html
252
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.gsdoc
169
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.gsdoc
253
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.html
170
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.html
254
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScreen.gsdoc
171
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSeguePerforming.gsdoc
255
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScreen.html
172
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSeguePerforming.html
256
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScrollView.gsdoc
173
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellProtocol.gsdoc
257
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScrollView.html
174
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellProtocol.html
258
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScroller.gsdoc
259
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScroller.html
260
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.gsdoc
261
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.html
262
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSelection.gsdoc
263
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSelection.html
264
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSlider.gsdoc
265
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSlider.html
266
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.gsdoc
267
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.html
268
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSound.gsdoc
269
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSound.html
270
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.gsdoc
271
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.html
272
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSplitView.gsdoc
273
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSplitView.html
274
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepper.gsdoc
275
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepper.html
276
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.gsdoc
277
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.html
278
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.gsdoc
175
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.gsdoc
279
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.html
176
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.html
280
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabView.gsdoc
281
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabView.html
282
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.gsdoc
283
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.html
284
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.gsdoc
177
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.gsdoc
285
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.html
178
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.html
286
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.gsdoc
287
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.html
288
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.gsdoc
289
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.html
290
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.gsdoc
179
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.gsdoc
291
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.html
180
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.html
292
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.gsdoc
181
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.gsdoc
293
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.html
182
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.html
294
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.gsdoc
183
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.gsdoc
295
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.html
184
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.html
296
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.gsdoc
185
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextCheckingClient.gsdoc
297
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.html
186
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextCheckingClient.html
298
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.gsdoc
187
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.gsdoc
299
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.html
188
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.html
300
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.gsdoc
189
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextInputClient.gsdoc
301
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.html
190
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextInputClient.html
302
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.gsdoc
191
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemIdentification.gsdoc
303
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.html
192
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemIdentification.html
304
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextView.gsdoc
193
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemSearching.gsdoc
305
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextView.html
194
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemSearching.html
306
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbar.gsdoc
195
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceValidation.gsdoc
307
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbar.html
196
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceValidation.html
308
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.gsdoc
309
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.html
310
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.gsdoc
197
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.gsdoc
311
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.html
198
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.html
312
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.gsdoc
199
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.gsdoc
313
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.html
200
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.html
314
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowController.gsdoc
201
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowRestoration.gsdoc
315
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowController.html
202
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowRestoration.html
316
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.gsdoc
203
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.gsdoc
317
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.html
204
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.html
318
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/OrderedSymbolDeclarations.plist
205
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/OrderedSymbolDeclarations.plist
Lines 333-338 GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make Link Here
333
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.html
220
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.html
334
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.igsdoc
221
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.igsdoc
335
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/dependencies
222
%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/dependencies
223
%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/DefaultsSummary.html
224
%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser.igsdoc
225
%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/KeyboardSetup.html
226
%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/LanguageSetup.html
227
%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/dependencies
336
%%PORTDOCS%%GNUstep/System/Library/Documentation/info/AppKit.info
228
%%PORTDOCS%%GNUstep/System/Library/Documentation/info/AppKit.info
337
GNUstep/System/Library/Documentation/man/man1/GSSpeechServer.1.gz
229
GNUstep/System/Library/Documentation/man/man1/GSSpeechServer.1.gz
338
%%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/gclose.1.gz
230
%%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/gclose.1.gz
Lines 343-353 GNUstep/System/Library/Documentation/man/man1/say.1.gz Link Here
343
%%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/set_show_service.1.gz
235
%%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/set_show_service.1.gz
344
GNUstep/System/Library/Headers/AppKit/AppKit.h
236
GNUstep/System/Library/Headers/AppKit/AppKit.h
345
GNUstep/System/Library/Headers/AppKit/AppKitDefines.h
237
GNUstep/System/Library/Headers/AppKit/AppKitDefines.h
238
GNUstep/System/Library/Headers/AppKit/AppKitErrors.h
346
GNUstep/System/Library/Headers/AppKit/AppKitExceptions.h
239
GNUstep/System/Library/Headers/AppKit/AppKitExceptions.h
347
GNUstep/System/Library/Headers/AppKit/DPSOperators.h
240
GNUstep/System/Library/Headers/AppKit/DPSOperators.h
348
GNUstep/System/Library/Headers/AppKit/GMAppKit.h
241
GNUstep/System/Library/Headers/AppKit/GMAppKit.h
349
GNUstep/System/Library/Headers/AppKit/GMArchiver.h
242
GNUstep/System/Library/Headers/AppKit/GMArchiver.h
350
GNUstep/System/Library/Headers/AppKit/GSAnimator.h
243
GNUstep/System/Library/Headers/AppKit/GSAnimator.h
244
GNUstep/System/Library/Headers/AppKit/GSAutoLayoutVFLParser.h
351
GNUstep/System/Library/Headers/AppKit/GSDisplayServer.h
245
GNUstep/System/Library/Headers/AppKit/GSDisplayServer.h
352
GNUstep/System/Library/Headers/AppKit/GSDragView.h
246
GNUstep/System/Library/Headers/AppKit/GSDragView.h
353
GNUstep/System/Library/Headers/AppKit/GSEPSPrintOperation.h
247
GNUstep/System/Library/Headers/AppKit/GSEPSPrintOperation.h
Lines 387-396 GNUstep/System/Library/Headers/AppKit/GSWindowDecorationView.h Link Here
387
GNUstep/System/Library/Headers/AppKit/GSXibElement.h
281
GNUstep/System/Library/Headers/AppKit/GSXibElement.h
388
GNUstep/System/Library/Headers/AppKit/GSXibKeyedUnarchiver.h
282
GNUstep/System/Library/Headers/AppKit/GSXibKeyedUnarchiver.h
389
GNUstep/System/Library/Headers/AppKit/GSXibLoading.h
283
GNUstep/System/Library/Headers/AppKit/GSXibLoading.h
390
GNUstep/System/Library/Headers/AppKit/GSXibObjectContainer.h
391
GNUstep/System/Library/Headers/AppKit/IMConnectors.h
284
GNUstep/System/Library/Headers/AppKit/IMConnectors.h
392
GNUstep/System/Library/Headers/AppKit/IMCustomObject.h
285
GNUstep/System/Library/Headers/AppKit/IMCustomObject.h
393
GNUstep/System/Library/Headers/AppKit/IMLoading.h
286
GNUstep/System/Library/Headers/AppKit/IMLoading.h
287
GNUstep/System/Library/Headers/AppKit/NSAccessibility.h
288
GNUstep/System/Library/Headers/AppKit/NSAccessibilityConstants.h
289
GNUstep/System/Library/Headers/AppKit/NSAccessibilityCustomAction.h
290
GNUstep/System/Library/Headers/AppKit/NSAccessibilityCustomRotor.h
291
GNUstep/System/Library/Headers/AppKit/NSAccessibilityElement.h
292
GNUstep/System/Library/Headers/AppKit/NSAccessibilityProtocols.h
394
GNUstep/System/Library/Headers/AppKit/NSActionCell.h
293
GNUstep/System/Library/Headers/AppKit/NSActionCell.h
395
GNUstep/System/Library/Headers/AppKit/NSAffineTransform.h
294
GNUstep/System/Library/Headers/AppKit/NSAffineTransform.h
396
GNUstep/System/Library/Headers/AppKit/NSAlert.h
295
GNUstep/System/Library/Headers/AppKit/NSAlert.h
Lines 449-464 GNUstep/System/Library/Headers/AppKit/NSEvent.h Link Here
449
GNUstep/System/Library/Headers/AppKit/NSFileWrapper.h
348
GNUstep/System/Library/Headers/AppKit/NSFileWrapper.h
450
GNUstep/System/Library/Headers/AppKit/NSFileWrapperExtensions.h
349
GNUstep/System/Library/Headers/AppKit/NSFileWrapperExtensions.h
451
GNUstep/System/Library/Headers/AppKit/NSFont.h
350
GNUstep/System/Library/Headers/AppKit/NSFont.h
351
GNUstep/System/Library/Headers/AppKit/NSFontAssetRequest.h
452
GNUstep/System/Library/Headers/AppKit/NSFontCollection.h
352
GNUstep/System/Library/Headers/AppKit/NSFontCollection.h
453
GNUstep/System/Library/Headers/AppKit/NSFontDescriptor.h
353
GNUstep/System/Library/Headers/AppKit/NSFontDescriptor.h
454
GNUstep/System/Library/Headers/AppKit/NSFontManager.h
354
GNUstep/System/Library/Headers/AppKit/NSFontManager.h
455
GNUstep/System/Library/Headers/AppKit/NSFontPanel.h
355
GNUstep/System/Library/Headers/AppKit/NSFontPanel.h
456
GNUstep/System/Library/Headers/AppKit/NSForm.h
356
GNUstep/System/Library/Headers/AppKit/NSForm.h
457
GNUstep/System/Library/Headers/AppKit/NSFormCell.h
357
GNUstep/System/Library/Headers/AppKit/NSFormCell.h
358
GNUstep/System/Library/Headers/AppKit/NSGestureRecognizer.h
458
GNUstep/System/Library/Headers/AppKit/NSGlyphGenerator.h
359
GNUstep/System/Library/Headers/AppKit/NSGlyphGenerator.h
360
GNUstep/System/Library/Headers/AppKit/NSGlyphInfo.h
459
GNUstep/System/Library/Headers/AppKit/NSGradient.h
361
GNUstep/System/Library/Headers/AppKit/NSGradient.h
460
GNUstep/System/Library/Headers/AppKit/NSGraphics.h
362
GNUstep/System/Library/Headers/AppKit/NSGraphics.h
461
GNUstep/System/Library/Headers/AppKit/NSGraphicsContext.h
363
GNUstep/System/Library/Headers/AppKit/NSGraphicsContext.h
364
GNUstep/System/Library/Headers/AppKit/NSGridView.h
462
GNUstep/System/Library/Headers/AppKit/NSGroupTouchBarItem.h
365
GNUstep/System/Library/Headers/AppKit/NSGroupTouchBarItem.h
463
GNUstep/System/Library/Headers/AppKit/NSHelpManager.h
366
GNUstep/System/Library/Headers/AppKit/NSHelpManager.h
464
GNUstep/System/Library/Headers/AppKit/NSHelpPanel.h
367
GNUstep/System/Library/Headers/AppKit/NSHelpPanel.h
Lines 470-480 GNUstep/System/Library/Headers/AppKit/NSInputManager.h Link Here
470
GNUstep/System/Library/Headers/AppKit/NSInputServer.h
373
GNUstep/System/Library/Headers/AppKit/NSInputServer.h
471
GNUstep/System/Library/Headers/AppKit/NSInterfaceStyle.h
374
GNUstep/System/Library/Headers/AppKit/NSInterfaceStyle.h
472
GNUstep/System/Library/Headers/AppKit/NSKeyValueBinding.h
375
GNUstep/System/Library/Headers/AppKit/NSKeyValueBinding.h
376
GNUstep/System/Library/Headers/AppKit/NSLayoutAnchor.h
377
GNUstep/System/Library/Headers/AppKit/NSLayoutConstraint.h
378
GNUstep/System/Library/Headers/AppKit/NSLayoutGuide.h
473
GNUstep/System/Library/Headers/AppKit/NSLayoutManager.h
379
GNUstep/System/Library/Headers/AppKit/NSLayoutManager.h
474
GNUstep/System/Library/Headers/AppKit/NSLevelIndicator.h
380
GNUstep/System/Library/Headers/AppKit/NSLevelIndicator.h
475
GNUstep/System/Library/Headers/AppKit/NSLevelIndicatorCell.h
381
GNUstep/System/Library/Headers/AppKit/NSLevelIndicatorCell.h
476
GNUstep/System/Library/Headers/AppKit/NSMagnificationGestureRecognizer.h
382
GNUstep/System/Library/Headers/AppKit/NSMagnificationGestureRecognizer.h
477
GNUstep/System/Library/Headers/AppKit/NSMatrix.h
383
GNUstep/System/Library/Headers/AppKit/NSMatrix.h
384
GNUstep/System/Library/Headers/AppKit/NSMediaLibraryBrowserController.h
478
GNUstep/System/Library/Headers/AppKit/NSMenu.h
385
GNUstep/System/Library/Headers/AppKit/NSMenu.h
479
GNUstep/System/Library/Headers/AppKit/NSMenuItem.h
386
GNUstep/System/Library/Headers/AppKit/NSMenuItem.h
480
GNUstep/System/Library/Headers/AppKit/NSMenuItemCell.h
387
GNUstep/System/Library/Headers/AppKit/NSMenuItemCell.h
Lines 496-506 GNUstep/System/Library/Headers/AppKit/NSPDFImageRep.h Link Here
496
GNUstep/System/Library/Headers/AppKit/NSPDFInfo.h
403
GNUstep/System/Library/Headers/AppKit/NSPDFInfo.h
497
GNUstep/System/Library/Headers/AppKit/NSPDFPanel.h
404
GNUstep/System/Library/Headers/AppKit/NSPDFPanel.h
498
GNUstep/System/Library/Headers/AppKit/NSPICTImageRep.h
405
GNUstep/System/Library/Headers/AppKit/NSPICTImageRep.h
406
GNUstep/System/Library/Headers/AppKit/NSPageController.h
499
GNUstep/System/Library/Headers/AppKit/NSPageLayout.h
407
GNUstep/System/Library/Headers/AppKit/NSPageLayout.h
500
GNUstep/System/Library/Headers/AppKit/NSPanGestureRecognizer.h
408
GNUstep/System/Library/Headers/AppKit/NSPanGestureRecognizer.h
501
GNUstep/System/Library/Headers/AppKit/NSPanel.h
409
GNUstep/System/Library/Headers/AppKit/NSPanel.h
502
GNUstep/System/Library/Headers/AppKit/NSParagraphStyle.h
410
GNUstep/System/Library/Headers/AppKit/NSParagraphStyle.h
503
GNUstep/System/Library/Headers/AppKit/NSPasteboard.h
411
GNUstep/System/Library/Headers/AppKit/NSPasteboard.h
412
GNUstep/System/Library/Headers/AppKit/NSPasteboardItem.h
413
GNUstep/System/Library/Headers/AppKit/NSPathCell.h
414
GNUstep/System/Library/Headers/AppKit/NSPathComponentCell.h
415
GNUstep/System/Library/Headers/AppKit/NSPathControl.h
416
GNUstep/System/Library/Headers/AppKit/NSPathControlItem.h
417
GNUstep/System/Library/Headers/AppKit/NSPersistentDocument.h
504
GNUstep/System/Library/Headers/AppKit/NSPickerTouchBarItem.h
418
GNUstep/System/Library/Headers/AppKit/NSPickerTouchBarItem.h
505
GNUstep/System/Library/Headers/AppKit/NSPopUpButton.h
419
GNUstep/System/Library/Headers/AppKit/NSPopUpButton.h
506
GNUstep/System/Library/Headers/AppKit/NSPopUpButtonCell.h
420
GNUstep/System/Library/Headers/AppKit/NSPopUpButtonCell.h
Lines 519-537 GNUstep/System/Library/Headers/AppKit/NSRotationGestureRecognizer.h Link Here
519
GNUstep/System/Library/Headers/AppKit/NSRuleEditor.h
433
GNUstep/System/Library/Headers/AppKit/NSRuleEditor.h
520
GNUstep/System/Library/Headers/AppKit/NSRulerMarker.h
434
GNUstep/System/Library/Headers/AppKit/NSRulerMarker.h
521
GNUstep/System/Library/Headers/AppKit/NSRulerView.h
435
GNUstep/System/Library/Headers/AppKit/NSRulerView.h
436
GNUstep/System/Library/Headers/AppKit/NSRunningApplication.h
522
GNUstep/System/Library/Headers/AppKit/NSSavePanel.h
437
GNUstep/System/Library/Headers/AppKit/NSSavePanel.h
523
GNUstep/System/Library/Headers/AppKit/NSScreen.h
438
GNUstep/System/Library/Headers/AppKit/NSScreen.h
524
GNUstep/System/Library/Headers/AppKit/NSScrollView.h
439
GNUstep/System/Library/Headers/AppKit/NSScrollView.h
525
GNUstep/System/Library/Headers/AppKit/NSScroller.h
440
GNUstep/System/Library/Headers/AppKit/NSScroller.h
441
GNUstep/System/Library/Headers/AppKit/NSScrubber.h
442
GNUstep/System/Library/Headers/AppKit/NSScrubberItemView.h
443
GNUstep/System/Library/Headers/AppKit/NSScrubberLayout.h
526
GNUstep/System/Library/Headers/AppKit/NSSearchField.h
444
GNUstep/System/Library/Headers/AppKit/NSSearchField.h
527
GNUstep/System/Library/Headers/AppKit/NSSearchFieldCell.h
445
GNUstep/System/Library/Headers/AppKit/NSSearchFieldCell.h
528
GNUstep/System/Library/Headers/AppKit/NSSecureTextField.h
446
GNUstep/System/Library/Headers/AppKit/NSSecureTextField.h
529
GNUstep/System/Library/Headers/AppKit/NSSegmentedCell.h
447
GNUstep/System/Library/Headers/AppKit/NSSegmentedCell.h
530
GNUstep/System/Library/Headers/AppKit/NSSegmentedControl.h
448
GNUstep/System/Library/Headers/AppKit/NSSegmentedControl.h
449
GNUstep/System/Library/Headers/AppKit/NSSeguePerforming.h
531
GNUstep/System/Library/Headers/AppKit/NSSelection.h
450
GNUstep/System/Library/Headers/AppKit/NSSelection.h
532
GNUstep/System/Library/Headers/AppKit/NSShadow.h
451
GNUstep/System/Library/Headers/AppKit/NSShadow.h
452
GNUstep/System/Library/Headers/AppKit/NSSharingService.h
453
GNUstep/System/Library/Headers/AppKit/NSSharingServicePickerToolbarItem.h
533
GNUstep/System/Library/Headers/AppKit/NSSharingServicePickerTouchBarItem.h
454
GNUstep/System/Library/Headers/AppKit/NSSharingServicePickerTouchBarItem.h
534
GNUstep/System/Library/Headers/AppKit/NSSlider.h
455
GNUstep/System/Library/Headers/AppKit/NSSlider.h
456
GNUstep/System/Library/Headers/AppKit/NSSliderAccessory.h
535
GNUstep/System/Library/Headers/AppKit/NSSliderCell.h
457
GNUstep/System/Library/Headers/AppKit/NSSliderCell.h
536
GNUstep/System/Library/Headers/AppKit/NSSliderTouchBarItem.h
458
GNUstep/System/Library/Headers/AppKit/NSSliderTouchBarItem.h
537
GNUstep/System/Library/Headers/AppKit/NSSound.h
459
GNUstep/System/Library/Headers/AppKit/NSSound.h
Lines 541-567 GNUstep/System/Library/Headers/AppKit/NSSpellChecker.h Link Here
541
GNUstep/System/Library/Headers/AppKit/NSSpellProtocol.h
463
GNUstep/System/Library/Headers/AppKit/NSSpellProtocol.h
542
GNUstep/System/Library/Headers/AppKit/NSSpellServer.h
464
GNUstep/System/Library/Headers/AppKit/NSSpellServer.h
543
GNUstep/System/Library/Headers/AppKit/NSSplitView.h
465
GNUstep/System/Library/Headers/AppKit/NSSplitView.h
466
GNUstep/System/Library/Headers/AppKit/NSSplitViewController.h
467
GNUstep/System/Library/Headers/AppKit/NSSplitViewItem.h
468
GNUstep/System/Library/Headers/AppKit/NSStackView.h
544
GNUstep/System/Library/Headers/AppKit/NSStatusBar.h
469
GNUstep/System/Library/Headers/AppKit/NSStatusBar.h
470
GNUstep/System/Library/Headers/AppKit/NSStatusBarButton.h
545
GNUstep/System/Library/Headers/AppKit/NSStatusItem.h
471
GNUstep/System/Library/Headers/AppKit/NSStatusItem.h
546
GNUstep/System/Library/Headers/AppKit/NSStepper.h
472
GNUstep/System/Library/Headers/AppKit/NSStepper.h
547
GNUstep/System/Library/Headers/AppKit/NSStepperCell.h
473
GNUstep/System/Library/Headers/AppKit/NSStepperCell.h
548
GNUstep/System/Library/Headers/AppKit/NSStepperTouchBarItem.h
474
GNUstep/System/Library/Headers/AppKit/NSStepperTouchBarItem.h
475
GNUstep/System/Library/Headers/AppKit/NSStoryboard.h
476
GNUstep/System/Library/Headers/AppKit/NSStoryboardSegue.h
549
GNUstep/System/Library/Headers/AppKit/NSStringDrawing.h
477
GNUstep/System/Library/Headers/AppKit/NSStringDrawing.h
478
GNUstep/System/Library/Headers/AppKit/NSSwitch.h
550
GNUstep/System/Library/Headers/AppKit/NSTabView.h
479
GNUstep/System/Library/Headers/AppKit/NSTabView.h
480
GNUstep/System/Library/Headers/AppKit/NSTabViewController.h
551
GNUstep/System/Library/Headers/AppKit/NSTabViewItem.h
481
GNUstep/System/Library/Headers/AppKit/NSTabViewItem.h
552
GNUstep/System/Library/Headers/AppKit/NSTableColumn.h
482
GNUstep/System/Library/Headers/AppKit/NSTableColumn.h
553
GNUstep/System/Library/Headers/AppKit/NSTableHeaderCell.h
483
GNUstep/System/Library/Headers/AppKit/NSTableHeaderCell.h
554
GNUstep/System/Library/Headers/AppKit/NSTableHeaderView.h
484
GNUstep/System/Library/Headers/AppKit/NSTableHeaderView.h
555
GNUstep/System/Library/Headers/AppKit/NSTableView.h
485
GNUstep/System/Library/Headers/AppKit/NSTableView.h
556
GNUstep/System/Library/Headers/AppKit/NSText.h
486
GNUstep/System/Library/Headers/AppKit/NSText.h
487
GNUstep/System/Library/Headers/AppKit/NSTextAlternatives.h
557
GNUstep/System/Library/Headers/AppKit/NSTextAttachment.h
488
GNUstep/System/Library/Headers/AppKit/NSTextAttachment.h
489
GNUstep/System/Library/Headers/AppKit/NSTextCheckingClient.h
490
GNUstep/System/Library/Headers/AppKit/NSTextCheckingController.h
558
GNUstep/System/Library/Headers/AppKit/NSTextContainer.h
491
GNUstep/System/Library/Headers/AppKit/NSTextContainer.h
559
GNUstep/System/Library/Headers/AppKit/NSTextField.h
492
GNUstep/System/Library/Headers/AppKit/NSTextField.h
560
GNUstep/System/Library/Headers/AppKit/NSTextFieldCell.h
493
GNUstep/System/Library/Headers/AppKit/NSTextFieldCell.h
494
GNUstep/System/Library/Headers/AppKit/NSTextFinder.h
495
GNUstep/System/Library/Headers/AppKit/NSTextInputClient.h
496
GNUstep/System/Library/Headers/AppKit/NSTextInputContext.h
561
GNUstep/System/Library/Headers/AppKit/NSTextList.h
497
GNUstep/System/Library/Headers/AppKit/NSTextList.h
562
GNUstep/System/Library/Headers/AppKit/NSTextStorage.h
498
GNUstep/System/Library/Headers/AppKit/NSTextStorage.h
563
GNUstep/System/Library/Headers/AppKit/NSTextTable.h
499
GNUstep/System/Library/Headers/AppKit/NSTextTable.h
564
GNUstep/System/Library/Headers/AppKit/NSTextView.h
500
GNUstep/System/Library/Headers/AppKit/NSTextView.h
501
GNUstep/System/Library/Headers/AppKit/NSTitlebarAccessoryViewController.h
565
GNUstep/System/Library/Headers/AppKit/NSTokenField.h
502
GNUstep/System/Library/Headers/AppKit/NSTokenField.h
566
GNUstep/System/Library/Headers/AppKit/NSTokenFieldCell.h
503
GNUstep/System/Library/Headers/AppKit/NSTokenFieldCell.h
567
GNUstep/System/Library/Headers/AppKit/NSToolbar.h
504
GNUstep/System/Library/Headers/AppKit/NSToolbar.h
Lines 574-584 GNUstep/System/Library/Headers/AppKit/NSTrackingArea.h Link Here
574
GNUstep/System/Library/Headers/AppKit/NSTreeController.h
511
GNUstep/System/Library/Headers/AppKit/NSTreeController.h
575
GNUstep/System/Library/Headers/AppKit/NSTreeNode.h
512
GNUstep/System/Library/Headers/AppKit/NSTreeNode.h
576
GNUstep/System/Library/Headers/AppKit/NSUserDefaultsController.h
513
GNUstep/System/Library/Headers/AppKit/NSUserDefaultsController.h
514
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceCompression.h
515
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceItemIdentification.h
516
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceItemSearching.h
517
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceLayout.h
577
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceValidation.h
518
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceValidation.h
578
GNUstep/System/Library/Headers/AppKit/NSView.h
519
GNUstep/System/Library/Headers/AppKit/NSView.h
579
GNUstep/System/Library/Headers/AppKit/NSViewController.h
520
GNUstep/System/Library/Headers/AppKit/NSViewController.h
521
GNUstep/System/Library/Headers/AppKit/NSVisualEffectView.h
580
GNUstep/System/Library/Headers/AppKit/NSWindow.h
522
GNUstep/System/Library/Headers/AppKit/NSWindow.h
581
GNUstep/System/Library/Headers/AppKit/NSWindowController.h
523
GNUstep/System/Library/Headers/AppKit/NSWindowController.h
524
GNUstep/System/Library/Headers/AppKit/NSWindowRestoration.h
582
GNUstep/System/Library/Headers/AppKit/NSWorkspace.h
525
GNUstep/System/Library/Headers/AppKit/NSWorkspace.h
583
GNUstep/System/Library/Headers/AppKit/PSOperators.h
526
GNUstep/System/Library/Headers/AppKit/PSOperators.h
584
GNUstep/System/Library/Headers/Cocoa/Cocoa.h
527
GNUstep/System/Library/Headers/Cocoa/Cocoa.h
Lines 624-636 GNUstep/System/Library/Headers/GNUstepGUI/GSWindowDecorationView.h Link Here
624
GNUstep/System/Library/Headers/GNUstepGUI/GSXibElement.h
567
GNUstep/System/Library/Headers/GNUstepGUI/GSXibElement.h
625
GNUstep/System/Library/Headers/GNUstepGUI/GSXibKeyedUnarchiver.h
568
GNUstep/System/Library/Headers/GNUstepGUI/GSXibKeyedUnarchiver.h
626
GNUstep/System/Library/Headers/GNUstepGUI/GSXibLoading.h
569
GNUstep/System/Library/Headers/GNUstepGUI/GSXibLoading.h
627
GNUstep/System/Library/Headers/GNUstepGUI/GSXibObjectContainer.h
628
GNUstep/System/Library/Headers/GNUstepGUI/IMConnectors.h
570
GNUstep/System/Library/Headers/GNUstepGUI/IMConnectors.h
629
GNUstep/System/Library/Headers/GNUstepGUI/IMCustomObject.h
571
GNUstep/System/Library/Headers/GNUstepGUI/IMCustomObject.h
630
GNUstep/System/Library/Headers/GNUstepGUI/IMLoading.h
572
GNUstep/System/Library/Headers/GNUstepGUI/IMLoading.h
631
GNUstep/System/Library/Headers/gnustep/gui/GMAppKit.h
573
GNUstep/System/Library/Headers/gnustep/gui/GMAppKit.h
632
GNUstep/System/Library/Headers/gnustep/gui/GMArchiver.h
574
GNUstep/System/Library/Headers/gnustep/gui/GMArchiver.h
633
GNUstep/System/Library/Headers/gnustep/gui/GSAnimator.h
575
GNUstep/System/Library/Headers/gnustep/gui/GSAnimator.h
576
GNUstep/System/Library/Headers/gnustep/gui/GSAutoLayoutVFLParser.h
634
GNUstep/System/Library/Headers/gnustep/gui/GSDisplayServer.h
577
GNUstep/System/Library/Headers/gnustep/gui/GSDisplayServer.h
635
GNUstep/System/Library/Headers/gnustep/gui/GSDragView.h
578
GNUstep/System/Library/Headers/gnustep/gui/GSDragView.h
636
GNUstep/System/Library/Headers/gnustep/gui/GSEPSPrintOperation.h
579
GNUstep/System/Library/Headers/gnustep/gui/GSEPSPrintOperation.h
Lines 670-676 GNUstep/System/Library/Headers/gnustep/gui/GSWindowDecorationView.h Link Here
670
GNUstep/System/Library/Headers/gnustep/gui/GSXibElement.h
613
GNUstep/System/Library/Headers/gnustep/gui/GSXibElement.h
671
GNUstep/System/Library/Headers/gnustep/gui/GSXibKeyedUnarchiver.h
614
GNUstep/System/Library/Headers/gnustep/gui/GSXibKeyedUnarchiver.h
672
GNUstep/System/Library/Headers/gnustep/gui/GSXibLoading.h
615
GNUstep/System/Library/Headers/gnustep/gui/GSXibLoading.h
673
GNUstep/System/Library/Headers/gnustep/gui/GSXibObjectContainer.h
674
GNUstep/System/Library/Headers/gnustep/gui/IMConnectors.h
616
GNUstep/System/Library/Headers/gnustep/gui/IMConnectors.h
675
GNUstep/System/Library/Headers/gnustep/gui/IMCustomObject.h
617
GNUstep/System/Library/Headers/gnustep/gui/IMCustomObject.h
676
GNUstep/System/Library/Headers/gnustep/gui/IMLoading.h
618
GNUstep/System/Library/Headers/gnustep/gui/IMLoading.h
Lines 844-851 GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/ Link Here
844
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/German.lproj/Localizable.strings
786
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/German.lproj/Localizable.strings
845
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Info-gnustep.plist
787
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Info-gnustep.plist
846
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Italian.lproj/Localizable.strings
788
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Italian.lproj/Localizable.strings
789
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Japanese.lproj/Localizable.strings
847
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Korean.lproj/Localizable.strings
790
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Korean.lproj/Localizable.strings
848
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Lojban.lproj/Localizable.strings
791
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Lojban.lproj/Localizable.strings
792
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Polish.lproj/Localizable.strings
849
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.classes
793
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.classes
850
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.info
794
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.info
851
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/objects.gorm
795
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/objects.gorm
Lines 866-872 GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/ Link Here
866
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSToolbarCustomizationPalette.gorm/objects.gorm
810
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSToolbarCustomizationPalette.gorm/objects.gorm
867
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/Localizable.strings
811
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/Localizable.strings
868
GNUstep/System/Library/Libraries/libgnustep-gui.so
812
GNUstep/System/Library/Libraries/libgnustep-gui.so
869
GNUstep/System/Library/Libraries/libgnustep-gui.so.%%BASEVERSION%%
813
GNUstep/System/Library/Libraries/libgnustep-gui.so.0
870
GNUstep/System/Library/Libraries/libgnustep-gui.so.%%VERSION%%
814
GNUstep/System/Library/Libraries/libgnustep-gui.so.%%VERSION%%
871
GNUstep/System/Library/Makefiles/Additional/gui.make
815
GNUstep/System/Library/Makefiles/Additional/gui.make
872
GNUstep/System/Library/PostScript/GSProlog.ps
816
GNUstep/System/Library/PostScript/GSProlog.ps
Lines 892-912 GNUstep/System/Tools/make_services Link Here
892
GNUstep/System/Tools/say
836
GNUstep/System/Tools/say
893
GNUstep/System/Tools/set_show_service
837
GNUstep/System/Tools/set_show_service
894
@dir GNUstep/System/Library/Themes
838
@dir GNUstep/System/Library/Themes
895
GNUstep/System/Library/Documentation/User/Gui/DefaultsSummary.html
896
GNUstep/System/Library/Documentation/User/Gui/GuiUser.igsdoc
897
GNUstep/System/Library/Documentation/User/Gui/KeyboardSetup.html
898
GNUstep/System/Library/Documentation/User/Gui/LanguageSetup.html
899
GNUstep/System/Library/Documentation/User/Gui/dependencies
900
GNUstep/System/Library/Headers/AppKit/NSAccessibility.h
901
GNUstep/System/Library/Headers/AppKit/NSAccessibilityConstants.h
902
GNUstep/System/Library/Headers/AppKit/NSGestureRecognizer.h
903
GNUstep/System/Library/Headers/AppKit/NSPasteboardItem.h
904
GNUstep/System/Library/Headers/AppKit/NSRunningApplication.h
905
GNUstep/System/Library/Headers/AppKit/NSSharingService.h
906
GNUstep/System/Library/Headers/AppKit/NSTextAlternatives.h
907
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceItemIdentification.h
908
GNUstep/System/Library/Headers/AppKit/NSUserInterfaceLayout.h
909
GNUstep/System/Library/Headers/AppKit/NSVisualEffectView.h
910
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Japanese.lproj/Localizable.strings
911
GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Polish.lproj/Localizable.strings
912

Return to bug 276148