mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 17:52:42 +00:00
Next bit of #include -> #import replacement.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30029 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9f4fd26405
commit
00ab729bdd
13 changed files with 88 additions and 64 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,4 +1,19 @@
|
|||
2010-03-23 Fred Kiefer <FredKiefer@gmx.de>
|
||||
2010-03-24 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/AppKit/AppKitExceptions.h,
|
||||
* Headers/AppKit/NSAttributedString.h,
|
||||
* Headers/AppKit/NSBezierPath.h,
|
||||
* Headers/AppKit/DPSOperators.h,
|
||||
* Headers/AppKit/NSArrayController.h,
|
||||
* Headers/AppKit/NSAnimation.h,
|
||||
* Source/NSBrowser.m,
|
||||
* Source/NSAffineTransform.m,
|
||||
* Source/GSTheme.m,
|
||||
* Source/NSBezierPath.m,
|
||||
* Source/GSThemeTools.m,
|
||||
* Source/NSGraphicsContext.m: Next bit of #include -> #import replacement.
|
||||
|
||||
2010-03-23 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/AppKit/NSUserInterfaceValidation.h
|
||||
* Headers/AppKit/NSControl.h
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#define __AppKit_AppKitExceptions_h__
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/AppKitDefines.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
|
||||
@class NSString;
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#define _DPSOperators_h_INCLUDE
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSGraphicsContext.h>
|
||||
#import <AppKit/NSGraphicsContext.h>
|
||||
|
||||
#define GSCTXT NSGraphicsContext
|
||||
|
||||
|
|
|
@ -29,13 +29,13 @@
|
|||
#ifndef _GNUstep_H_NSAnimation_
|
||||
#define _GNUstep_H_NSAnimation_
|
||||
|
||||
#include <GNUstepBase/GSVersionMacros.h>
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4, GS_API_LATEST)
|
||||
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
#include <GNUstepGUI/GSAnimator.h>
|
||||
#import <GNUstepGUI/GSAnimator.h>
|
||||
|
||||
@class NSString;
|
||||
@class NSArray;
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#ifndef _GNUstep_H_NSArrayController
|
||||
#define _GNUstep_H_NSArrayController
|
||||
|
||||
#include <AppKit/NSObjectController.h>
|
||||
#import <AppKit/NSObjectController.h>
|
||||
|
||||
#if OS_API_VERSION(100300,GS_API_LATEST)
|
||||
|
||||
|
|
|
@ -33,13 +33,13 @@
|
|||
|
||||
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
||||
|
||||
#include <Foundation/NSAttributedString.h>
|
||||
#include <Foundation/NSRange.h>
|
||||
#include <AppKit/NSFontManager.h>
|
||||
#import <Foundation/NSAttributedString.h>
|
||||
#import <Foundation/NSRange.h>
|
||||
#import <AppKit/NSFontManager.h>
|
||||
// for NSWritingDirection
|
||||
#include <AppKit/NSParagraphStyle.h>
|
||||
#include <AppKit/NSText.h>
|
||||
#include <AppKit/AppKitDefines.h>
|
||||
#import <AppKit/NSParagraphStyle.h>
|
||||
#import <AppKit/NSText.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
|
||||
@class NSTextAttachment;
|
||||
@class NSFileWrapper;
|
||||
|
|
|
@ -29,8 +29,10 @@
|
|||
#define BEZIERPATH_H
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <AppKit/NSFont.h>
|
||||
//#import <Foundation/Foundation.h>
|
||||
#import <Foundation/NSGeometry.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <AppKit/NSFont.h>
|
||||
|
||||
@class NSAffineTransform;
|
||||
@class NSImage;
|
||||
|
|
|
@ -27,7 +27,9 @@
|
|||
*/
|
||||
|
||||
#import <Foundation/NSBundle.h>
|
||||
#import <Foundation/NSDebug.h>
|
||||
#import <Foundation/NSDictionary.h>
|
||||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSFileManager.h>
|
||||
#import <Foundation/NSInvocation.h>
|
||||
#import <Foundation/NSMapTable.h>
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSException.h>
|
||||
#import "AppKit/NSBezierPath.h"
|
||||
#import "AppKit/NSGraphics.h"
|
||||
#import "AppKit/NSImage.h"
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSDebug.h>
|
||||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
|
|
|
@ -28,13 +28,14 @@
|
|||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "AppKit/NSAffineTransform.h"
|
||||
#include "AppKit/NSBezierPath.h"
|
||||
#include "AppKit/NSFont.h"
|
||||
#include "AppKit/NSImage.h"
|
||||
#include "AppKit/PSOperators.h"
|
||||
#include "GNUstepGUI/GSFontInfo.h"
|
||||
#include "GSGuiPrivate.h"
|
||||
#import <Foundation/NSDebug.h>
|
||||
#import "AppKit/NSAffineTransform.h"
|
||||
#import "AppKit/NSBezierPath.h"
|
||||
#import "AppKit/NSFont.h"
|
||||
#import "AppKit/NSImage.h"
|
||||
#import "AppKit/PSOperators.h"
|
||||
#import "GNUstepGUI/GSFontInfo.h"
|
||||
#import "GSGuiPrivate.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
@ -78,7 +79,7 @@ typedef struct _PathElement
|
|||
#ifdef GSIArray
|
||||
#undef GSIArray
|
||||
#endif
|
||||
#include <GNUstepBase/GSIArray.h>
|
||||
#import <GNUstepBase/GSIArray.h>
|
||||
|
||||
@interface GSBezierPath : NSBezierPath
|
||||
{
|
||||
|
|
|
@ -35,25 +35,26 @@
|
|||
*/
|
||||
|
||||
#include <math.h> // (float)rintf(float x)
|
||||
#include "config.h"
|
||||
#include <Foundation/NSArray.h>
|
||||
#include <Foundation/NSDebug.h>
|
||||
#include <Foundation/NSException.h>
|
||||
#include "AppKit/NSBrowser.h"
|
||||
#include "AppKit/NSBrowserCell.h"
|
||||
#include "AppKit/AppKitExceptions.h"
|
||||
#include "AppKit/NSScroller.h"
|
||||
#include "AppKit/NSCell.h"
|
||||
#include "AppKit/NSColor.h"
|
||||
#include "AppKit/NSFont.h"
|
||||
#include "AppKit/NSScrollView.h"
|
||||
#include "AppKit/NSGraphics.h"
|
||||
#include "AppKit/NSMatrix.h"
|
||||
#include "AppKit/NSTableHeaderCell.h"
|
||||
#include "AppKit/NSEvent.h"
|
||||
#include "AppKit/NSWindow.h"
|
||||
#include "AppKit/NSBezierPath.h"
|
||||
#include "GNUstepGUI/GSTheme.h"
|
||||
#import "config.h"
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSDebug.h>
|
||||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSUserDefaults.h>
|
||||
#import "AppKit/NSBrowser.h"
|
||||
#import "AppKit/NSBrowserCell.h"
|
||||
#import "AppKit/AppKitExceptions.h"
|
||||
#import "AppKit/NSScroller.h"
|
||||
#import "AppKit/NSCell.h"
|
||||
#import "AppKit/NSColor.h"
|
||||
#import "AppKit/NSFont.h"
|
||||
#import "AppKit/NSScrollView.h"
|
||||
#import "AppKit/NSGraphics.h"
|
||||
#import "AppKit/NSMatrix.h"
|
||||
#import "AppKit/NSTableHeaderCell.h"
|
||||
#import "AppKit/NSEvent.h"
|
||||
#import "AppKit/NSWindow.h"
|
||||
#import "AppKit/NSBezierPath.h"
|
||||
#import "GNUstepGUI/GSTheme.h"
|
||||
|
||||
DEFINE_RINT_IF_MISSING
|
||||
|
||||
|
|
|
@ -28,29 +28,30 @@
|
|||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include <Foundation/NSGeometry.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#include <Foundation/NSArray.h>
|
||||
#include <Foundation/NSValue.h>
|
||||
#include <Foundation/NSDictionary.h>
|
||||
#include <Foundation/NSException.h>
|
||||
#include <Foundation/NSData.h>
|
||||
#include <Foundation/NSLock.h>
|
||||
#include <Foundation/NSRunLoop.h>
|
||||
#include <Foundation/NSSet.h>
|
||||
#include <Foundation/NSThread.h>
|
||||
#include <Foundation/NSZone.h>
|
||||
#include "AppKit/AppKitExceptions.h"
|
||||
#include "AppKit/NSGraphicsContext.h"
|
||||
#include "AppKit/NSAffineTransform.h"
|
||||
#include "AppKit/NSBezierPath.h"
|
||||
#include "AppKit/NSPrintInfo.h"
|
||||
#include "AppKit/NSPrintOperation.h"
|
||||
#include "AppKit/NSWindow.h"
|
||||
#include "AppKit/NSView.h"
|
||||
#include "AppKit/DPSOperators.h"
|
||||
#include "GNUstepGUI/GSVersion.h"
|
||||
#include "GNUstepGUI/GSDisplayServer.h"
|
||||
#import <Foundation/NSGeometry.h>
|
||||
#import <Foundation/NSString.h>
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSBundle.h>
|
||||
#import <Foundation/NSValue.h>
|
||||
#import <Foundation/NSDictionary.h>
|
||||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSData.h>
|
||||
#import <Foundation/NSLock.h>
|
||||
#import <Foundation/NSRunLoop.h>
|
||||
#import <Foundation/NSSet.h>
|
||||
#import <Foundation/NSThread.h>
|
||||
#import <Foundation/NSZone.h>
|
||||
#import "AppKit/AppKitExceptions.h"
|
||||
#import "AppKit/NSGraphicsContext.h"
|
||||
#import "AppKit/NSAffineTransform.h"
|
||||
#import "AppKit/NSBezierPath.h"
|
||||
#import "AppKit/NSPrintInfo.h"
|
||||
#import "AppKit/NSPrintOperation.h"
|
||||
#import "AppKit/NSWindow.h"
|
||||
#import "AppKit/NSView.h"
|
||||
#import "AppKit/DPSOperators.h"
|
||||
#import "GNUstepGUI/GSVersion.h"
|
||||
#import "GNUstepGUI/GSDisplayServer.h"
|
||||
|
||||
typedef struct { @defs(NSThread) } *TInfo;
|
||||
|
||||
|
|
Loading…
Reference in a new issue