Up

NSPasteboard

Authors

Richard Frith-Macdonald( richard@brainstorm.co.uk )
Implementation of class for communicating with the pasteboard server.

Copyright: (C) 1997,1999 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSPasteboard class
  2. Software documentation for the NSObject(NSPasteboardOwner) informal protocol
  3. Software documentation for the NSPasteboard(GNUstepExtensions) category
  4. Software documentation for the NSURL(NSPasteboard) category

Software documentation for the NSPasteboard class

NSPasteboard : NSObject

Declared in:
AppKit/NSPasteboard.h
Standards:

Description forthcoming.

Method summary

generalPasteboard

+ (NSPasteboard*) generalPasteboard;

Description forthcoming.


pasteboardByFilteringData:ofType:

+ (NSPasteboard*) pasteboardByFilteringData: (NSData*)data ofType: (NSString*)type;

Description forthcoming.


pasteboardByFilteringFile:

+ (NSPasteboard*) pasteboardByFilteringFile: (NSString*)filename;

Description forthcoming.


pasteboardByFilteringTypesInPasteboard:

+ (NSPasteboard*) pasteboardByFilteringTypesInPasteboard: (NSPasteboard*)pboard;

Description forthcoming.


pasteboardWithName:

+ (NSPasteboard*) pasteboardWithName: (NSString*)aName;

Description forthcoming.


pasteboardWithUniqueName

+ (NSPasteboard*) pasteboardWithUniqueName;

Description forthcoming.


typesFilterableTo:

+ (NSArray*) typesFilterableTo: (NSString*)type;

Description forthcoming.


addTypes:owner:

- (int) addTypes: (NSArray*)newTypes owner: (id)newOwner;

Description forthcoming.


availableTypeFromArray:

- (NSString*) availableTypeFromArray: (NSArray*)types;

Description forthcoming.


changeCount

- (int) changeCount;

Description forthcoming.


dataForType:

- (NSData*) dataForType: (NSString*)dataType;

Description forthcoming.


declareTypes:owner:

- (int) declareTypes: (NSArray*)newTypes owner: (id)newOwner;

Description forthcoming.


name

- (NSString*) name;

Description forthcoming.


propertyListForType:

- (id) propertyListForType: (NSString*)dataType;

Description forthcoming.


readFileContentsType:toFile:

- (NSString*) readFileContentsType: (NSString*)type toFile: (NSString*)filename;

Description forthcoming.


readFileWrapper

- (NSFileWrapper*) readFileWrapper;

Description forthcoming.


releaseGlobally

- (void) releaseGlobally;

Description forthcoming.


setData:forType:

- (BOOL) setData: (NSData*)data forType: (NSString*)dataType;

Description forthcoming.


setPropertyList:forType:

- (BOOL) setPropertyList: (id)propertyList forType: (NSString*)dataType;

Description forthcoming.


setString:forType:

- (BOOL) setString: (NSString*)string forType: (NSString*)dataType;

Description forthcoming.


stringForType:

- (NSString*) stringForType: (NSString*)dataType;

Description forthcoming.


types

- (NSArray*) types;

Description forthcoming.


writeFileContents:

- (BOOL) writeFileContents: (NSString*)filename;

Description forthcoming.


writeFileWrapper:

- (BOOL) writeFileWrapper: (NSFileWrapper*)wrapper;

Description forthcoming.


Software documentation for the NSObject(NSPasteboardOwner) informal protocol

NSObject(NSPasteboardOwner)

Declared in:
AppKit/NSPasteboard.h
Standards:

Description forthcoming.

Method summary

pasteboard:provideDataForType:

- (void) pasteboard: (NSPasteboard*)sender provideDataForType: (NSString*)type;

Description forthcoming.


pasteboard:provideDataForType:andVersion:

- (void) pasteboard: (NSPasteboard*)sender provideDataForType: (NSString*)type andVersion: (int)ver;

Description forthcoming.


pasteboardChangedOwner:

- (void) pasteboardChangedOwner: (NSPasteboard*)sender;

Description forthcoming.


Software documentation for the NSPasteboard(GNUstepExtensions) category

NSPasteboard(GNUstepExtensions)

Declared in:
AppKit/NSPasteboard.h
Standards:

Description forthcoming.

Method summary

mimeTypeForPasteboardType:

+ (NSString*) mimeTypeForPasteboardType: (NSString*)type;

Description forthcoming.


pasteboardTypeForMimeType:

+ (NSString*) pasteboardTypeForMimeType: (NSString*)mimeType;

Description forthcoming.


setChangeCount:

- (void) setChangeCount: (int)count;

Description forthcoming.


Software documentation for the NSURL(NSPasteboard) category

NSURL(NSPasteboard)

Declared in:
AppKit/NSPasteboard.h
Standards:

Description forthcoming.

Method summary

URLFromPasteboard:

+ (NSURL*) URLFromPasteboard: (NSPasteboard*)pasteBoard;

Description forthcoming.


writeToPasteboard:

- (void) writeToPasteboard: (NSPasteboard*)pasteBoard;

Description forthcoming.



Up