Date: Tue, 19 Mar 2024 14:20:30 GMT From: Robert Clausecker <fuz@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: d5b9ad442b27 - main - x11-toolkits/gnustep-gui: update to 0.30.0 Message-ID: <202403191420.42JEKUeW075555@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=d5b9ad442b275e09cd6e3fa9a57fd95ec0ce9592 commit d5b9ad442b275e09cd6e3fa9a57fd95ec0ce9592 Author: Joran Rood <joran@rood.me> AuthorDate: 2024-03-14 10:13:59 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-03-19 14:18:28 +0000 x11-toolkits/gnustep-gui: update to 0.30.0 Changelog: https://github.com/gnustep/libs-gui/releases/tag/gui-0_30_0 PR: 276148 --- x11-toolkits/gnustep-gui/Makefile | 32 ++- x11-toolkits/gnustep-gui/distinfo | 6 +- .../gnustep-gui/files/patch-doc-makefile-headers | 16 ++ x11-toolkits/gnustep-gui/files/patch-icu68 | 29 --- x11-toolkits/gnustep-gui/pkg-plist | 266 ++++++++------------- 5 files changed, 130 insertions(+), 219 deletions(-) diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile index c0c34c32a94d..0296d5278787 100644 --- a/x11-toolkits/gnustep-gui/Makefile +++ b/x11-toolkits/gnustep-gui/Makefile @@ -1,7 +1,6 @@ PORTNAME= gnustep-gui DISTVERSIONPREFIX= gui- -DISTVERSION= 0_28_0 -PORTREVISION= 8 +DISTVERSION= 0_30_0 CATEGORIES= x11-toolkits gnustep MAINTAINER= ports@FreeBSD.org @@ -11,13 +10,13 @@ WWW= http://www.gnustep.org/ LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi -LIB_DEPENDS+= libtiff.so:graphics/tiff -LIB_DEPENDS+= libpng.so:graphics/png -LIB_DEPENDS+= libgif.so:graphics/giflib -LIB_DEPENDS+= libicui18n.so:devel/icu -LIB_DEPENDS+= libsndfile.so:audio/libsndfile -LIB_DEPENDS+= libao.so:audio/libao -LIB_DEPENDS+= libflite.so:audio/flite +LIB_DEPENDS+= libtiff.so:graphics/tiff \ + libpng.so:graphics/png \ + libgif.so:graphics/giflib \ + libicui18n.so:devel/icu \ + libsndfile.so:audio/libsndfile \ + libao.so:audio/libao \ + libflite.so:audio/flite USES= gnustep jpeg pkgconfig xorg USE_GNUSTEP= base build @@ -28,13 +27,13 @@ GH_ACCOUNT= gnustep GH_PROJECT= libs-gui GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-tiff-library=${LOCALBASE}/lib -CONFIGURE_ARGS+= --with-tiff-include=${LOCALBASE}/include -CONFIGURE_ARGS+= --with-jpeg-library=${LOCALBASE}/lib -CONFIGURE_ARGS+= --with-jpeg-include=${LOCALBASE}/include -CONFIGURE_ARGS+= --with-x -CONFIGURE_ARGS+= --with-x-include=${LOCALBASE}/include -CONFIGURE_ARGS+= --with-x-include=${LOCALBASE}/lib +CONFIGURE_ARGS+= --with-tiff-library=${LOCALBASE}/lib \ + --with-tiff-include=${LOCALBASE}/include \ + --with-jpeg-library=${LOCALBASE}/lib \ + --with-jpeg-include=${LOCALBASE}/include \ + --with-x \ + --with-x-include=${LOCALBASE}/include \ + --with-x-include=${LOCALBASE}/lib MAKE_FLAGS+= OPTFLAG="${CFLAGS}" @@ -55,7 +54,6 @@ ASPELL_CONFIGURE_ENABLE= aspell USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} post-patch: - ${REINPLACE_CMD} -e "s|libpng/png.h|png.h|" ${WRKSRC}/configure ${REINPLACE_CMD} -e "s|doc=no|doc=yes|" ${WRKSRC}/GNUmakefile pre-configure: diff --git a/x11-toolkits/gnustep-gui/distinfo b/x11-toolkits/gnustep-gui/distinfo index 2014e01e76a1..13867cc94b2b 100644 --- a/x11-toolkits/gnustep-gui/distinfo +++ b/x11-toolkits/gnustep-gui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1613252261 -SHA256 (gnustep-libs-gui-gui-0_28_0_GH0.tar.gz) = 24023400c8bd854acca5acf90fb1892c9dcb410884565189d425a3e67e182d66 -SIZE (gnustep-libs-gui-gui-0_28_0_GH0.tar.gz) = 2933423 +TIMESTAMP = 1704118298 +SHA256 (gnustep-libs-gui-gui-0_30_0_GH0.tar.gz) = 4bb7dc478957d26ee07c72cc83a34689e88b2c60159d2447347db0c36ddd051f +SIZE (gnustep-libs-gui-gui-0_30_0_GH0.tar.gz) = 3045228 diff --git a/x11-toolkits/gnustep-gui/files/patch-doc-makefile-headers b/x11-toolkits/gnustep-gui/files/patch-doc-makefile-headers new file mode 100644 index 000000000000..be5919908a93 --- /dev/null +++ b/x11-toolkits/gnustep-gui/files/patch-doc-makefile-headers @@ -0,0 +1,16 @@ +--- Source/DocMakefile ++++ Source/DocMakefile +@@ -72,13 +72,8 @@ NSCell.h \ + NSCIImageRep.h \ + NSClickGestureRecognizer.h \ + NSClipView.h \ +-NSCollectionViewCompositionalLayout.h \ +-NSCollectionViewFlowLayout.h \ +-NSCollectionViewGridLayout.h \ + NSCollectionView.h \ + NSCollectionViewItem.h \ +-NSCollectionViewLayout.h \ +-NSCollectionViewTransitionLayout.h \ + NSColor.h \ + NSColorList.h \ + NSColorPanel.h \ diff --git a/x11-toolkits/gnustep-gui/files/patch-icu68 b/x11-toolkits/gnustep-gui/files/patch-icu68 deleted file mode 100644 index 5852e9c8e8a2..000000000000 --- a/x11-toolkits/gnustep-gui/files/patch-icu68 +++ /dev/null @@ -1,29 +0,0 @@ -Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844 - -GSCharacterPanel.m:81:10: error: use of undeclared identifier 'TRUE' - return TRUE; - ^ -GSCharacterPanel.m:106:10: error: use of undeclared identifier 'TRUE' - return TRUE; - ^ - ---- Source/GSCharacterPanel.m.orig 2019-01-06 22:00:38 UTC -+++ Source/GSCharacterPanel.m -@@ -78,7 +78,7 @@ - static UBool enumCharNamesFn(void *context, UChar32 code, UCharNameChoice nameChoice, const char *name, int32_t length) - { - [(NSMutableIndexSet*)context addIndex: (NSUInteger)code]; -- return TRUE; -+ return true; - } - - static NSIndexSet *AssignedCodepoints() -@@ -103,7 +103,7 @@ static UBool searchCharNamesFn(void *context, UChar32 - { - [ctx->set addIndex: (NSUInteger)code]; - } -- return TRUE; -+ return true; - } - - static NSIndexSet *CodepointsWithNameContainingSubstring(NSString *str) diff --git a/x11-toolkits/gnustep-gui/pkg-plist b/x11-toolkits/gnustep-gui/pkg-plist index b462974d583d..2b03af268d2b 100644 --- a/x11-toolkits/gnustep-gui/pkg-plist +++ b/x11-toolkits/gnustep-gui/pkg-plist @@ -1,6 +1,7 @@ GNUstep/System/Applications/GSSpeechServer.app/GSSpeechServer GNUstep/System/Applications/GSSpeechServer.app/Resources/GSSpeechServer.desktop GNUstep/System/Applications/GSSpeechServer.app/Resources/Info-gnustep.plist +GNUstep/System/Applications/GSSpeechServer.app/Resources/SpeechSynthesizer.png GNUstep/System/Applications/GSSpeechServer.app/stamp.make GNUstep/System/Library/Bundles/AudioOutput.nssound/AudioOutput GNUstep/System/Library/Bundles/AudioOutput.nssound/Resources/Info-gnustep.plist @@ -45,8 +46,6 @@ GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/Functions.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTable.gsdoc @@ -107,212 +106,100 @@ GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/MainIndex.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSActionCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSActionCell.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAccessibilityProtocols.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAccessibilityProtocols.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSApplication.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSApplication.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBox.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBox.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowser.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowser.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButton.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButton.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSClipView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSClipView.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCollectionView.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCollectionView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorList.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorList.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorWell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorWell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBox.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBox.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicking.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicking.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCursor.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCursor.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLink.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLink.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocument.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocument.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDrawer.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDrawer.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEvent.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEvent.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDragging.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDragging.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFileWrapperExtensions.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFileWrapperExtensions.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontManager.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSForm.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSForm.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFormCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFormCell.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphGenerator.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphGenerator.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphInfo.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGlyphInfo.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImage.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImage.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSKeyValueBinding.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSKeyValueBinding.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuView.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNib.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNib.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGL.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGL.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGLView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGLView.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNibLoading.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNibLoading.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPanel.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrinter.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrinter.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSResponder.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSResponder.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScreen.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScreen.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScrollView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScrollView.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScroller.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScroller.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSelection.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSelection.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSlider.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSlider.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSound.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSound.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSplitView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSplitView.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepper.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepper.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSeguePerforming.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSeguePerforming.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellProtocol.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellProtocol.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabView.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextCheckingClient.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextCheckingClient.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextView.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextView.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbar.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbar.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextInputClient.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextInputClient.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemIdentification.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemIdentification.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemSearching.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceItemSearching.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceValidation.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSUserInterfaceValidation.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowController.gsdoc -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowController.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowRestoration.gsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowRestoration.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/OrderedSymbolDeclarations.plist @@ -333,6 +220,11 @@ GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/dependencies +%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/DefaultsSummary.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser.igsdoc +%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/KeyboardSetup.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/LanguageSetup.html +%%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/dependencies %%PORTDOCS%%GNUstep/System/Library/Documentation/info/AppKit.info GNUstep/System/Library/Documentation/man/man1/GSSpeechServer.1.gz %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/gclose.1.gz @@ -343,11 +235,13 @@ GNUstep/System/Library/Documentation/man/man1/say.1.gz %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/set_show_service.1.gz GNUstep/System/Library/Headers/AppKit/AppKit.h GNUstep/System/Library/Headers/AppKit/AppKitDefines.h +GNUstep/System/Library/Headers/AppKit/AppKitErrors.h GNUstep/System/Library/Headers/AppKit/AppKitExceptions.h GNUstep/System/Library/Headers/AppKit/DPSOperators.h GNUstep/System/Library/Headers/AppKit/GMAppKit.h GNUstep/System/Library/Headers/AppKit/GMArchiver.h GNUstep/System/Library/Headers/AppKit/GSAnimator.h +GNUstep/System/Library/Headers/AppKit/GSAutoLayoutVFLParser.h GNUstep/System/Library/Headers/AppKit/GSDisplayServer.h GNUstep/System/Library/Headers/AppKit/GSDragView.h GNUstep/System/Library/Headers/AppKit/GSEPSPrintOperation.h @@ -387,10 +281,15 @@ GNUstep/System/Library/Headers/AppKit/GSWindowDecorationView.h GNUstep/System/Library/Headers/AppKit/GSXibElement.h GNUstep/System/Library/Headers/AppKit/GSXibKeyedUnarchiver.h GNUstep/System/Library/Headers/AppKit/GSXibLoading.h -GNUstep/System/Library/Headers/AppKit/GSXibObjectContainer.h GNUstep/System/Library/Headers/AppKit/IMConnectors.h GNUstep/System/Library/Headers/AppKit/IMCustomObject.h GNUstep/System/Library/Headers/AppKit/IMLoading.h +GNUstep/System/Library/Headers/AppKit/NSAccessibility.h +GNUstep/System/Library/Headers/AppKit/NSAccessibilityConstants.h +GNUstep/System/Library/Headers/AppKit/NSAccessibilityCustomAction.h +GNUstep/System/Library/Headers/AppKit/NSAccessibilityCustomRotor.h +GNUstep/System/Library/Headers/AppKit/NSAccessibilityElement.h +GNUstep/System/Library/Headers/AppKit/NSAccessibilityProtocols.h GNUstep/System/Library/Headers/AppKit/NSActionCell.h GNUstep/System/Library/Headers/AppKit/NSAffineTransform.h GNUstep/System/Library/Headers/AppKit/NSAlert.h @@ -449,16 +348,20 @@ GNUstep/System/Library/Headers/AppKit/NSEvent.h GNUstep/System/Library/Headers/AppKit/NSFileWrapper.h GNUstep/System/Library/Headers/AppKit/NSFileWrapperExtensions.h GNUstep/System/Library/Headers/AppKit/NSFont.h +GNUstep/System/Library/Headers/AppKit/NSFontAssetRequest.h GNUstep/System/Library/Headers/AppKit/NSFontCollection.h GNUstep/System/Library/Headers/AppKit/NSFontDescriptor.h GNUstep/System/Library/Headers/AppKit/NSFontManager.h GNUstep/System/Library/Headers/AppKit/NSFontPanel.h GNUstep/System/Library/Headers/AppKit/NSForm.h GNUstep/System/Library/Headers/AppKit/NSFormCell.h +GNUstep/System/Library/Headers/AppKit/NSGestureRecognizer.h GNUstep/System/Library/Headers/AppKit/NSGlyphGenerator.h +GNUstep/System/Library/Headers/AppKit/NSGlyphInfo.h GNUstep/System/Library/Headers/AppKit/NSGradient.h GNUstep/System/Library/Headers/AppKit/NSGraphics.h GNUstep/System/Library/Headers/AppKit/NSGraphicsContext.h +GNUstep/System/Library/Headers/AppKit/NSGridView.h GNUstep/System/Library/Headers/AppKit/NSGroupTouchBarItem.h GNUstep/System/Library/Headers/AppKit/NSHelpManager.h GNUstep/System/Library/Headers/AppKit/NSHelpPanel.h @@ -470,11 +373,15 @@ GNUstep/System/Library/Headers/AppKit/NSInputManager.h GNUstep/System/Library/Headers/AppKit/NSInputServer.h GNUstep/System/Library/Headers/AppKit/NSInterfaceStyle.h GNUstep/System/Library/Headers/AppKit/NSKeyValueBinding.h +GNUstep/System/Library/Headers/AppKit/NSLayoutAnchor.h +GNUstep/System/Library/Headers/AppKit/NSLayoutConstraint.h +GNUstep/System/Library/Headers/AppKit/NSLayoutGuide.h GNUstep/System/Library/Headers/AppKit/NSLayoutManager.h GNUstep/System/Library/Headers/AppKit/NSLevelIndicator.h GNUstep/System/Library/Headers/AppKit/NSLevelIndicatorCell.h GNUstep/System/Library/Headers/AppKit/NSMagnificationGestureRecognizer.h GNUstep/System/Library/Headers/AppKit/NSMatrix.h +GNUstep/System/Library/Headers/AppKit/NSMediaLibraryBrowserController.h GNUstep/System/Library/Headers/AppKit/NSMenu.h GNUstep/System/Library/Headers/AppKit/NSMenuItem.h GNUstep/System/Library/Headers/AppKit/NSMenuItemCell.h @@ -496,11 +403,18 @@ GNUstep/System/Library/Headers/AppKit/NSPDFImageRep.h GNUstep/System/Library/Headers/AppKit/NSPDFInfo.h GNUstep/System/Library/Headers/AppKit/NSPDFPanel.h GNUstep/System/Library/Headers/AppKit/NSPICTImageRep.h +GNUstep/System/Library/Headers/AppKit/NSPageController.h GNUstep/System/Library/Headers/AppKit/NSPageLayout.h GNUstep/System/Library/Headers/AppKit/NSPanGestureRecognizer.h GNUstep/System/Library/Headers/AppKit/NSPanel.h GNUstep/System/Library/Headers/AppKit/NSParagraphStyle.h GNUstep/System/Library/Headers/AppKit/NSPasteboard.h +GNUstep/System/Library/Headers/AppKit/NSPasteboardItem.h +GNUstep/System/Library/Headers/AppKit/NSPathCell.h +GNUstep/System/Library/Headers/AppKit/NSPathComponentCell.h +GNUstep/System/Library/Headers/AppKit/NSPathControl.h +GNUstep/System/Library/Headers/AppKit/NSPathControlItem.h +GNUstep/System/Library/Headers/AppKit/NSPersistentDocument.h GNUstep/System/Library/Headers/AppKit/NSPickerTouchBarItem.h GNUstep/System/Library/Headers/AppKit/NSPopUpButton.h GNUstep/System/Library/Headers/AppKit/NSPopUpButtonCell.h @@ -519,19 +433,27 @@ GNUstep/System/Library/Headers/AppKit/NSRotationGestureRecognizer.h GNUstep/System/Library/Headers/AppKit/NSRuleEditor.h GNUstep/System/Library/Headers/AppKit/NSRulerMarker.h GNUstep/System/Library/Headers/AppKit/NSRulerView.h +GNUstep/System/Library/Headers/AppKit/NSRunningApplication.h GNUstep/System/Library/Headers/AppKit/NSSavePanel.h GNUstep/System/Library/Headers/AppKit/NSScreen.h GNUstep/System/Library/Headers/AppKit/NSScrollView.h GNUstep/System/Library/Headers/AppKit/NSScroller.h +GNUstep/System/Library/Headers/AppKit/NSScrubber.h +GNUstep/System/Library/Headers/AppKit/NSScrubberItemView.h +GNUstep/System/Library/Headers/AppKit/NSScrubberLayout.h GNUstep/System/Library/Headers/AppKit/NSSearchField.h GNUstep/System/Library/Headers/AppKit/NSSearchFieldCell.h GNUstep/System/Library/Headers/AppKit/NSSecureTextField.h GNUstep/System/Library/Headers/AppKit/NSSegmentedCell.h GNUstep/System/Library/Headers/AppKit/NSSegmentedControl.h +GNUstep/System/Library/Headers/AppKit/NSSeguePerforming.h GNUstep/System/Library/Headers/AppKit/NSSelection.h GNUstep/System/Library/Headers/AppKit/NSShadow.h +GNUstep/System/Library/Headers/AppKit/NSSharingService.h +GNUstep/System/Library/Headers/AppKit/NSSharingServicePickerToolbarItem.h GNUstep/System/Library/Headers/AppKit/NSSharingServicePickerTouchBarItem.h GNUstep/System/Library/Headers/AppKit/NSSlider.h +GNUstep/System/Library/Headers/AppKit/NSSliderAccessory.h GNUstep/System/Library/Headers/AppKit/NSSliderCell.h GNUstep/System/Library/Headers/AppKit/NSSliderTouchBarItem.h GNUstep/System/Library/Headers/AppKit/NSSound.h @@ -541,27 +463,42 @@ GNUstep/System/Library/Headers/AppKit/NSSpellChecker.h GNUstep/System/Library/Headers/AppKit/NSSpellProtocol.h GNUstep/System/Library/Headers/AppKit/NSSpellServer.h GNUstep/System/Library/Headers/AppKit/NSSplitView.h +GNUstep/System/Library/Headers/AppKit/NSSplitViewController.h +GNUstep/System/Library/Headers/AppKit/NSSplitViewItem.h +GNUstep/System/Library/Headers/AppKit/NSStackView.h GNUstep/System/Library/Headers/AppKit/NSStatusBar.h +GNUstep/System/Library/Headers/AppKit/NSStatusBarButton.h GNUstep/System/Library/Headers/AppKit/NSStatusItem.h GNUstep/System/Library/Headers/AppKit/NSStepper.h GNUstep/System/Library/Headers/AppKit/NSStepperCell.h GNUstep/System/Library/Headers/AppKit/NSStepperTouchBarItem.h +GNUstep/System/Library/Headers/AppKit/NSStoryboard.h +GNUstep/System/Library/Headers/AppKit/NSStoryboardSegue.h GNUstep/System/Library/Headers/AppKit/NSStringDrawing.h +GNUstep/System/Library/Headers/AppKit/NSSwitch.h GNUstep/System/Library/Headers/AppKit/NSTabView.h +GNUstep/System/Library/Headers/AppKit/NSTabViewController.h GNUstep/System/Library/Headers/AppKit/NSTabViewItem.h GNUstep/System/Library/Headers/AppKit/NSTableColumn.h GNUstep/System/Library/Headers/AppKit/NSTableHeaderCell.h GNUstep/System/Library/Headers/AppKit/NSTableHeaderView.h GNUstep/System/Library/Headers/AppKit/NSTableView.h GNUstep/System/Library/Headers/AppKit/NSText.h +GNUstep/System/Library/Headers/AppKit/NSTextAlternatives.h GNUstep/System/Library/Headers/AppKit/NSTextAttachment.h +GNUstep/System/Library/Headers/AppKit/NSTextCheckingClient.h +GNUstep/System/Library/Headers/AppKit/NSTextCheckingController.h GNUstep/System/Library/Headers/AppKit/NSTextContainer.h GNUstep/System/Library/Headers/AppKit/NSTextField.h GNUstep/System/Library/Headers/AppKit/NSTextFieldCell.h +GNUstep/System/Library/Headers/AppKit/NSTextFinder.h +GNUstep/System/Library/Headers/AppKit/NSTextInputClient.h +GNUstep/System/Library/Headers/AppKit/NSTextInputContext.h GNUstep/System/Library/Headers/AppKit/NSTextList.h GNUstep/System/Library/Headers/AppKit/NSTextStorage.h GNUstep/System/Library/Headers/AppKit/NSTextTable.h GNUstep/System/Library/Headers/AppKit/NSTextView.h +GNUstep/System/Library/Headers/AppKit/NSTitlebarAccessoryViewController.h GNUstep/System/Library/Headers/AppKit/NSTokenField.h GNUstep/System/Library/Headers/AppKit/NSTokenFieldCell.h GNUstep/System/Library/Headers/AppKit/NSToolbar.h @@ -574,11 +511,17 @@ GNUstep/System/Library/Headers/AppKit/NSTrackingArea.h GNUstep/System/Library/Headers/AppKit/NSTreeController.h GNUstep/System/Library/Headers/AppKit/NSTreeNode.h GNUstep/System/Library/Headers/AppKit/NSUserDefaultsController.h +GNUstep/System/Library/Headers/AppKit/NSUserInterfaceCompression.h +GNUstep/System/Library/Headers/AppKit/NSUserInterfaceItemIdentification.h +GNUstep/System/Library/Headers/AppKit/NSUserInterfaceItemSearching.h +GNUstep/System/Library/Headers/AppKit/NSUserInterfaceLayout.h GNUstep/System/Library/Headers/AppKit/NSUserInterfaceValidation.h GNUstep/System/Library/Headers/AppKit/NSView.h GNUstep/System/Library/Headers/AppKit/NSViewController.h +GNUstep/System/Library/Headers/AppKit/NSVisualEffectView.h GNUstep/System/Library/Headers/AppKit/NSWindow.h GNUstep/System/Library/Headers/AppKit/NSWindowController.h +GNUstep/System/Library/Headers/AppKit/NSWindowRestoration.h GNUstep/System/Library/Headers/AppKit/NSWorkspace.h GNUstep/System/Library/Headers/AppKit/PSOperators.h GNUstep/System/Library/Headers/Cocoa/Cocoa.h @@ -624,13 +567,13 @@ GNUstep/System/Library/Headers/GNUstepGUI/GSWindowDecorationView.h GNUstep/System/Library/Headers/GNUstepGUI/GSXibElement.h GNUstep/System/Library/Headers/GNUstepGUI/GSXibKeyedUnarchiver.h GNUstep/System/Library/Headers/GNUstepGUI/GSXibLoading.h -GNUstep/System/Library/Headers/GNUstepGUI/GSXibObjectContainer.h GNUstep/System/Library/Headers/GNUstepGUI/IMConnectors.h GNUstep/System/Library/Headers/GNUstepGUI/IMCustomObject.h GNUstep/System/Library/Headers/GNUstepGUI/IMLoading.h GNUstep/System/Library/Headers/gnustep/gui/GMAppKit.h GNUstep/System/Library/Headers/gnustep/gui/GMArchiver.h GNUstep/System/Library/Headers/gnustep/gui/GSAnimator.h +GNUstep/System/Library/Headers/gnustep/gui/GSAutoLayoutVFLParser.h GNUstep/System/Library/Headers/gnustep/gui/GSDisplayServer.h GNUstep/System/Library/Headers/gnustep/gui/GSDragView.h GNUstep/System/Library/Headers/gnustep/gui/GSEPSPrintOperation.h @@ -670,7 +613,6 @@ GNUstep/System/Library/Headers/gnustep/gui/GSWindowDecorationView.h GNUstep/System/Library/Headers/gnustep/gui/GSXibElement.h GNUstep/System/Library/Headers/gnustep/gui/GSXibKeyedUnarchiver.h GNUstep/System/Library/Headers/gnustep/gui/GSXibLoading.h -GNUstep/System/Library/Headers/gnustep/gui/GSXibObjectContainer.h GNUstep/System/Library/Headers/gnustep/gui/IMConnectors.h GNUstep/System/Library/Headers/gnustep/gui/IMCustomObject.h GNUstep/System/Library/Headers/gnustep/gui/IMLoading.h @@ -844,8 +786,10 @@ GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/ GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/German.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Info-gnustep.plist GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Italian.lproj/Localizable.strings +GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Japanese.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Korean.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Lojban.lproj/Localizable.strings +GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Polish.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/objects.gorm @@ -866,7 +810,7 @@ GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/ GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSToolbarCustomizationPalette.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/Localizable.strings GNUstep/System/Library/Libraries/libgnustep-gui.so -GNUstep/System/Library/Libraries/libgnustep-gui.so.%%BASEVERSION%% +GNUstep/System/Library/Libraries/libgnustep-gui.so.0 GNUstep/System/Library/Libraries/libgnustep-gui.so.%%VERSION%% GNUstep/System/Library/Makefiles/Additional/gui.make GNUstep/System/Library/PostScript/GSProlog.ps @@ -892,21 +836,3 @@ GNUstep/System/Tools/make_services GNUstep/System/Tools/say GNUstep/System/Tools/set_show_service @dir GNUstep/System/Library/Themes -GNUstep/System/Library/Documentation/User/Gui/DefaultsSummary.html -GNUstep/System/Library/Documentation/User/Gui/GuiUser.igsdoc -GNUstep/System/Library/Documentation/User/Gui/KeyboardSetup.html -GNUstep/System/Library/Documentation/User/Gui/LanguageSetup.html -GNUstep/System/Library/Documentation/User/Gui/dependencies -GNUstep/System/Library/Headers/AppKit/NSAccessibility.h -GNUstep/System/Library/Headers/AppKit/NSAccessibilityConstants.h -GNUstep/System/Library/Headers/AppKit/NSGestureRecognizer.h -GNUstep/System/Library/Headers/AppKit/NSPasteboardItem.h -GNUstep/System/Library/Headers/AppKit/NSRunningApplication.h -GNUstep/System/Library/Headers/AppKit/NSSharingService.h -GNUstep/System/Library/Headers/AppKit/NSTextAlternatives.h -GNUstep/System/Library/Headers/AppKit/NSUserInterfaceItemIdentification.h -GNUstep/System/Library/Headers/AppKit/NSUserInterfaceLayout.h -GNUstep/System/Library/Headers/AppKit/NSVisualEffectView.h -GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Japanese.lproj/Localizable.strings -GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Polish.lproj/Localizable.strings -
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403191420.42JEKUeW075555>