mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 05:32:11 +00:00
Final part of #include -> #import replacement in official headers.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30084 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7e289df84b
commit
6cdc46802b
18 changed files with 81 additions and 44 deletions
21
ChangeLog
21
ChangeLog
|
@ -1,3 +1,24 @@
|
|||
2010-03-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSStringDrawing.m
|
||||
* Headers/AppKit/NSWindowController.h
|
||||
* Headers/AppKit/NSTokenField.h
|
||||
* Headers/AppKit/NSWorkspace.h
|
||||
* Headers/AppKit/NSWindow.h
|
||||
* Headers/AppKit/NSTextFieldCell.h
|
||||
* Headers/AppKit/NSTextContainer.h
|
||||
* Headers/AppKit/NSToolbar.h
|
||||
* Headers/AppKit/NSTokenFieldCell.h
|
||||
* Headers/AppKit/NSToolbarItemGroup.h
|
||||
* Headers/AppKit/NSTextStorage.h
|
||||
* Headers/AppKit/NSTextView.h
|
||||
* Headers/AppKit/NSToolbarItem.h
|
||||
* Headers/AppKit/NSUserDefaultsController.h
|
||||
* Headers/AppKit/NSUserInterfaceValidation.h
|
||||
* Headers/AppKit/NSTextField.h
|
||||
* Headers/AppKit/NSView.h: Final part of #include -> #import
|
||||
replacement in official headers.
|
||||
|
||||
2010-03-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/AppKit/NSSound.h
|
||||
|
|
|
@ -64,11 +64,12 @@ whenever this happens.
|
|||
|
||||
#ifndef _GNUstep_H_NSTextContainer
|
||||
#define _GNUstep_H_NSTextContainer
|
||||
#include <GNUstepBase/GSVersionMacros.h>
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#if GS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
||||
#if GS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
||||
|
||||
#include <Foundation/NSGeometry.h>
|
||||
#import <Foundation/NSGeometry.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
|
||||
@class GSLayoutManager;
|
||||
@class NSTextView;
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
#define _GNUstep_H_NSTextField
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSControl.h>
|
||||
#import <AppKit/NSControl.h>
|
||||
// For NSTextFieldBezelStyle
|
||||
#include <AppKit/NSTextFieldCell.h>
|
||||
#import <AppKit/NSTextFieldCell.h>
|
||||
|
||||
@class NSNotification;
|
||||
@class NSColor;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#define _GNUstep_H_NSTextFieldCell
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSActionCell.h>
|
||||
#import <AppKit/NSActionCell.h>
|
||||
|
||||
@class NSColor;
|
||||
|
||||
|
|
|
@ -34,10 +34,13 @@
|
|||
#ifndef _GNUstep_H_NSTextStorage
|
||||
#define _GNUstep_H_NSTextStorage
|
||||
|
||||
#include <AppKit/NSStringDrawing.h>
|
||||
#include <AppKit/AppKitDefines.h>
|
||||
#import <Foundation/NSAttributedString.h>
|
||||
#import <Foundation/NSGeometry.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
|
||||
@class NSNotification;
|
||||
@class NSString;
|
||||
@class GSLayoutManager;
|
||||
|
||||
/*
|
||||
|
|
|
@ -33,11 +33,11 @@
|
|||
#define _GNUstep_H_NSTextView
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSText.h>
|
||||
#include <AppKit/NSInputManager.h>
|
||||
#include <AppKit/NSDragging.h>
|
||||
#include <AppKit/NSTextAttachment.h>
|
||||
#include <AppKit/NSUserInterfaceValidation.h>
|
||||
#import <AppKit/NSText.h>
|
||||
#import <AppKit/NSInputManager.h>
|
||||
#import <AppKit/NSDragging.h>
|
||||
#import <AppKit/NSTextAttachment.h>
|
||||
#import <AppKit/NSUserInterfaceValidation.h>
|
||||
|
||||
@class NSTimer;
|
||||
@class NSTextContainer;
|
||||
|
|
|
@ -29,10 +29,13 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSTokenField
|
||||
#define _GNUstep_H_NSTokenField
|
||||
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
#include <AppKit/NSTextField.h>
|
||||
#include <AppKit/NSTokenFieldCell.h>
|
||||
|
||||
#import <Foundation/NSDate.h>
|
||||
#import <AppKit/NSTextField.h>
|
||||
#import <AppKit/NSTokenFieldCell.h>
|
||||
|
||||
@class NSCharacterSet;
|
||||
|
||||
@interface NSTokenField : NSTextField
|
||||
// Style...
|
||||
|
|
|
@ -31,7 +31,10 @@
|
|||
#define _GNUstep_H_NSTokenFieldCell
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSTextFieldCell.h>
|
||||
#import <Foundation/NSDate.h>
|
||||
#import <AppKit/NSTextFieldCell.h>
|
||||
|
||||
@class NSCharacterSet;
|
||||
|
||||
typedef enum _NSTokenStyle
|
||||
{
|
||||
|
|
|
@ -33,11 +33,12 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSToolbar
|
||||
#define _GNUstep_H_NSToolbar
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSArray.h>
|
||||
#include <AppKit/AppKitDefines.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
|
||||
@class NSArray;
|
||||
@class NSString;
|
||||
@class NSMutableArray;
|
||||
@class NSDictionary;
|
||||
|
|
|
@ -31,11 +31,12 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSToolbarItem
|
||||
#define _GNUstep_H_NSToolbarItem
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
#include <AppKit/AppKitDefines.h>
|
||||
#include <AppKit/NSUserInterfaceValidation.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <Foundation/NSGeometry.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
#import <AppKit/NSUserInterfaceValidation.h>
|
||||
|
||||
@class NSArray;
|
||||
@class NSString;
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSToolbarItemGroup
|
||||
#define _GNUstep_H_NSToolbarItemGroup
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSToolbarItem.h>
|
||||
#import <AppKit/NSToolbarItem.h>
|
||||
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5, GS_API_LATEST)
|
||||
|
||||
|
|
|
@ -28,8 +28,9 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSUserDefaultsController
|
||||
#define _GNUstep_H_NSUserDefaultsController
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSController.h>
|
||||
#import <AppKit/NSController.h>
|
||||
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3, GS_API_LATEST)
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#ifndef _GNUstep_H_NSUserInterfaceValidation
|
||||
#define _GNUstep_H_NSUserInterfaceValidation
|
||||
|
||||
#include <objc/objc.h>
|
||||
#import <objc/objc.h>
|
||||
|
||||
@protocol NSValidatedUserInterfaceItem
|
||||
|
||||
|
|
|
@ -32,9 +32,10 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSView
|
||||
#define _GNUstep_H_NSView
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSGraphicsContext.h>
|
||||
#include <AppKit/NSResponder.h>
|
||||
#import <AppKit/NSGraphicsContext.h>
|
||||
#import <AppKit/NSResponder.h>
|
||||
|
||||
@class NSArray;
|
||||
@class NSAttributedString;
|
||||
|
|
|
@ -35,9 +35,10 @@
|
|||
|
||||
#ifndef _GNUstep_H_NSWindow
|
||||
#define _GNUstep_H_NSWindow
|
||||
#import <GNUstepBase/GSVersionMacros.h>
|
||||
|
||||
#include <AppKit/NSGraphicsContext.h>
|
||||
#include <AppKit/NSResponder.h>
|
||||
#import <AppKit/NSGraphicsContext.h>
|
||||
#import <AppKit/NSResponder.h>
|
||||
|
||||
@class NSArray;
|
||||
@class NSData;
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
#ifndef _GNUstep_H_NSWindowController
|
||||
#define _GNUstep_H_NSWindowController
|
||||
|
||||
#include <AppKit/NSNibDeclarations.h>
|
||||
#include <AppKit/NSResponder.h>
|
||||
#import <AppKit/NSNibDeclarations.h>
|
||||
#import <AppKit/NSResponder.h>
|
||||
|
||||
@class NSString;
|
||||
@class NSArray;
|
||||
|
|
|
@ -30,9 +30,9 @@
|
|||
#ifndef _GNUstep_H_NSWorkspace
|
||||
#define _GNUstep_H_NSWorkspace
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
#include <AppKit/AppKitDefines.h>
|
||||
#import <Foundation/NSObject.h>
|
||||
#import <Foundation/NSGeometry.h>
|
||||
#import <AppKit/AppKitDefines.h>
|
||||
|
||||
@class NSString;
|
||||
@class NSNumber;
|
||||
|
|
|
@ -32,15 +32,15 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
#include <Foundation/NSException.h>
|
||||
#include <Foundation/NSLock.h>
|
||||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSLock.h>
|
||||
|
||||
#include "AppKit/NSAffineTransform.h"
|
||||
#include "AppKit/NSLayoutManager.h"
|
||||
#include "AppKit/NSTextContainer.h"
|
||||
#include "AppKit/NSTextStorage.h"
|
||||
#include "AppKit/DPSOperators.h"
|
||||
#include "GSTextStorage.h"
|
||||
#import "AppKit/NSAffineTransform.h"
|
||||
#import "AppKit/NSLayoutManager.h"
|
||||
#import "AppKit/NSStringDrawing.h"
|
||||
#import "AppKit/NSTextContainer.h"
|
||||
#import "AppKit/NSTextStorage.h"
|
||||
#import "AppKit/DPSOperators.h"
|
||||
|
||||
/*
|
||||
TODO:
|
||||
|
|
Loading…
Reference in a new issue