+ We also have reference documentation for the classes, though this is
+ currently very sketchy, mostly consisting of listings of class
+ methods and the arguments they take -
+
- NSActionCell
- NSAffineTransform
diff --git a/Documentation/gsdoc/AppKit.html b/Documentation/gsdoc/AppKit.html
new file mode 100644
index 000000000..c1b05c223
--- /dev/null
+++ b/Documentation/gsdoc/AppKit.html
@@ -0,0 +1,130 @@
+
+AppKit
+
+
+AppKit
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 5 March, 2000
+
+
+
+ Nicola Pero has begun work on writing an
+ introduction
+ to the basic concepts and use of the GNUstep GUI library (AppKit).
+
+
+
+ We also have reference documentation for the classes, though this is
+ currently very sketchy, mostly consisting of listings of class
+ methods and the arguments they take -
+
+
+
+
+
diff --git a/Documentation/gsdoc/Introduction.html b/Documentation/gsdoc/Introduction.html
new file mode 100644
index 000000000..a0f98c216
--- /dev/null
+++ b/Documentation/gsdoc/Introduction.html
@@ -0,0 +1,100 @@
+
+Introduction to the AppKit
+
+
+Introduction to the AppKit
+Authors
+
+- Nicola Pero
+
-
+
+ At present, I am the only one to blaim for any error in this
+ text.
+
+Version: very preliminary, 0.1
+Date: 29 February, 2000
+
+ A short and simple introduction to the GNUstep GUI API.
+
+Contents
+
+
+
+
+ This is a simple introduction to the GNUstep GUI library
+ API. If you know nothing about the OPENSTEP AppKit, it
+ could be a good idea to read this before you start reading
+ the reference documentation.
+
+
+
+ I am very interested in comments regarding this text,
+ particularly from people who are new to the OPENSTEP
+ AppKit API. Send comments and/or suggestions to
+
+ [Nicola Pero, n.pero@mi.flashnet.it].
+
+
+
+
+
+ NSView is the class of objects representing a
+ rectangular area (usually in a window) with its own
+ coordinate system. Views have methods to draw inside
+ the view, to change the view's coordinate system, and to
+ place the view with arbitrary position and size inside
+ another view. When you place a view inside another
+ view, you are technically making the smaller view a
+ subview of the bigger view. The whole drawable
+ area inside the window itself is represented by a view,
+ called the content view. All the visible views
+ in a window are then subviews of the content view of
+ that window (or of the content view's subviews etc).
+ This gives rise to what is called the "view tree" of the
+ window.
+
+
+
+
+ NSCell is the class of objects representing a single
+ amount of displayable data. For example, a cell could
+ represent a number, or a string, or an image. Cells
+ have methods to draw the data they represent in a view,
+ to change the way the data is to be drawn (eg the font
+ for a string or the border for an image), and to let the
+ user interact directly (eg editing the data) with the
+ data in a view.
+
+
+
+
+ NSControl is the class of objects representing a view
+ (i.e., a rectangular area in a window) used to manage
+ one or more cells (i.e., some displayable data). This
+ class is usually designed to work with a subclass of
+ NSCell, called NSActionCell, through a system
+ of target/action. Each actioncell has a target
+ - an object - and an action - a selector - both
+ of which can be arbitrarily set. The control can then
+ ask the cell to send its action to its target (ie, to
+ invoke the method of the target object identified by the
+ selector) as a consequence of user actions in the
+ control. The typical example is a button: a button is a
+ control with a corresponding cell; when the user presses
+ the button, the buttoncell sends its action to its
+ target. Controls are the high-level objects the you
+ usually deal with when designing everyday-life user
+ interfaces. You do not usually need to bother about
+ cells, because the controls manage the cells for you.
+
+
+
+
diff --git a/Documentation/gsdoc/NSActionCell.html b/Documentation/gsdoc/NSActionCell.html
new file mode 100644
index 000000000..67ac3b005
--- /dev/null
+++ b/Documentation/gsdoc/NSActionCell.html
@@ -0,0 +1,149 @@
+
+NSActionCell
+
+
+[Up]
+[Next]
+NSActionCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSActionCell.h
+Inherits from: NSCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (SEL) action
+
+
+
+
+- (NSView*) controlView
+
+
+
+
+- (double) doubleValue
+
+
+
+
+- (void) drawWithFrame: (NSRect)cellFrame
+
+
+
+
+- (float) floatValue
+
+
+
+
+- (int) intValue
+
+
+
+
+- (void) setAction: (SEL)aSelector
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)mode
+
+
+
+
+- (void) setBezeled: (BOOL)flag
+
+
+
+
+- (void) setBordered: (BOOL)flag
+
+
+
+
+- (void) setEnabled: (BOOL)flag
+
+
+
+
+- (void) setFloatingPointFormat: (BOOL)autoRange left: (unsigned int)leftDigits right: (unsigned int)rightDigits
+
+
+
+
+- (void) setFont: (NSFont*)fontObj
+
+
+
+
+- (void) setImage: (NSImage*)image
+
+
+
+
+- (void) setObjectValue: (id)object
+
+
+
+
+- (void) setTag: (int)anInt
+
+
+
+
+- (void) setTarget: (id)anObject
+
+
+
+
+- (NSString*) stringValue
+
+
+
+
+- (int) tag
+
+
+
+
+- (id) target
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSAffineTransform.html b/Documentation/gsdoc/NSAffineTransform.html
new file mode 100644
index 000000000..3b71e9e78
--- /dev/null
+++ b/Documentation/gsdoc/NSAffineTransform.html
@@ -0,0 +1,132 @@
+
+NSAffineTransform
+
+
+[Previous]
+[Up]
+[Next]
+NSAffineTransform
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSAffineTransform.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSAffineTransform*) transform
+
+
+
+
+- (void) appendTransform: (NSAffineTransform*)aTransform
+
+
+
+
+- (void) concat
+
+
+
+
+- (id) initWithTransform: (NSAffineTransform*)aTransform
+
+
+
+
+- (void) invert
+
+
+
+
+- (void) prependTransform: (NSAffineTransform*)aTransform
+
+
+
+
+- (void) rotateByDegrees: (float)angle
+
+
+
+
+- (void) rotateByRadians: (float)angle
+
+
+
+
+- (void) scaleBy: (float)scale
+
+
+
+
+- (void) scaleXBy: (float)scaleX
+
+
+
+
+- (void) set
+
+
+
+
+- (void) setTransformStruct: (NSAffineTransformStruct)aTransformStruct
+
+
+
+
+- (NSBezierPath*) transformBezierPath: (NSBezierPath*)aPath
+
+
+
+
+- (NSPoint) transformPoint: (NSPoint)aPoint
+
+
+
+
+- (NSSize) transformSize: (NSSize)aSize
+
+
+
+
+- (NSAffineTransformStruct) transformStruct
+
+
+
+
+- (void) translateXBy: (float)deltaX
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSApplication.html b/Documentation/gsdoc/NSApplication.html
new file mode 100644
index 000000000..1e533dbc8
--- /dev/null
+++ b/Documentation/gsdoc/NSApplication.html
@@ -0,0 +1,558 @@
+
+NSApplication
+
+
+[Previous]
+[Up]
+[Next]
+NSApplication
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSApplication.h
+Inherits from: NSResponder
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (void) setApplicationHandle: (void*)hInstance previousHandle: (void*)prevInstance commandLine: (NSString*)cmdLine show: (int)cmdShow
+
+
+
+
++ (void) useRunningCopyOfApplication
+
+
+
+
+- (void) abortModal
+
+
+
+
+- (void) activateContextHelpMode: (id)sender
+
+
+
+
+- (void) activateIgnoringOtherApps: (BOOL)flag
+
+
+
+
+- (void) addWindowsItem: (NSWindow*)aWindow title: (NSString*)title filename: (BOOL)isFilename
+
+
+
+
+- (void*) applicationHandle
+
+
+
+
+- (NSImage*) applicationIconImage
+
+
+
+
+- (void) arrangeInFront: (id)sender
+
+
+
+
+- (NSModalSession) beginModalSessionForWindow: (NSWindow*)aWindow
+
+
+
+
+- (void) changeWindowsItem: (NSWindow*)aWindow title: (NSString*)aString filename: (BOOL)isFilename
+
+
+
+
+- (NSDPSContext*) context
+
+
+
+
+- (NSEvent*) currentEvent
+
+
+
+
+- (void) deactivate
+
+
+
+
+- (void) discardEventsMatchingMask: (unsigned int)mask beforeEvent: (NSEvent*)lastEvent
+
+
+
+
+- (void) endModalSession: (NSModalSession)session
+
+
+
+
+- (void) finishLaunching
+
+
+
+
+- (void) hide: (id)sender
+
+
+
+
+- (BOOL) isActive
+
+
+
+
+- (BOOL) isHidden
+
+
+
+
+- (BOOL) isRunning
+
+
+
+
+- (NSWindow*) keyWindow
+
+
+
+
+- (NSMenu*) mainMenu
+
+
+
+
+- (NSWindow*) mainWindow
+
+
+
+
+- (NSWindow*) makeWindowsPerform: (SEL)aSelector
+
+
+
+
+- (void) miniaturizeAll: (id)sender
+
+
+
+
+- (NSWindow*) modalWindow
+
+
+
+
+- (NSEvent*) nextEventMatchingMask: (unsigned int)mask untilDate: (NSDate*)expiration inMode: (NSString*)mode dequeue: (BOOL)flag
+
+
+
+
+- (void) orderFrontColorPanel: (id)sender
+
+
+
+
+- (void) orderFrontStandardAboutPanel: (id)sender;
+
+
+
+
+- (void) orderFrontStandardAboutPanelWithOptions: (NSDictionary*)optionsDictionary;
+
+
+
+
+- (void) postEvent: (NSEvent*)anEvent
+
+
+
+
+- (void) preventWindowOrdering
+
+
+
+
+- (void) registerServicesMenuSendTypes: (NSArray*)sendTypes returnTypes: (NSArray*)returnTypes
+
+
+
+
+- (void) removeWindowsItem: (NSWindow*)aWindow
+
+
+
+
+- (void) reportException: (NSException*)anException
+
+
+
+
+- (void) run
+
+
+
+
+- (int) runModalForWindow: (NSWindow*)aWindow
+
+
+
+
+- (int) runModalSession: (NSModalSession)session
+
+
+
+
+- (void) runPageLayout: (id)sender
+
+
+
+
+- (BOOL) sendAction: (SEL)anAction to: (id)aTarget from: (id)sender
+
+
+
+
+- (void) sendEvent: (NSEvent*)anEvent
+
+
+
+
+- (NSMenu*) servicesMenu
+
+
+
+
+- (id) servicesProvider
+
+
+
+
+- (void) setApplicationIconImage: (NSImage*)anImage
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setMainMenu: (NSMenu*)aMenu
+
+
+
+
+- (void) setServicesMenu: (NSMenu*)aMenu
+
+
+
+
+- (void) setServicesProvider: (id)aProvider
+
+
+
+
+- (void) setWindowsMenu: (NSMenu*)aMenu
+
+
+
+
+- (void) setWindowsNeedUpdate: (BOOL)flag
+
+
+
+
+- (void) showHelp: (id)sender
+
+
+
+
+- (void) stop: (id)sender
+
+
+
+
+- (void) stopModal
+
+
+
+
+- (void) stopModalWithCode: (int)returnCode
+
+
+
+
+- (id) targetForAction: (SEL)aSelector
+
+
+
+
+- (void) terminate: (id)sender
+
+
+
+
+- (BOOL) tryToPerform: (SEL)aSelector
+
+
+
+
+- (void) unhide: (id)sender
+
+
+
+
+- (void) unhideWithoutActivation
+
+
+
+
+- (void) updateWindows
+
+
+
+
+- (void) updateWindowsItem: (NSWindow*)aWindow
+
+
+
+
+- (id) validRequestorForSendType: (NSString*)sendType returnType: (NSString*)returnType
+
+
+
+
+- (NSArray*) windows
+
+
+
+
+- (NSMenu*) windowsMenu
+
+
+
+
+- (NSWindow*) windowWithWindowHandle: (void*)hWnd
+
+
+
+
+- (NSWindow*) windowWithWindowNumber: (int)windowNum
+
+
+
+
+- (BOOL) application: (NSApplication*)theApplication
+
+
+
+
+- (BOOL) application: (NSApplication*)sender openFileWithoutUI: (NSString*)filename
+
+
+
+
+- (BOOL) application: (NSApplication*)theApplication
+
+
+
+
+- (BOOL) application: (NSApplication*)theApplication
+
+
+
+
+- (void) applicationDidBecomeActive: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationDidFinishLaunching: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationDidHide: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationDidResignActive: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationDidUnhide: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationDidUpdate: (NSNotification*)aNotification
+
+
+
+
+- (BOOL) applicationOpenUntitledFile: (NSApplication*)theApplication
+
+
+
+
+- (BOOL) applicationShouldOpenUntitledFile: (NSApplication*)sender
+
+
+
+
+- (BOOL) applicationShouldTerminate: (NSApplication*)sender
+
+
+
+
+- (BOOL) applicationShouldTerminateAfterLastWindowClosed: (NSApplication*)theApplication
+
+
+
+
+- (void) applicationWillBecomeActive: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationWillFinishLaunching: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationWillHide: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationWillTerminate: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationWillResignActive: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationWillUnhide: (NSNotification*)aNotification
+
+
+
+
+- (void) applicationWillUpdate: (NSNotification*)aNotification
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSAttributedStrngAdds.html b/Documentation/gsdoc/NSAttributedStrngAdds.html
new file mode 100644
index 000000000..7c0eeb6f5
--- /dev/null
+++ b/Documentation/gsdoc/NSAttributedStrngAdds.html
@@ -0,0 +1,26 @@
+
+NSAttributedStrngAdds
+
+
+[Previous]
+[Up]
+[Next]
+NSAttributedStrngAdds
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSApplication.h
+
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSBezierPath.html b/Documentation/gsdoc/NSBezierPath.html
new file mode 100644
index 000000000..dca9a39ec
--- /dev/null
+++ b/Documentation/gsdoc/NSBezierPath.html
@@ -0,0 +1,360 @@
+
+NSBezierPath
+
+
+[Previous]
+[Up]
+[Next]
+NSBezierPath
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSBezierPath.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSBezierPath*) bezierPath
+
+
+
+
++ (NSBezierPath*) bezierPathWithRect: (NSRect)aRect
+
+
+
+
++ (void) clipRect: (NSRect)aRect
+
+
+
+
++ (void) drawPackedGlyphs: (constchar*)packedGlyphs
+
+
+
+
++ (void) fillRect: (NSRect)aRect
+
+
+
+
++ (void) setFlatness: (float)flatness
+
+
+
+
++ (void) setHalftonePhase: (NSPoint)aPoint
+
+
+
+
++ (void) setLineCapStyle: (NSLineCapStyle)lineCap
+
+
+
+
++ (void) setLineJoinStyle: (NSLineJoinStyle)lineJoinStyle
+
+
+
+
++ (void) setLineWidth: (float)width
+
+
+
+
++ (void) setMiterLimit: (float)limit
+
+
+
+
++ (void) strokeLineFromPoint: (NSPoint)point1 toPoint: (NSPoint)point2
+
+
+
+
++ (void) strokeRect: (NSRect)aRect
+
+
+
+
+- (void) addClip
+
+
+
+
+- (void) appendBezierPath: (NSBezierPath*)aPath
+
+
+
+
+- (void) appendBezierPathWithArcWithCenter: (NSPoint)center radius: (float)radius startAngle: (float)startAngle
+
+
+
+
+- (void) appendBezierPathWithGlyph: (NSGlyph)aGlyph
+
+
+
+
+- (void) appendBezierPathWithGlyphs: (NSGlyph*)glyphs count: (int)count inFont: (NSFont*)fontObj
+
+
+
+
+- (void) appendBezierPathWithOvalInRect: (NSRect)aRect
+
+
+
+
+- (void) appendBezierPathWithPackedGlyphs: (constchar*)packedGlyphs
+
+
+
+
+- (void) appendBezierPathWithPoints: (NSPoint*)points
+
+
+
+
+- (void) appendBezierPathWithRect: (NSRect)aRect
+
+
+
+
+- (NSRect) bounds
+
+
+
+
+- (BOOL) cachesBezierPath
+
+
+
+
+- (void) closePath
+
+
+
+
+- (NSRect) controlPointBounds
+
+
+
+
+- (NSPoint) currentPoint
+
+
+
+
+- (void) curveToPoint: (NSPoint)aPoint controlPoint1: (NSPoint)controlPoint1
+
+
+
+
+- (int) elementCount
+
+
+
+
+- (NSBezierPathElementType) elementTypeAtIndex: (int)index
+
+
+
+
+- (NSBezierPathElementType) elementTypeAtIndex: (int)index associatedPoints: (NSPoint*)points
+
+
+
+
+- (void) fill
+
+
+
+
+- (BOOL) isHitByPath: (NSBezierPath*)aBezierPath
+
+
+
+
+- (BOOL) isHitByPoint: (NSPoint)aPoint
+
+
+
+
+- (BOOL) isHitByRect: (NSRect)aRect
+
+
+
+
+- (BOOL) isStrokeHitByPath: (NSBezierpath*)aBezierPath
+
+
+
+
+- (BOOL) isStrokeHitByPoint: (NSPoint)aPoint
+
+
+
+
+- (BOOL) isStrokeHitByRect: (NSRect)aRect
+
+
+
+
+- (void) lineToPoint: (NSPoint)aPoint
+
+
+
+
+- (void) moveToPoint: (NSPoint)aPoint
+
+
+
+
+- (int) pathElementIndexForPointIndex: (int)index
+
+
+
+
+- (NSPoint) pointAtIndex: (int)index
+
+
+
+
+- (int) pointCount
+
+
+
+
+- (int) pointIndexForPathElementIndex: (int)index
+
+
+
+
+- (void) relativeCurveToPoint: (NSPoint)aPoint controlPoint1: (NSPoint)controlPoint1
+
+
+
+
+- (void) relativeLineToPoint: (NSPoint)aPoint
+
+
+
+
+- (void) relativeMoveToPoint: (NSPoint)aPoint
+
+
+
+
+- (void) removeLastElement
+
+
+
+
+- (void) reset
+
+
+
+
+- (void) setCachesBezierPath: (BOOL)flag
+
+
+
+
+- (void) setClip
+
+
+
+
+- (void) setPointAtIndex: (int)index toPoint: (NSPoint)aPoint
+
+
+
+
+- (void) setWindingRule: (NSWindingRule)aWindingRule
+
+
+
+
+- (void) stroke
+
+
+
+
+- (NSWindingRule) windingRule
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSBitmapImageRep.html b/Documentation/gsdoc/NSBitmapImageRep.html
new file mode 100644
index 000000000..e7a8f112e
--- /dev/null
+++ b/Documentation/gsdoc/NSBitmapImageRep.html
@@ -0,0 +1,174 @@
+
+NSBitmapImageRep
+
+
+[Previous]
+[Up]
+[Next]
+NSBitmapImageRep
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSImage.h
+Inherits from: NSImageRep
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (void) getTIFFCompressionTypes: (constNSTIFFCompression**)list count: (int*)numTypes
+
+
+
+
++ (NSArray*) imageRepsWithData: (NSData*)bitmapData
+
+
+
+
++ (id) imageRepWithData: (NSData*)bitmapData
+
+
+
+
++ (NSString*) localizedNameForTIFFCompressionType: (NSTIFFCompression)compression
+
+
+
+
++ (NSData*) TIFFRepresentationOfImageRepsInArray: (NSArray*)array
+
+
+
+
++ (NSData*) TIFFRepresentationOfImageRepsInArray: (NSArray*)array usingCompression: (NSTIFFCompression)compression
+
+
+
+
+- (unsigned char*) bitmapData
+
+
+
+
+- (int) bitsPerPixel
+
+
+
+
+- (int) bytesPerPlane
+
+
+
+
+- (int) bytesPerRow
+
+
+
+
+- (BOOL) canBeCompressedUsing: (NSTIFFCompression)compression
+
+
+
+
+- (void) getBitmapDataPlanes: (unsigned char**)data
+
+
+
+
+- (void) getCompression: (NSTIFFCompression*)compression
+
+
+
+
+- (id) initWithBitmapDataPlanes: (unsigned char**)planes pixelsWide: (int)width pixelsHigh: (int)height bitsPerSample: (int)bps samplesPerPixel: (int)spp hasAlpha: (BOOL)alpha isPlanar: (BOOL)isPlanar colorSpaceName: (NSString*)colorSpaceName bytesPerRow: (int)rowBytes bitsPerPixel: (int)pixelBits
+
+
+
+
+- (id) initWithBitmapHandle: (void*)bitmap
+
+
+
+
+- (id) initWithData: (NSData*)bitmapData
+
+
+
+
+- (id) initWithFocusedViewRect: (NSRect)rect
+
+
+
+
+- (id) initWithIconHandle: (void*)icon
+
+
+
+
+- (BOOL) isPlanar
+
+
+
+
+- (int) numberOfPlanes
+
+
+
+
+- (int) samplesPerPixel
+
+
+
+
+- (void) setCompression: (NSTIFFCompression)compression
+
+
+
+
+- (NSData*) TIFFRepresentation
+
+
+
+
+- (NSData*) TIFFRepresentationUsingCompression: (NSTIFFCompression)comp factor: (float)factor
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSBox.html b/Documentation/gsdoc/NSBox.html
new file mode 100644
index 000000000..e43bdb851
--- /dev/null
+++ b/Documentation/gsdoc/NSBox.html
@@ -0,0 +1,138 @@
+
+NSBox
+
+
+[Previous]
+[Up]
+[Next]
+NSBox
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSBox.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSRect) borderRect
+
+
+
+
+- (NSBorderType) borderType
+
+
+
+
+- (id) contentView
+
+
+
+
+- (NSSize) contentViewMargins
+
+
+
+
+- (void) setBorderType: (NSBorderType)aType
+
+
+
+
+- (void) setContentView: (NSView*)aView
+
+
+
+
+- (void) setContentViewMargins: (NSSize)offsetSize
+
+
+
+
+- (void) setFrameFromContentFrame: (NSRect)contentFrame
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) setTitleFont: (NSFont*)aFont
+
+
+
+
+- (void) setTitlePosition: (NSTitlePosition)aPosition
+
+
+
+
+- (void) setTitleWithMnemonic: (NSString*)aString
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (id) titleCell
+
+
+
+
+- (NSFont*) titleFont
+
+
+
+
+- (NSTitlePosition) titlePosition
+
+
+
+
+- (NSRect) titleRect
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSBrowser.html b/Documentation/gsdoc/NSBrowser.html
new file mode 100644
index 000000000..41acfdd23
--- /dev/null
+++ b/Documentation/gsdoc/NSBrowser.html
@@ -0,0 +1,546 @@
+
+NSBrowser
+
+
+[Previous]
+[Up]
+[Next]
+NSBrowser
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSBrowser.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (Class) cellClass
+
+
+
+
+- (BOOL) acceptsArrowKeys
+
+
+
+
+- (void) addColumn
+
+
+
+
+- (BOOL) allowsBranchSelection
+
+
+
+
+- (BOOL) allowsEmptySelection
+
+
+
+
+- (BOOL) allowsMultipleSelection
+
+
+
+
+- (id) cellPrototype
+
+
+
+
+- (int) columnOfMatrix: (NSMatrix*)matrix
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) displayAllColumns
+
+
+
+
+- (void) displayColumn: (int)column
+
+
+
+
+- (void) doClick: (id)sender
+
+
+
+
+- (void) doDoubleClick: (id)sender
+
+
+
+
+- (SEL) doubleAction
+
+
+
+
+- (void) drawTitleOfColumn: (int)column
+
+
+
+
+- (int) firstVisibleColumn
+
+
+
+
+- (NSRect) frameOfColumn: (int)column
+
+
+
+
+- (NSRect) frameOfInsideOfColumn: (int)column
+
+
+
+
+- (BOOL) hasHorizontalScroller
+
+
+
+
+- (BOOL) isLoaded
+
+
+
+
+- (BOOL) isTitled
+
+
+
+
+- (int) lastColumn
+
+
+
+
+- (int) lastVisibleColumn
+
+
+
+
+- (void) loadColumnZero
+
+
+
+
+- (id) loadedCellAtRow: (int)row column: (int)column
+
+
+
+
+- (Class) matrixClass
+
+
+
+
+- (NSMatrix*) matrixInColumn: (int)column
+
+
+
+
+- (int) maxVisibleColumns
+
+
+
+
+- (float) minColumnWidth
+
+
+
+
+- (int) numberOfVisibleColumns
+
+
+
+
+- (NSString*) path
+
+
+
+
+- (NSString*) pathSeparator
+
+
+
+
+- (NSString*) pathToColumn: (int)column
+
+
+
+
+- (void) reloadColumn: (int)column
+
+
+
+
+- (BOOL) reusesColumns
+
+
+
+
+- (void) scrollColumnToVisible: (int)column
+
+
+
+
+- (void) scrollColumnsLeftBy: (int)shiftAmount
+
+
+
+
+- (void) scrollColumnsRightBy: (int)shiftAmount
+
+
+
+
+- (void) scrollViaScroller: (NSScroller*)sender
+
+
+
+
+- (void) selectAll: (id)sender
+
+
+
+
+- (void) selectRow: (int)row inColumn: (int)column
+
+
+
+
+- (id) selectedCell
+
+
+
+
+- (id) selectedCellInColumn: (int)column
+
+
+
+
+- (NSArray*) selectedCells
+
+
+
+
+- (int) selectedColumn
+
+
+
+
+- (int) selectedRowInColumn: (int)column
+
+
+
+
+- (BOOL) sendAction
+
+
+
+
+- (BOOL) sendsActionOnArrowKeys
+
+
+
+
+- (BOOL) separatesColumns
+
+
+
+
+- (void) setAcceptsArrowKeys: (BOOL)flag
+
+
+
+
+- (void) setAllowsBranchSelection: (BOOL)flag
+
+
+
+
+- (void) setAllowsEmptySelection: (BOOL)flag
+
+
+
+
+- (void) setAllowsMultipleSelection: (BOOL)flag
+
+
+
+
+- (void) setCellClass: (Class)factoryId
+
+
+
+
+- (void) setCellPrototype: (NSCell*)aCell
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDoubleAction: (SEL)aSelector
+
+
+
+
+- (void) setHasHorizontalScroller: (BOOL)flag
+
+
+
+
+- (void) setLastColumn: (int)column
+
+
+
+
+- (void) setMatrixClass: (Class)factoryId
+
+
+
+
+- (void) setMaxVisibleColumns: (int)columnCount
+
+
+
+
+- (void) setMinColumnWidth: (float)columnWidth
+
+
+
+
+- (BOOL) setPath: (NSString*)path
+
+
+
+
+- (void) setPathSeparator: (NSString*)newString
+
+
+
+
+- (void) setReusesColumns: (BOOL)flag
+
+
+
+
+- (void) setSendsActionOnArrowKeys: (BOOL)flag
+
+
+
+
+- (void) setSeparatesColumns: (BOOL)flag
+
+
+
+
+- (void) setTakesTitleFromPreviousColumn: (BOOL)flag
+
+
+
+
+- (void) setTitle: (NSString*)aString ofColumn: (int)column
+
+
+
+
+- (void) setTitled: (BOOL)flag
+
+
+
+
+- (BOOL) takesTitleFromPreviousColumn
+
+
+
+
+- (void) tile
+
+
+
+
+- (NSRect) titleFrameOfColumn: (int)column
+
+
+
+
+- (float) titleHeight
+
+
+
+
+- (NSString*) titleOfColumn: (int)column
+
+
+
+
+- (void) updateScroller
+
+
+
+
+- (void) validateVisibleColumns
+
+
+
+
+- (void) browser: (NSBrowser*)sender createRowsForColumn: (int)column inMatrix: (NSMatrix*)matrix
+
+
+
+
+- (BOOL) browser: (NSBrowser*)sender isColumnValid: (int)column
+
+
+
+
+- (int) browser: (NSBrowser*)sender numberOfRowsInColumn: (int)column
+
+
+
+
+- (BOOL) browser: (NSBrowser*)sender selectCellWithString: (NSString*)title inColumn: (int)column
+
+
+
+
+- (BOOL) browser: (NSBrowser*)sender selectRow: (int)row inColumn: (int)column
+
+
+
+
+- (NSString*) browser: (NSBrowser*)sender titleOfColumn: (int)column
+
+
+
+
+- (void) browser: (NSBrowser*)sender willDisplayCell: (id)cell atRow: (int)row column: (int)column
+
+
+
+
+- (void) browserDidScroll: (NSBrowser*)sender
+
+
+
+
+- (void) browserWillScroll: (NSBrowser*)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSBrowserCell.html b/Documentation/gsdoc/NSBrowserCell.html
new file mode 100644
index 000000000..d7367e0ad
--- /dev/null
+++ b/Documentation/gsdoc/NSBrowserCell.html
@@ -0,0 +1,90 @@
+
+NSBrowserCell
+
+
+[Previous]
+[Up]
+[Next]
+NSBrowserCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSBrowserCell.h
+Inherits from: NSCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSImage*) branchImage
+
+
+
+
++ (NSImage*) highlightedBranchImage
+
+
+
+
+- (NSImage*) alternateImage
+
+
+
+
+- (BOOL) isLeaf
+
+
+
+
+- (BOOL) isLoaded
+
+
+
+
+- (void) reset
+
+
+
+
+- (void) set
+
+
+
+
+- (void) setAlternateImage: (NSImage*)newAltImage
+
+
+
+
+- (void) setLeaf: (BOOL)flag
+
+
+
+
+- (void) setLoaded: (BOOL)flag
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSBundleAdditions.html b/Documentation/gsdoc/NSBundleAdditions.html
new file mode 100644
index 000000000..1601e2223
--- /dev/null
+++ b/Documentation/gsdoc/NSBundleAdditions.html
@@ -0,0 +1,58 @@
+
+NSBundleAdditions
+
+
+[Previous]
+[Up]
+[Next]
+NSBundleAdditions
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSHelpManager.h
+Inherits from: NSObject
+
+
+
+
+
+
++ (BOOL) loadNibFile: (NSString*)fileName externalNameTable: (NSDictionary*)context withZone: (NSZone*)zone
+
+
+
+
++ (BOOL) loadNibNamed: (NSString*)aNibName
+
+
+
+
+- (NSAttributedString*) contextHelpForKey: (NSString*)key
+
+
+
+
+- (BOOL) loadNibFile: (NSString*)fileName externalNameTable: (NSDictionary*)context withZone: (NSZone*)zone
+
+
+
+
+- (NSString*) pathForImageResource: (NSString*)name
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSButton.html b/Documentation/gsdoc/NSButton.html
new file mode 100644
index 000000000..e0312ceb3
--- /dev/null
+++ b/Documentation/gsdoc/NSButton.html
@@ -0,0 +1,264 @@
+
+NSButton
+
+
+[Previous]
+[Up]
+[Next]
+NSButton
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSButton.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) allowsMixedState
+
+
+
+
+- (NSImage*) alternateImage
+
+
+
+
+- (NSString*) alternateTitle
+
+
+
+
+- (NSAttributedString*) attributedAlternateTitle
+
+
+
+
+- (NSAttributedString*) attributedTitle
+
+
+
+
+- (NSBezelStyle) bezelStyle
+
+
+
+
+- (void) getPeriodicDelay: (float*)delay interval: (float*)interval
+
+
+
+
+- (void) highlight: (BOOL)flag
+
+
+
+
+- (NSCellImagePosition) imagePosition
+
+
+
+
+- (BOOL) isBordered
+
+
+
+
+- (BOOL) isTransparent
+
+
+
+
+- (NSString*) keyEquivalent
+
+
+
+
+- (unsigned int) keyEquivalentModifierMask
+
+
+
+
+- (void) performClick: (id)sender
+
+
+
+
+- (BOOL) performKeyEquivalent: (NSEvent*)anEvent
+
+
+
+
+- (void) setAllowsMixedState: (BOOL)flag
+
+
+
+
+- (void) setAlternateImage: (NSImage*)image
+
+
+
+
+- (void) setAlternateTitle: (NSString*)aString
+
+
+
+
+- (void) setAttributedAlternateTitle: (NSAttributedString*)aString
+
+
+
+
+- (void) setAttributedTitle: (NSAttributedString*)aString
+
+
+
+
+- (void) setBezelStyle: (NSBezelStyle)bezelStyle
+
+
+
+
+- (void) setBordered: (BOOL)flag
+
+
+
+
+- (void) setButtonType: (NSButtonType)aType
+
+
+
+
+- (void) setImage: (NSImage*)image
+
+
+
+
+- (void) setImagePosition: (NSCellImagePosition)aPosition
+
+
+
+
+- (void) setKeyEquivalent: (NSString*)charCode
+
+
+
+
+- (void) setKeyEquivalentModifierMask: (unsigned int)mask
+
+
+
+
+- (void) setNextState
+
+
+
+
+- (void) setPeriodicDelay: (float)delay interval: (float)interval
+
+
+
+
+- (void) setShowsBorderOnlyWhileMouseInside: (BOOL)show
+
+
+
+
+- (void) setSound: (NSSound*)aSound
+
+
+
+
+- (void) setState: (int)value
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) setTitleWithMnemonic: (NSString*)aString
+
+
+
+
+- (void) setTransparent: (BOOL)flag
+
+
+
+
+- (BOOL) showsBorderOnlyWhileMouseInside
+
+
+
+
+- (NSSound*) sound
+
+
+
+
+- (int) state
+
+
+
+
+- (NSString*) title
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSButtonCell.html b/Documentation/gsdoc/NSButtonCell.html
new file mode 100644
index 000000000..927542364
--- /dev/null
+++ b/Documentation/gsdoc/NSButtonCell.html
@@ -0,0 +1,318 @@
+
+NSButtonCell
+
+
+[Previous]
+[Up]
+[Next]
+NSButtonCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSButtonCell.h
+Inherits from: NSActionCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSImage*) alternateImage
+
+
+
+
+- (NSString*) alternateMnemonic
+
+
+
+
+- (unsigned int) alternateMnemonicLocation
+
+
+
+
+- (NSString*) alternateTitle
+
+
+
+
+- (NSAttributedString*) attributedAlternateTitle
+
+
+
+
+- (NSAttributedString*) attributedTitle
+
+
+
+
+- (NSBezelStyle) bezelStyle
+
+
+
+
+- (void) getPeriodicDelay: (float*)delay interval: (float*)interval
+
+
+
+
+- (NSGradientType) gradientType
+
+
+
+
+- (int) highlightsBy
+
+
+
+
+- (BOOL) imageDimsWhenDisabled
+
+
+
+
+- (NSCellImagePosition) imagePosition
+
+
+
+
+- (BOOL) isOpaque
+
+
+
+
+- (BOOL) isTransparent
+
+
+
+
+- (NSString*) keyEquivalent
+
+
+
+
+- (NSFont*) keyEquivalentFont
+
+
+
+
+- (unsigned int) keyEquivalentModifierMask
+
+
+
+
+- (void) mouseEntered: (NSEvent*)event
+
+
+
+
+- (void) mouseExited: (NSEvent*)event
+
+
+
+
+- (void) performClick: (id)sender
+
+
+
+
+- (void) setAlternateImage: (NSImage*)image
+
+
+
+
+- (void) setAlternateMnemonicLocation: (unsigned int)location
+
+
+
+
+- (void) setAlternateTitle: (NSString*)aString
+
+
+
+
+- (void) setAlternateTitleWithMnemonic: (NSString*)aString
+
+
+
+
+- (void) setAttributedAlternateTitle: (NSAttributedString*)aString
+
+
+
+
+- (void) setAttributedTitle: (NSAttributedString*)aString
+
+
+
+
+- (void) setBezelStyle: (NSBezelStyle)bezelStyle
+
+
+
+
+- (void) setButtonType: (NSButtonType)aType
+
+
+
+
+- (void) setFont: (NSFont*)fontObj
+
+
+
+
+- (void) setGradientType: (NSGradientType)gradientType
+
+
+
+
+- (void) setHighlightsBy: (int)aType
+
+
+
+
+- (void) setImageDimsWhenDisabled: (BOOL)flag
+
+
+
+
+- (void) setImagePosition: (NSCellImagePosition)aPosition
+
+
+
+
+- (void) setKeyEquivalent: (NSString*)aKeyEquivalent
+
+
+
+
+- (void) setKeyEquivalentFont: (NSFont*)fontObj
+
+
+
+
+- (void) setKeyEquivalentFont: (NSString*)fontName
+
+
+
+
+- (void) setKeyEquivalentModifierMask: (unsigned int)mask
+
+
+
+
+- (void) setPeriodicDelay: (float)delay interval: (float)interval
+
+
+
+
+- (void) setShowsBorderOnlyWhileMouseInside: (BOOL)show
+
+
+
+
+- (void) setShowsStateBy: (int)aType
+
+
+
+
+- (void) setSound: (NSSound*)aSound
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) setTitleWithMnemonic: (NSString*)aString
+
+
+
+
+- (void) setTransparent: (BOOL)flag
+
+
+
+
+- (int) showsStateBy
+
+
+
+
+- (BOOL) showsBorderOnlyWhileMouseInside
+
+
+
+
+- (NSSound*) sound
+
+
+
+
+- (NSString*) title
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSCachedImageRep.html b/Documentation/gsdoc/NSCachedImageRep.html
new file mode 100644
index 000000000..da32dd3ad
--- /dev/null
+++ b/Documentation/gsdoc/NSCachedImageRep.html
@@ -0,0 +1,54 @@
+
+NSCachedImageRep
+
+
+[Previous]
+[Up]
+[Next]
+NSCachedImageRep
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSImageRep.h
+Inherits from: NSImageRep
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (id) initWithSize: (NSSize)size depth: (NSWindowDepth)depth separate: (BOOL)flag alpha: (BOOL)alpha
+
+
+
+
+- (id) initWithWindow: (NSWindow*)aWindow
+
+
+
+
+- (NSRect) rect
+
+
+
+
+- (NSWindow*) window
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSCell.html b/Documentation/gsdoc/NSCell.html
new file mode 100644
index 000000000..8b7e420be
--- /dev/null
+++ b/Documentation/gsdoc/NSCell.html
@@ -0,0 +1,702 @@
+
+NSCell
+
+
+[Previous]
+[Up]
+[Next]
+NSCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSCell.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSMenu*) defaultMenu
+
+
+
+
++ (BOOL) prefersTrackingUntilMouseUp
+
+
+
+
+- (BOOL) acceptsFirstResponder
+
+
+
+
+- (SEL) action
+
+
+
+
+- (NSTextAlignment) alignment
+
+
+
+
+- (BOOL) allowsEditingTextAttributes
+
+
+
+
+- (BOOL) allowsMixedState
+
+
+
+
+- (NSAttributedString*) attributedStringValue
+
+
+
+
+- (void) calcDrawInfo: (NSRect)aRect
+
+
+
+
+- (int) cellAttribute: (NSCellAttribute)aParameter
+
+
+
+
+- (NSSize) cellSize
+
+
+
+
+- (NSSize) cellSizeForBounds: (NSRect)aRect
+
+
+
+
+- (NSComparisonResult) compare: (id)otherCell
+
+
+
+
+- (BOOL) continueTracking: (NSPoint)lastPoint at: (NSPoint)currentPoint inView: (NSView*)controlView
+
+
+
+
+- (NSView*) controlView
+
+
+
+
+- (double) doubleValue
+
+
+
+
+- (void) drawInteriorWithFrame: (NSRect)cellFrame
+
+
+
+
+- (void) drawWithFrame: (NSRect)cellFrame
+
+
+
+
+- (NSRect) drawingRectForBounds: (NSRect)theRect
+
+
+
+
+- (void) editWithFrame: (NSRect)aRect inView: (NSView*)controlView editor: (NSText *)textObj delegate: (id)anObject
+
+
+
+
+- (void) endEditing: (NSText*)textObj
+
+
+
+
+- (int) entryType
+
+
+
+
+- (float) floatValue
+
+
+
+
+- (NSFont*) font
+
+
+
+
+- (id) formatter
+
+
+
+
+- (void) getPeriodicDelay: (float*)delay interval: (float*)interval
+
+
+
+
+- (BOOL) hasValidObjectValue
+
+
+
+
+- (void) highlight: (BOOL)flag withFrame: (NSRect)cellFrame
+
+
+
+
+- (NSImage*) image
+
+
+
+
+- (NSRect) imageRectForBounds: (NSRect)theRect
+
+
+
+
+- (BOOL) importsGraphics
+
+
+
+
+- (id) initImageCell: (NSImage*)anImage
+
+
+
+
+- (id) initTextCell: (NSString*)aString
+
+
+
+
+- (int) intValue
+
+
+
+
+- (BOOL) isBezeled
+
+
+
+
+- (BOOL) isBordered
+
+
+
+
+- (BOOL) isContinuous
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (BOOL) isEnabled
+
+
+
+
+- (BOOL) isEntryAcceptable: (NSString*)aString
+
+
+
+
+- (BOOL) isHighlighted
+
+
+
+
+- (BOOL) isOpaque
+
+
+
+
+- (BOOL) isScrollable
+
+
+
+
+- (BOOL) isSelectable
+
+
+
+
+- (NSString*) keyEquivalent
+
+
+
+
+- (NSMenu*) menu
+
+
+
+
+- (NSMenu*) menuForEvent: (NSEvent*)anEvent inRect: (NSRect)cellFrame ofView: (NSView*)aView
+
+
+
+
+- (NSString*) mnemonic
+
+
+
+
+- (unsigned int) mnemonicLocation
+
+
+
+
+- (int) mouseDownFlags
+
+
+
+
+- (int) nextState
+
+
+
+
+- (id) objectValue
+
+
+
+
+- (void) performClick: (id)sender
+
+
+
+
+- (BOOL) refusesFirstResponder
+
+
+
+
+- (id) representedObject
+
+
+
+
+- (void) resetCursorRect: (NSRect)cellFrame
+
+
+
+
+- (int) sendActionOn: (int)mask
+
+
+
+
+- (BOOL) sendsActionOnEndEditing
+
+
+
+
+- (void) setAction: (SEL)aSelector
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)mode
+
+
+
+
+- (void) setAllowsEditingTextAttributes: (BOOL)flag
+
+
+
+
+- (void) setAllowsMixedState: (BOOL)flag
+
+
+
+
+- (void) setAttributedStringValue: (NSAttributedString*)attribStr
+
+
+
+
+- (void) setBezeled: (BOOL)flag
+
+
+
+
+- (void) setBordered: (BOOL)flag
+
+
+
+
+- (void) setCellAttribute: (NSCellAttribute)aParameter
+
+
+
+
+- (void) setContinuous: (BOOL)flag
+
+
+
+
+- (void) setDoubleValue: (double)aDouble
+
+
+
+
+- (void) setEditable: (BOOL)flag
+
+
+
+
+- (void) setEnabled: (BOOL)flag
+
+
+
+
+- (void) setEntryType: (int)aType
+
+
+
+
+- (void) setFloatingPointFormat: (BOOL)autoRange left: (unsigned int)leftDigits right: (unsigned int)rightDigits
+
+
+
+
+- (void) setFloatValue: (float)aFloat
+
+
+
+
+- (void) setFont: (NSFont*)fontObj
+
+
+
+
+- (void) setFormatter: (NSFormatter*)newFormatter
+
+
+
+
+- (void) setImage: (NSImage*)image
+
+
+
+
+- (void) setImportsGraphics: (BOOL)flag
+
+
+
+
+- (void) setIntValue: (int)anInt
+
+
+
+
+- (void) setMenu: (NSMenu*)aMenu
+
+
+
+
+- (void) setMnemonicLocation: (unsigned int)location
+
+
+
+
+- (void) setNextState
+
+
+
+
+- (void) setObjectValue: (id)object
+
+
+
+
+- (void) setRefusesFirstResponder: (BOOL)flag
+
+
+
+
+- (void) setRepresentedObject: (id)anObject
+
+
+
+
+- (void) setScrollable: (BOOL)flag
+
+
+
+
+- (void) setSelectable: (BOOL)flag
+
+
+
+
+- (void) setSendsActionOnEndEditing: (BOOL)flag
+
+
+
+
+- (void) setShowsFirstResponder: (BOOL)flag
+
+
+
+
+- (void) setState: (int)value
+
+
+
+
+- (void) setStringValue: (NSString*)aString
+
+
+
+
+- (void) setTag: (int)anInt
+
+
+
+
+- (void) setTarget: (id)anObject
+
+
+
+
+- (void) setTitleWithMnemonic: (NSString*)aString
+
+
+
+
+- (void) setType: (NSCellType)aType
+
+
+
+
+- (NSText*) setUpFieldEditorAttributes: (NSText*)textObj
+
+
+
+
+- (void) setWraps: (BOOL)flag
+
+
+
+
+- (BOOL) showsFirstResponder
+
+
+
+
+- (BOOL) startTrackingAt: (NSPoint)startPoint
+
+
+
+
+- (int) state
+
+
+
+
+- (void) stopTracking: (NSPoint)lastPoint at: (NSPoint)stopPoint inView: (NSView*)controlView
+
+
+
+
+- (NSString*) stringValue
+
+
+
+
+- (int) tag
+
+
+
+
+- (void) takeDoubleValueFrom: (id)sender
+
+
+
+
+- (void) takeFloatValueFrom: (id)sender
+
+
+
+
+- (void) takeIntValueFrom: (id)sender
+
+
+
+
+- (void) takeObjectValueFrom: (id)sender
+
+
+
+
+- (void) takeStringValueFrom: (id)sender
+
+
+
+
+- (id) target
+
+
+
+
+- (NSRect) titleRectForBounds: (NSRect)theRect
+
+
+
+
+- (BOOL) trackMouse: (NSEvent*)theEvent inRect: (NSRect)cellFrame ofView: (NSView*)controlView untilMouseUp: (BOOL)untilMouseUp
+
+
+
+
+- (NSCellType) type
+
+
+
+
+- (BOOL) wraps
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSClipView.html b/Documentation/gsdoc/NSClipView.html
new file mode 100644
index 000000000..00dd346ec
--- /dev/null
+++ b/Documentation/gsdoc/NSClipView.html
@@ -0,0 +1,198 @@
+
+NSClipView
+
+
+[Previous]
+[Up]
+[Next]
+NSClipView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSClipView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) acceptsFirstResponder
+
+
+
+
+- (BOOL) autoscroll: (NSEvent*)theEvent
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (BOOL) becomeFirstResponder
+
+
+
+
+- (NSPoint) constrainScrollPoint: (NSPoint)proposedNewOrigin
+
+
+
+
+- (BOOL) copiesOnScroll
+
+
+
+
+- (NSCursor*) documentCursor
+
+
+
+
+- (NSRect) documentRect
+
+
+
+
+- (id) documentView
+
+
+
+
+- (NSRect) documentVisibleRect
+
+
+
+
+- (BOOL) isFlipped
+
+
+
+
+- (void) rotateByAngle: (float)angle
+
+
+
+
+- (void) scaleUnitSquareToSize: (NSSize)newUnitSize
+
+
+
+
+- (void) scrollToPoint: (NSPoint)newOrigin
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setBoundsOrigin: (NSPoint)aPoint
+
+
+
+
+- (void) setBoundsRotation: (float)angle
+
+
+
+
+- (void) setBoundsSize: (NSSize)aSize
+
+
+
+
+- (void) setCopiesOnScroll: (BOOL)flag
+
+
+
+
+- (void) setDocumentCursor: (NSCursor*)aCursor
+
+
+
+
+- (void) setDocumentView: (NSView*)aView
+
+
+
+
+- (void) setFrameOrigin: (NSPoint)aPoint
+
+
+
+
+- (void) setFrameRotation: (float)angle
+
+
+
+
+- (void) setFrameSize: (NSSize)aSize
+
+
+
+
+- (void) setNextKeyView: (NSView*)aView
+
+
+
+
+- (void) translateOriginToPoint: (NSPoint)aPoint
+
+
+
+
+- (void) viewBoundsChanged: (NSNotification*)aNotification
+
+
+
+
+- (void) viewFrameChanged: (NSNotification*)aNotification
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSCoderAdditions.html b/Documentation/gsdoc/NSCoderAdditions.html
new file mode 100644
index 000000000..6d5ef38c7
--- /dev/null
+++ b/Documentation/gsdoc/NSCoderAdditions.html
@@ -0,0 +1,34 @@
+
+NSCoderAdditions
+
+
+[Previous]
+[Up]
+[Next]
+NSCoderAdditions
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSColor.h
+Inherits from: NSObject
+
+
+
+
+
+
+- (NSColor*) decodeNXColor
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSColor.html b/Documentation/gsdoc/NSColor.html
new file mode 100644
index 000000000..373ac8ad0
--- /dev/null
+++ b/Documentation/gsdoc/NSColor.html
@@ -0,0 +1,516 @@
+
+NSColor
+
+
+[Previous]
+[Up]
+[Next]
+NSColor
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSColor.h
+Inherits from: NSResponder
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSColor*) blackColor
+
+
+
+
++ (NSColor*) blueColor
+
+
+
+
++ (NSColor*) brownColor
+
+
+
+
++ (NSColor*) clearColor
+
+
+
+
++ (NSColor*) colorFromPasteboard: (NSPasteboard*)pasteBoard
+
+
+
+
++ (NSColor*) colorWithCalibratedHue: (float)hue saturation: (float)saturation brightness: (float)brightness alpha: (float)alpha
+
+
+
+
++ (NSColor*) colorWithCalibratedRed: (float)red green: (float)green blue: (float)blue alpha: (float)alpha
+
+
+
+
++ (NSColor*) colorWithCalibratedWhite: (float)white
+
+
+
+
++ (NSColor*) colorWithCatalogName: (NSString*)listName colorName: (NSString*)colorName
+
+
+
+
++ (NSColor*) colorWithDeviceCyan: (float)cyan magenta: (float)magenta yellow: (float)yellow black: (float)black
+
+
+
+
++ (NSColor*) colorWithDeviceHue: (float)hue saturation: (float)saturation brightness: (float)brightness alpha: (float)alpha
+
+
+
+
++ (NSColor*) colorWithDeviceRed: (float)red green: (float)green blue: (float)blue alpha: (float)alpha
+
+
+
+
++ (NSColor*) colorWithDeviceWhite: (float)white
+
+
+
+
++ (NSColor*) controlBackgroundColor
+
+
+
+
++ (NSColor*) controlColor
+
+
+
+
++ (NSColor*) controlDarkShadowColor
+
+
+
+
++ (NSColor*) controlHighlightColor
+
+
+
+
++ (NSColor*) controlLightHighlightColor
+
+
+
+
++ (NSColor*) controlShadowColor
+
+
+
+
++ (NSColor*) controlTextColor
+
+
+
+
++ (NSColor*) cyanColor
+
+
+
+
++ (NSColor*) darkGrayColor
+
+
+
+
++ (NSColor*) disabledControlTextColor
+
+
+
+
++ (NSColor*) grayColor
+
+
+
+
++ (NSColor*) greenColor
+
+
+
+
++ (NSColor*) gridColor
+
+
+
+
++ (NSColor*) highlightColor
+
+
+
+
++ (BOOL) ignoresAlpha
+
+
+
+
++ (NSColor*) keyboardFocusIndicatorColor
+
+
+
+
++ (NSColor*) knobColor
+
+
+
+
++ (NSColor*) lightGrayColor
+
+
+
+
++ (NSColor*) magentaColor
+
+
+
+
++ (NSColor*) orangeColor
+
+
+
+
++ (NSColor*) purpleColor
+
+
+
+
++ (NSColor*) redColor
+
+
+
+
++ (NSColor*) scrollBarColor
+
+
+
+
++ (NSColor*) selectedControlColor
+
+
+
+
++ (NSColor*) selectedControlTextColor
+
+
+
+
++ (NSColor*) selectedKnobColor
+
+
+
+
++ (NSColor*) selectedMenuItemColor
+
+
+
+
++ (NSColor*) selectedMenuItemTextColor
+
+
+
+
++ (NSColor*) selectedTextBackgroundColor
+
+
+
+
++ (NSColor*) selectedTextColor
+
+
+
+
++ (void) setIgnoresAlpha: (BOOL)flag
+
+
+
+
++ (NSColor*) shadowColor
+
+
+
+
++ (NSColor*) textBackgroundColor
+
+
+
+
++ (NSColor*) textColor
+
+
+
+
++ (NSColor*) whiteColor
+
+
+
+
++ (NSColor*) windowFrameColor
+
+
+
+
++ (NSColor*) windowFrameTextColor
+
+
+
+
++ (NSColor*) yellowColor
+
+
+
+
+- (float) alphaComponent
+
+
+
+
+- (float) blackComponent
+
+
+
+
+- (NSColor*) blendedColorWithFraction: (float)fractiono
+
+
+
+
+- (float) blueComponent
+
+
+
+
+- (float) brightnessComponent
+
+
+
+
+- (NSString*) catalogNameComponent
+
+
+
+
+- (NSString*) colorNameComponent
+
+
+
+
+- (NSString*) colorSpaceName
+
+
+
+
+- (NSColor*) colorUsingColorSpaceName: (NSString*)colorSpace
+
+
+
+
+- (NSColor*) colorUsingColorSpaceName: (NSString*)colorSpace
+
+
+
+
+- (NSColor*) colorWithAlphaComponent: (float)alpha
+
+
+
+
+- (float) cyanComponent
+
+
+
+
+- (void) drawSwatchInRect: (NSRect)rect
+
+
+
+
+- (void) getCyan: (float*)cyan magenta: (float*)magenta yellow: (float *)yellow black: (float*)black
+
+
+
+
+- (void) getHue: (float*)hue saturation: (float*)saturation brightness: (float *)brightness alpha: (float*)alpha
+
+
+
+
+- (void) getRed: (float*)red green: (float*)green blue: (float *)blue alpha: (float*)alpha
+
+
+
+
+- (void) getWhite: (float*)white
+
+
+
+
+- (float) greenComponent
+
+
+
+
+- (NSColor*) highlightWithLevel: (float)highlightLevel
+
+
+
+
+- (float) hueComponent
+
+
+
+
+- (NSString*) localizedCatalogNameComponent
+
+
+
+
+- (NSString*) localizedColorNameComponent
+
+
+
+
+- (float) magentaComponent
+
+
+
+
+- (float) redComponent
+
+
+
+
+- (float) saturationComponent
+
+
+
+
+- (void) set
+
+
+
+
+- (NSColor*) shadowWithLevel: (float)shadowLevel
+
+
+
+
+- (float) whiteComponent
+
+
+
+
+- (void) writeToPasteboard: (NSPasteboard*)pasteBoard
+
+
+
+
+- (float) yellowComponent
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSColorList.html b/Documentation/gsdoc/NSColorList.html
new file mode 100644
index 000000000..d193afbb8
--- /dev/null
+++ b/Documentation/gsdoc/NSColorList.html
@@ -0,0 +1,108 @@
+
+NSColorList
+
+
+[Previous]
+[Up]
+[Next]
+NSColorList
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSColorList.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSArray*) availableColorLists
+
+
+
+
++ (NSColorList*) colorListNamed: (NSString*)name
+
+
+
+
+- (NSArray*) allKeys
+
+
+
+
+- (NSColor*) colorWithKey: (NSString*)key
+
+
+
+
+- (id) initWithName: (NSString*)name
+
+
+
+
+- (id) initWithName: (NSString*)name fromFile: (NSString*)path
+
+
+
+
+- (void) insertColor: (NSColor*)color key: (NSString *)key atIndex: (unsigned int)location
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (NSString*) name
+
+
+
+
+- (void) removeColorWithKey: (NSString*)key
+
+
+
+
+- (void) removeFile
+
+
+
+
+- (void) setColor: (NSColor*)color forKey: (NSString*)key
+
+
+
+
+- (BOOL) writeToFile: (NSString*)path
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSColorPanel.html b/Documentation/gsdoc/NSColorPanel.html
new file mode 100644
index 000000000..d80d0ca87
--- /dev/null
+++ b/Documentation/gsdoc/NSColorPanel.html
@@ -0,0 +1,156 @@
+
+NSColorPanel
+
+
+[Previous]
+[Up]
+[Next]
+NSColorPanel
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSColorPanel.h
+Inherits from: NSPanel
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (BOOL) dragColor: (NSColor*)color withEvent: (NSEvent*)anEvent fromView: (NSView*)sourceView
+
+
+
+
++ (void) setPickerMask: (int)mask
+
+
+
+
++ (void) setPickerMode: (int)mode
+
+
+
+
++ (NSColorPanel*) sharedColorPanel
+
+
+
+
++ (BOOL) sharedColorPanelExists
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (float) alpha
+
+
+
+
+- (void) attachColorList: (NSColorList*)colorList
+
+
+
+
+- (NSColor*) color
+
+
+
+
+- (void) detachColorList: (NSColorList*)colorList
+
+
+
+
+- (BOOL) isContinuous
+
+
+
+
+- (int) mode
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) setAction: (SEL)action
+
+
+
+
+- (void) setColor: (NSColor*)color
+
+
+
+
+- (void) setContinuous: (BOOL)flag
+
+
+
+
+- (void) setMode: (int)mode
+
+
+
+
+- (void) setShowsAlpha: (BOOL)flag
+
+
+
+
+- (void) setTarget: (id)target
+
+
+
+
+- (BOOL) showsAlpha
+
+
+
+
+- (void) changeColor: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSColorPicker.html b/Documentation/gsdoc/NSColorPicker.html
new file mode 100644
index 000000000..97dc8eb01
--- /dev/null
+++ b/Documentation/gsdoc/NSColorPicker.html
@@ -0,0 +1,78 @@
+
+NSColorPicker
+
+
+[Previous]
+[Up]
+[Next]
+NSColorPicker
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSColorPicker.h
+Inherits from: NSObject
+Conforms to: NSColorPickingDefault
+
+
+
+
+
+
+
+- (void) attachColorList: (NSColorList*)colorList
+
+
+
+
+- (NSColorPanel*) colorPanel
+
+
+
+
+- (void) detachColorList: (NSColorList*)colorList
+
+
+
+
+- (id) initWithPickerMask: (int)mask colorPanel: (NSColorPanel*)owningColorPanel
+
+
+
+
+- (void) insertNewButtonImage: (NSImage*)newButtonImage
+
+
+
+
+- (NSImage*) provideNewButtonImage
+
+
+
+
+- (void) setMode: (int)mode
+
+
+
+
+- (void) viewSizeChanged: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSColorWell.html b/Documentation/gsdoc/NSColorWell.html
new file mode 100644
index 000000000..c110a1b2c
--- /dev/null
+++ b/Documentation/gsdoc/NSColorWell.html
@@ -0,0 +1,84 @@
+
+NSColorWell
+
+
+[Previous]
+[Up]
+[Next]
+NSColorWell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSColorWell.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) activate: (BOOL)exclusive
+
+
+
+
+- (NSColor*) color
+
+
+
+
+- (void) deactivate
+
+
+
+
+- (void) drawWellInside: (NSRect)insideRect
+
+
+
+
+- (BOOL) isActive
+
+
+
+
+- (BOOL) isBordered
+
+
+
+
+- (void) setBordered: (BOOL)bordered
+
+
+
+
+- (void) setColor: (NSColor*)color
+
+
+
+
+- (void) takeColorFrom: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSComboBox.html b/Documentation/gsdoc/NSComboBox.html
new file mode 100644
index 000000000..e1c9a7e20
--- /dev/null
+++ b/Documentation/gsdoc/NSComboBox.html
@@ -0,0 +1,240 @@
+
+NSComboBox
+
+
+[Previous]
+[Up]
+[Next]
+NSComboBox
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSComboBox.h
+Inherits from: NSTextField
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (void) addItemsWithObjectValues: (id)objects
+
+
+
+
+- (void) addItemWithObjectValue: (id)anObject
+
+
+
+
+- (BOOL) completes
+
+
+
+
+- (id) dataSource
+
+
+
+
+- (void) deselectItemAtIndex: (int)index
+
+
+
+
+- (void) encodeWithCoder: (NSCoder*)encoder
+
+
+
+
+- (BOOL) hasVerticalScroller
+
+
+
+
+- (int) indexOfItemWithObjectValue: (id)anObject
+
+
+
+
+- (int) indexOfSelectedItem
+
+
+
+
+- (id) initWithCoder: (NSCoder*)decoder
+
+
+
+
+- (void) insertItemWithObjectValue: (id)anObject
+
+
+
+
+- (NSSize) intercellSpacing
+
+
+
+
+- (float) itemHeight
+
+
+
+
+- (id) itemObjectValueAtIndex: (int)index
+
+
+
+
+- (void) noteNumberOfItemsChanged
+
+
+
+
+- (int) numberOfItems
+
+
+
+
+- (int) numberOfVisibleItems
+
+
+
+
+- (id) objectValueOfSelectedItem
+
+
+
+
+- (NSArray*) objectValues
+
+
+
+
+- (void) reloadData
+
+
+
+
+- (void) removeAllItems
+
+
+
+
+- (void) removeItemAtIndex: (int)index
+
+
+
+
+- (void) removeItemWithObjectValue: (id)anObject
+
+
+
+
+- (void) scrollItemAtIndexToTop: (int)index
+
+
+
+
+- (void) scrollItemAtIndexToVisible: (int)index
+
+
+
+
+- (void) selectItemAtIndex: (int)index
+
+
+
+
+- (void) selectItemWithObjectValue: (id)anObject
+
+
+
+
+- (void) setCompletes: (BOOL)completes
+
+
+
+
+- (void) setDataSource: (id)aSource
+
+
+
+
+- (void) setHasVerticalScroller: (BOOL)flag
+
+
+
+
+- (void) setIntercellSpacing: (NSSize)aSize
+
+
+
+
+- (void) setItemHeight: (float)itemHeight
+
+
+
+
+- (void) setNumberOfVisibleItems: (int)visibleItems
+
+
+
+
+- (void) setUsesDataSource: (BOOL)flag
+
+
+
+
+- (BOOL) usesDataSource
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSComboBoxCell.html b/Documentation/gsdoc/NSComboBoxCell.html
new file mode 100644
index 000000000..e76199d78
--- /dev/null
+++ b/Documentation/gsdoc/NSComboBoxCell.html
@@ -0,0 +1,246 @@
+
+NSComboBoxCell
+
+
+[Previous]
+[Up]
+[Next]
+NSComboBoxCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSComboBoxCell.h
+Inherits from: NSTextFieldCell
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (void) addItemsWithObjectValues: (id)objects
+
+
+
+
+- (void) addItemWithObjectValue: (id)anObject
+
+
+
+
+- (NSString*) completedString: (NSString*)substring
+
+
+
+
+- (BOOL) completes
+
+
+
+
+- (id) dataSource
+
+
+
+
+- (void) deselectItemAtIndex: (int)index
+
+
+
+
+- (void) encodeWithCoder: (NSCoder*)encoder
+
+
+
+
+- (BOOL) hasVerticalScroller
+
+
+
+
+- (int) indexOfItemWithObjectValue: (id)anObject
+
+
+
+
+- (int) indexOfSelectedItem
+
+
+
+
+- (id) initWithCoder: (NSCoder*)decoder
+
+
+
+
+- (void) insertItemWithObjectValue: (id)anObject
+
+
+
+
+- (NSSize) intercellSpacing
+
+
+
+
+- (float) itemHeight
+
+
+
+
+- (id) itemObjectValueAtIndex: (int)index
+
+
+
+
+- (void) noteNumberOfItemsChanged
+
+
+
+
+- (int) numberOfItems
+
+
+
+
+- (int) numberOfVisibleItems
+
+
+
+
+- (id) objectValueOfSelectedItem
+
+
+
+
+- (NSArray*) objectValues
+
+
+
+
+- (void) reloadData
+
+
+
+
+- (void) removeAllItems
+
+
+
+
+- (void) removeItemAtIndex: (int)index
+
+
+
+
+- (void) removeItemWithObjectValue: (id)anObject
+
+
+
+
+- (void) scrollItemAtIndexToTop: (int)index
+
+
+
+
+- (void) scrollItemAtIndexToVisible: (int)index
+
+
+
+
+- (void) selectItemAtIndex: (int)index
+
+
+
+
+- (void) selectItemWithObjectValue: (id)anObject
+
+
+
+
+- (void) setCompletes: (BOOL)completes
+
+
+
+
+- (void) setDataSource: (id)aSource
+
+
+
+
+- (void) setHasVerticalScroller: (BOOL)flag
+
+
+
+
+- (void) setIntercellSpacing: (NSSize)aSize
+
+
+
+
+- (void) setItemHeight: (float)itemHeight
+
+
+
+
+- (void) setNumberOfVisibleItems: (int)visibleItems
+
+
+
+
+- (void) setUsesDataSource: (BOOL)flag
+
+
+
+
+- (BOOL) usesDataSource
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSControl.html b/Documentation/gsdoc/NSControl.html
new file mode 100644
index 000000000..a846e0cec
--- /dev/null
+++ b/Documentation/gsdoc/NSControl.html
@@ -0,0 +1,432 @@
+
+NSControl
+
+
+[Previous]
+[Up]
+[Next]
+NSControl
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: <
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (Class) cellClass
+
+
+
+
++ (void) setCellClass: (Class)class
+
+
+
+
+- (BOOL) abortEditing
+
+
+
+
+- (SEL) action
+
+
+
+
+- (NSTextAlignment) alignment
+
+
+
+
+- (NSAttributedString*) attributedStringValue
+
+
+
+
+- (void) calcSize
+
+
+
+
+- (id) cell
+
+
+
+
+- (NSText*) currentEditor
+
+
+
+
+- (double) doubleValue
+
+
+
+
+- (void) drawCell: (NSCell*)aCell
+
+
+
+
+- (void) drawCellInside: (NSCell*)aCell
+
+
+
+
+- (float) floatValue
+
+
+
+
+- (NSFont*) font
+
+
+
+
+- (BOOL) ignoresMultiClick
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (int) intValue
+
+
+
+
+- (BOOL) isContinuous
+
+
+
+
+- (BOOL) isEnabled
+
+
+
+
+- (void) mouseDown: (NSEvent*)theEvent
+
+
+
+
+- (id) objectValue
+
+
+
+
+- (void) performClick: (id)sender
+
+
+
+
+- (BOOL) refusesFirstResponder
+
+
+
+
+- (void) selectCell: (NSCell*)aCell
+
+
+
+
+- (id) selectedCell
+
+
+
+
+- (int) selectedTag
+
+
+
+
+- (BOOL) sendAction: (SEL)theAction
+
+
+
+
+- (int) sendActionOn: (int)mask
+
+
+
+
+- (void) setAction: (SEL)aSelector
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)mode
+
+
+
+
+- (void) setAttributedStringValue: (NSAttributedString*)object
+
+
+
+
+- (void) setCell: (NSCell*)aCell
+
+
+
+
+- (void) setContinuous: (BOOL)flag
+
+
+
+
+- (void) setDoubleValue: (double)aDouble
+
+
+
+
+- (void) setEnabled: (BOOL)flag
+
+
+
+
+- (void) setFloatValue: (float)aFloat
+
+
+
+
+- (void) setFloatingPointFormat: (BOOL)autoRange left: (unsigned int)leftDigits right: (unsigned int)rightDigits
+
+
+
+
+- (void) setFont: (NSFont*)fontObject
+
+
+
+
+- (void) setIgnoresMultiClick: (BOOL)flag
+
+
+
+
+- (void) setIntValue: (int)anInt
+
+
+
+
+- (void) setNeedsDisplay
+
+
+
+
+- (void) setObjectValue: (id)object
+
+
+
+
+- (void) setRefusesFirstResponder: (BOOL)flag
+
+
+
+
+- (void) setStringValue: (NSString*)aString
+
+
+
+
+- (void) setTag: (int)anInt
+
+
+
+
+- (void) setTarget: (id)anObject
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (NSString*) stringValue
+
+
+
+
+- (int) tag
+
+
+
+
+- (void) takeDoubleValueFrom: (id)sender
+
+
+
+
+- (void) takeFloatValueFrom: (id)sender
+
+
+
+
+- (void) takeIntValueFrom: (id)sender
+
+
+
+
+- (void) takeObjectValueFrom: (id)sender
+
+
+
+
+- (void) takeStringValueFrom: (id)sender
+
+
+
+
+- (id) target
+
+
+
+
+- (void) updateCell: (NSCell*)aCell
+
+
+
+
+- (void) updateCellInside: (NSCell*)aCell
+
+
+
+
+- (void) validateEditing
+
+
+
+
+- (BOOL) control: (NSControl*)control didFailToFormatString: (NSString*)string errorDescription: (NSString*)error
+
+
+
+
+- (void) control: (NSControl*)control didFailToValidatePartialString: (NSString*)string errorDescription: (NSString*)error
+
+
+
+
+- (BOOL) control: (NSControl*)control isValidObject: (id)object
+
+
+
+
+- (BOOL) control: (NSControl*)control textShouldBeginEditing: (NSText*)fieldEditor
+
+
+
+
+- (BOOL) control: (NSControl*)control textShouldEndEditing: (NSText*)fieldEditor
+
+
+
+
+- (BOOL) control: (NSControl*)control textView: (NSTextView*)textView doCommandBySelector: (SEL)command
+
+
+
+
+- (void) controlTextDidBeginEditing: (NSNotification*)aNotification
+
+
+
+
+- (void) controlTextDidEndEditing: (NSNotification*)aNotification
+
+
+
+
+- (void) controlTextDidChange: (NSNotification*)aNotification
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSCursor.html b/Documentation/gsdoc/NSCursor.html
new file mode 100644
index 000000000..247c28802
--- /dev/null
+++ b/Documentation/gsdoc/NSCursor.html
@@ -0,0 +1,150 @@
+
+NSCursor
+
+
+[Previous]
+[Up]
+[Next]
+NSCursor
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSCursor.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSCursor*) arrowCursor
+
+
+
+
++ (NSCursor*) currentCursor
+
+
+
+
++ (void) hide
+
+
+
+
++ (NSCursor*) IBeamCursor
+
+
+
+
++ (void) pop
+
+
+
+
++ (void) setHiddenUntilMouseMoves: (BOOL)flag
+
+
+
+
++ (void) unhide
+
+
+
+
+- (NSPoint) hotSpot
+
+
+
+
+- (NSImage*) image
+
+
+
+
+- (id) initWithImage: (NSImage*)newImage foregroundColorHint: (NSColor*)fg backgroundColorHint: (NSColor*)bg hotSpot: (NSPoint)hotSpot
+
+
+
+
+- (id) initWithImage: (NSImage*)newImage
+
+
+
+
+- (BOOL) isSetOnMouseEntered
+
+
+
+
+- (BOOL) isSetOnMouseExited
+
+
+
+
+- (void) mouseEntered: (NSEvent*)anEvent
+
+
+
+
+- (void) mouseExited: (NSEvent*)anEvent
+
+
+
+
+- (void) pop
+
+
+
+
+- (void) push
+
+
+
+
+- (void) set
+
+
+
+
+- (void) setOnMouseEntered: (BOOL)flag
+
+
+
+
+- (void) setOnMouseExited: (BOOL)flag
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSCustomImageRep.html b/Documentation/gsdoc/NSCustomImageRep.html
new file mode 100644
index 000000000..95782968c
--- /dev/null
+++ b/Documentation/gsdoc/NSCustomImageRep.html
@@ -0,0 +1,48 @@
+
+NSCustomImageRep
+
+
+[Previous]
+[Up]
+[Next]
+NSCustomImageRep
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSCustomImageRep.h
+Inherits from: NSImageRep
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (id) delegate
+
+
+
+
+- (SEL) drawSelector
+
+
+
+
+- (id) initWithDrawSelector: (SEL)aMethod delegate: (id)anObject
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSDPSContext.html b/Documentation/gsdoc/NSDPSContext.html
new file mode 100644
index 000000000..6e1b3dba4
--- /dev/null
+++ b/Documentation/gsdoc/NSDPSContext.html
@@ -0,0 +1,276 @@
+
+NSDPSContext
+
+
+[Previous]
+[Up]
+[Next]
+NSDPSContext
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSDPSContext.h
+Inherits from: NSGraphicsContext
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (BOOL) areAllContextsOutputTraced
+
+
+
+
++ (BOOL) areAllContextsSynchronized
+
+
+
+
++ (id) currentContext
+
+
+
+
++ (void) setAllContextsOutputTraced: (BOOL)flag
+
+
+
+
++ (void) setAllContextsSynchronized: (BOOL)flag
+
+
+
+
++ (void) setCurrentContext: (NSGraphicsContext*)context
+
+
+
+
++ (NSString*) stringForDPSError: (constDPSBinObjSeqRec*)error
+
+
+
+
+- (DPSContext) DPSContext
+
+
+
+
+- (void) awaitReturnValues
+
+
+
+
+- (void) chainChildContext: (NSDPSContext*)child
+
+
+
+
+- (NSDPSContext*) childContext
+
+
+
+
+- (DPSErrorProc) errorProc
+
+
+
+
+- (void) flush
+
+
+
+
+- (id)
+
+
+
+
+- (void) interruptExecution
+
+
+
+
+- (BOOL) isDrawingToScreen
+
+
+
+
+- (BOOL) isOutputTraced
+
+
+
+
+- (BOOL) isSynchronized
+
+
+
+
+- (BOOL) isWaitCursorEnabled
+
+
+
+
+- (NSMutableData*) mutableData
+
+
+
+
+- (void) notifyObjectWhenFinishedExecuting: (id<NSDPSContextNotification>)object
+
+
+
+
+- (NSDPSContext*) parentContext
+
+
+
+
+- (void) printFormat: (NSString*)format,...
+
+
+
+
+- (void) printFormat: (NSString*)format arguments: (va_list)argList
+
+
+
+
+- (void) resetCommunication
+
+
+
+
+- (void) setErrorProc: (DPSErrorProc)proc
+
+
+
+
+- (void) setOutputTraced: (BOOL)flag
+
+
+
+
+- (void) setSynchronized: (BOOL)flag
+
+
+
+
+- (void) setTextProc: (DPSTextProc)proc
+
+
+
+
+- (void) setWaitCursorEnabled: (BOOL)flag
+
+
+
+
+- (void) startWaitCursorTimer
+
+
+
+
+- (DPSTextProc) textProc
+
+
+
+
+- (void) unchainContext
+
+
+
+
+- (void) updateNameMap
+
+
+
+
+- (void) wait
+
+
+
+
+- (void) writeBOSArray: (constvoid*)data count: (unsigned int)items ofType: (DPSDefinedType)type
+
+
+
+
+- (void) writeBOSNumString: (constvoid*)data length: (unsigned int)count ofType (DPSDefinedType)type scale: (int)scale
+
+
+
+
+- (void) writeBOSString: (constvoid*)data length: (unsigned int)bytes
+
+
+
+
+- (void) writeBinaryObjectSequence: (constvoid*)data length: (unsigned int)bytes
+
+
+
+
+- (void) writeData: (NSData*)buf
+
+
+
+
+- (void) writePostScriptWithLanguageEncodingConversion: (NSData*)buf
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSDocument.html b/Documentation/gsdoc/NSDocument.html
new file mode 100644
index 000000000..6ca2d6095
--- /dev/null
+++ b/Documentation/gsdoc/NSDocument.html
@@ -0,0 +1,330 @@
+
+NSDocument
+
+
+[Previous]
+[Up]
+[Next]
+NSDocument
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSDocument.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (BOOL) isNativeType: (NSString*)aType
+
+
+
+
++ (NSArray*) readableTypes
+
+
+
+
++ (NSArray*) writableTypes
+
+
+
+
+- (void) addWindowController: (NSWindowController*)aController
+
+
+
+
+- (BOOL) canCloseDocument
+
+
+
+
+- (void) close
+
+
+
+
+- (IBAction) closeDocument: (id)sender
+
+
+
+
+- (NSData*) dataRepresentationOfType: (NSString*)aType
+
+
+
+
+- (NSString*) displayName
+
+
+
+
+- (NSString*) fileName
+
+
+
+
+- (NSString*) fileNameFromRunningSavePanelForSaveOperation: (NSSaveOperationType)saveOperation
+
+
+
+
+- (NSString*) fileType
+
+
+
+
+- (NSFileWrapper*) fileWrapperRepresentationOfType: (NSString*)aType
+
+
+
+
+- (BOOL) hasUndoManager
+
+
+
+
+- (id) init
+
+
+
+
+- (id) initWithContentsOfFile: (NSString*)fileName
+
+
+
+
+- (BOOL) isDocumentEdited
+
+
+
+
+- (BOOL) keepBackupFile
+
+
+
+
+- (BOOL) loadDataRepresentation: (NSData*)docData
+
+
+
+
+- (BOOL) loadFileWrapperRepresentation: (NSFileWrapper*)wrapper
+
+
+
+
+- (NSArray*) makeWindowControllers
+
+
+
+
+- (void) printDocument: (id)sender
+
+
+
+
+- (NSPrintInfo*) printInfo
+
+
+
+
+- (void) printShowingPrintPanel: (BOOL)flag
+
+
+
+
+- (BOOL) readFromFile: (NSString*)fileName
+
+
+
+
+- (void) revertDocumentToSaved: (id)sender
+
+
+
+
+- (BOOL) revertToSavedFromFile: (NSString*)fileName
+
+
+
+
+- (int) runModalPageLayoutWithPrintInfo: (NSPrintInfo*)printInfo
+
+
+
+
+- (int) runModalSavePanel: (NSSavePanel*)savePanel withAccessoryView: (NSView*)accessoryView
+
+
+
+
+- (void) runPageLayout: (id)sender
+
+
+
+
+- (void) saveDocument: (id)sender
+
+
+
+
+- (void) saveDocumentAs: (id)sender
+
+
+
+
+- (void) saveDocumentTo: (id)sender
+
+
+
+
+- (void) setFileName: (NSString*)fileName
+
+
+
+
+- (void) setFileType: (NSString*)docType
+
+
+
+
+- (void) setHasUndoManager: (BOOL)flag
+
+
+
+
+- (void) setPrintInfo: (NSPrintInfo*)printInfo
+
+
+
+
+- (void) setUndoManager: (NSUndoManager*)undoManager
+
+
+
+
+- (BOOL) shouldChangePrintInfo: (NSPrintInfo*)newPrintInfo
+
+
+
+
+- (BOOL) shouldCloseWindowController: (NSWindowController*)windowController
+
+
+
+
+- (BOOL) shouldRunSavePanelWithAccessoryView
+
+
+
+
+- (void) showWindows
+
+
+
+
+- (NSUndoManager*) undoManager
+
+
+
+
+- (void) updateChangeCount: (NSDocumentChangeType)changeType
+
+
+
+
+- (BOOL) validateMenuItem: (NSMenuItem*)anItem
+
+
+
+
+- (void) windowControllerDidLoadNib: (NSWindowController*)windowController
+
+
+
+
+- (void) windowControllerWillLoadNib: (NSWindowController*)windowController
+
+
+
+
+- (NSArray*) windowControllers
+
+
+
+
+- (NSString*) windowNibName
+
+
+
+
+- (BOOL) writeToFile: (NSString*)fileName
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSDocumentController.html b/Documentation/gsdoc/NSDocumentController.html
new file mode 100644
index 000000000..f23e49a73
--- /dev/null
+++ b/Documentation/gsdoc/NSDocumentController.html
@@ -0,0 +1,180 @@
+
+NSDocumentController
+
+
+[Previous]
+[Up]
+[Next]
+NSDocumentController
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSDocumentController.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (id) sharedDocumentController
+
+
+
+
+- (BOOL) closeAllDocuments
+
+
+
+
+- (NSString*) currentDirectory
+
+
+
+
+- (id) currentDocument
+
+
+
+
+- (NSString*) displayNameForType: (NSString*)docType
+
+
+
+
+- (Class) documentClassForType: (NSString*)docType
+
+
+
+
+- (id) documentForFileName: (NSString*)fileName
+
+
+
+
+- (id) documentForWindow: (NSWindow*)window
+
+
+
+
+- (NSArray*) documents
+
+
+
+
+- (NSArray*) fileExtensionsFromType: (NSString*)docType
+
+
+
+
+- (NSArray*) fileNamesFromRunningOpenPanel
+
+
+
+
+- (BOOL) hasEditedDocuments
+
+
+
+
+- (id) makeDocumentWithContentsOfFile: (NSString*)fileName
+
+
+
+
+- (id) makeUntitledDocumentOfType: (NSString*)type
+
+
+
+
+- (void) newDocument: (id)sender
+
+
+
+
+- (void) openDocument: (id)sender
+
+
+
+
+- (id) openDocumentWithContentsOfFile: (NSString*)fileName
+
+
+
+
+- (id) openUntitledDocumentOfType: (NSString*)docType
+
+
+
+
+- (BOOL) reviewUnsavedDocumentsWithAlertTitle: (NSString*)title cancellable: (BOOL)flag
+
+
+
+
+- (int) runModalOpenPanel: (NSOpenPanel*)openPanel
+
+
+
+
+- (void) saveAllDocuments: (id)sender
+
+
+
+
+- (void) setShouldCreateUI: (BOOL)flag
+
+
+
+
+- (BOOL) shouldCreateUI
+
+
+
+
+- (NSString*) typeFromFileExtension: (NSString*)fileExtension
+
+
+
+
+- (BOOL) validateMenuItem: (NSMenuItem*)anItem
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSEPSImageRep.html b/Documentation/gsdoc/NSEPSImageRep.html
new file mode 100644
index 000000000..41c7c8442
--- /dev/null
+++ b/Documentation/gsdoc/NSEPSImageRep.html
@@ -0,0 +1,60 @@
+
+NSEPSImageRep
+
+
+[Previous]
+[Up]
+[Next]
+NSEPSImageRep
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSEPSImageRep.h
+Inherits from: NSImageRep
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (id) imageRepWithData: (NSData*)epsData
+
+
+
+
+- (NSData*) EPSRepresentation
+
+
+
+
+- (NSRect) boundingBox
+
+
+
+
+- (id) initWithData: (NSData*)epsData
+
+
+
+
+- (void) prepareGState
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSEvent.html b/Documentation/gsdoc/NSEvent.html
new file mode 100644
index 000000000..fe5f27a6d
--- /dev/null
+++ b/Documentation/gsdoc/NSEvent.html
@@ -0,0 +1,174 @@
+
+NSEvent
+
+
+[Previous]
+[Up]
+[Next]
+NSEvent
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSEvent.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSEvent*) enterExitEventWithType: (NSEventType)type location: (NSPoint)location modifierFlags: (unsigned int)flags timestamp: (NSTimeInterval)time windowNumber: (int)windowNumber context: (NSDPSContext *)context eventNumber: (int)eventNumber trackingNumber: (int)trackingNumber
+
+
+
+
++ (NSEvent*) keyEventWithType: (NSEventType)type location: (NSPoint)location modifierFlags: (unsigned int)flags timestamp: (NSTimeInterval)time windowNumber: (int)windowNum context: (NSDPSContext *)context characters: (NSString*)characters charactersIgnoringModifiers: (NSString*)unmodCharacters isARepeat: (BOOL)repeatKey keyCode: (unsigned short int)code
+
+
+
+
++ (NSEvent*) mouseEventWithType: (NSEventType)type location: (NSPoint)location modifierFlags: (unsigned int)flags timestamp: (NSTimeInterval)time windowNumber: (int)windowNum context: (NSDPSContext *)context eventNumber: (int)eventNumber clickCount: (int)clickNumber pressure: (float)pressure
+
+
+
+
++ (NSEvent*) otherEventWithType: (NSEventType)type location: (NSPoint)location modifierFlags: (unsigned int)flags timestamp: (NSTimeInterval)time windowNumber: (int)windowNum context: (NSDPSContext *)context subtype: (shortint)subtype data1: (int)data1 data2: (int)data2
+
+
+
+
++ (void) stopPeriodicEvents
+
+
+
+
+- (NSString*) characters
+
+
+
+
+- (NSString*) charactersIgnoringModifiers
+
+
+
+
+- (int) clickCount
+
+
+
+
+- (NSDPSContext*) context
+
+
+
+
+- (int) data1
+
+
+
+
+- (int) data2
+
+
+
+
+- (int) eventNumber
+
+
+
+
+- (BOOL) isARepeat
+
+
+
+
+- (unsigned short int) keyCode
+
+
+
+
+- (NSPoint) locationInWindow
+
+
+
+
+- (unsigned int) modifierFlags
+
+
+
+
+- (float) pressure
+
+
+
+
+- (shortint) subtype
+
+
+
+
+- (NSTimeInterval) timestamp
+
+
+
+
+- (int) trackingNumber
+
+
+
+
+- (NSEventType) type
+
+
+
+
+- (void*) userData
+
+
+
+
+- (NSWindow*) window
+
+
+
+
+- (int) windowNumber
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSFileWrapper.html b/Documentation/gsdoc/NSFileWrapper.html
new file mode 100644
index 000000000..1d56bc0f3
--- /dev/null
+++ b/Documentation/gsdoc/NSFileWrapper.html
@@ -0,0 +1,204 @@
+
+NSFileWrapper
+
+
+[Previous]
+[Up]
+[Next]
+NSFileWrapper
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSFileWrapper.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (NSString*) addFileWithPath: (NSString*)path
+
+
+
+
+- (NSString*) addFileWrapper: (NSFileWrapper*)wrapper
+
+
+
+
+- (NSString*) addRegularFileWithContents: (NSData*)contents preferredFilename: (NSString*)filename
+
+
+
+
+- (NSString*) addSymbolicLinkWithDestination: (NSString*)path preferredFilename: (NSString*)filename
+
+
+
+
+- (NSDictionary*) fileAttributes
+
+
+
+
+- (NSString*) filename
+
+
+
+
+- (NSDictionary*) fileWrappers
+
+
+
+
+- (NSImage*) icon
+
+
+
+
+- (id) initDirectoryWithFileWrappers: (NSDictionary*)wrappers
+
+
+
+
+- (id) initRegularFileWithContents: (NSData*)contents
+
+
+
+
+- (id) initSymbolicLinkWithDestination: (NSString*)path
+
+
+
+
+- (id) initWithPath: (NSString*)path
+
+
+
+
+- (id) initWithSerializedRepresentation: (NSData*)data
+
+
+
+
+- (BOOL) isDirectory
+
+
+
+
+- (BOOL) isRegularFile
+
+
+
+
+- (BOOL) isSymbolicLink
+
+
+
+
+- (NSString*) keyForFileWrapper: (NSFileWrapper*)wrapper
+
+
+
+
+- (BOOL) needsToBeUpdatedFromPath: (NSString*)path
+
+
+
+
+- (NSString*) preferredFilename
+
+
+
+
+- (NSData*) regularFileContents
+
+
+
+
+- (void) removeFileWrapper: (NSFileWrapper*)wrapper
+
+
+
+
+- (NSData*) serializedRepresentation
+
+
+
+
+- (void) setFileAttributes: (NSDictionary*)attributes
+
+
+
+
+- (void) setFilename: (NSString*)filename
+
+
+
+
+- (void) setIcon: (NSImage*)anImage
+
+
+
+
+- (void) setPreferredFilename: (NSString*)filename
+
+
+
+
+- (NSString*) symbolicLinkDestination
+
+
+
+
+- (BOOL) updateFromPath: (NSString*)path
+
+
+
+
+- (BOOL) writeToFile: (NSString*)path atomically: (BOOL)atomicFlag updateFilenames: (BOOL)updateNamesFlag
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSFont.html b/Documentation/gsdoc/NSFont.html
new file mode 100644
index 000000000..bba8a9186
--- /dev/null
+++ b/Documentation/gsdoc/NSFont.html
@@ -0,0 +1,342 @@
+
+NSFont
+
+
+[Previous]
+[Up]
+[Next]
+NSFont
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSFont.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSFont*) boldSystemFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) controlContentFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) fontWithName: (NSString*)typeface
+
+
+
+
++ (NSFont*) fontWithName: (NSString*)fontName
+
+
+
+
++ (NSFont*) menuFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) messageFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) paletteFontOfSize: (float)fontSize
+
+
+
+
++ (NSArray*) preferredFontNames
+
+
+
+
++ (void) setPreferredFontNames: (NSArray*)fontNames
+
+
+
+
++ (void) setUserFixedPitchFont: (NSFont*)aFont
+
+
+
+
++ (void) setUserFont: (NSFont*)aFont
+
+
+
+
++ (NSFont*) systemFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) titleBarFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) toolTipsFontOfSize: (float)fontSize
+
+
+
+
++ (void) useFont: (NSString*)fontName
+
+
+
+
++ (NSFont*) userFixedPitchFontOfSize: (float)fontSize
+
+
+
+
++ (NSFont*) userFontOfSize: (float)fontSize
+
+
+
+
+- (NSSize) advancementForGlyph: (NSGlyph)aGlyph
+
+
+
+
+- (NSString*) afmFileContents
+
+
+
+
+- (float) ascender
+
+
+
+
+- (NSRect) boundingRectForFont
+
+
+
+
+- (NSRect) boundingRectForGlyph: (NSGlyph)aGlyph
+
+
+
+
+- (float) capHeight
+
+
+
+
+- (float) descender
+
+
+
+
+- (NSString*) displayName
+
+
+
+
+- (NSString*) encodingScheme
+
+
+
+
+- (NSString*) familyName
+
+
+
+
+- (NSString*) fontName
+
+
+
+
+- (BOOL) glyphIsEncoded: (NSGlyph)aGlyph
+
+
+
+
+- (NSMultibyteGlyphPacking) glyphPacking
+
+
+
+
+- (NSGlyph) glyphWithName: (NSString*)glyphName
+
+
+
+
+- (BOOL) isBaseFont
+
+
+
+
+- (BOOL) isFixedPitch
+
+
+
+
+- (float) italicAngle
+
+
+
+
+- (constfloat*) matrix
+
+
+
+
+- (NSSize) maximumAdvancement
+
+
+
+
+- (NSStringEncoding) mostCompatibleStringEncoding
+
+
+
+
+- (float) pointSize
+
+
+
+
+- (NSPoint) positionOfGlyph: (NSGlyph)aGlyph forCharacter: (unichar)aChar struckOverRect: (NSRect)aRect
+
+
+
+
+- (NSPoint) positionOfGlyph: (NSGlyph)aGlyph precededByGlyph: (NSGlyph)prevGlyph
+
+
+
+
+- (NSPoint) positionOfGlyph: (NSGlyph)aGlyph struckOverGlyph: (NSGlyph)baseGlyph metricsExist: (BOOL*)flag
+
+
+
+
+- (NSPoint) positionOfGlyph: (NSGlyph)aGlyph struckOverRect: (NSRect)aRect metricsExist: (BOOL*)flag
+
+
+
+
+- (NSPoint) positionOfGlyph: (NSGlyph)aGlyph withRelation: (NSGlyphRelation)relation toBaseGlyph: (NSGlyph)baseGlyph totalAdvancement: (NSSizePointer)offset metricsExist: (BOOL*)flag
+
+
+
+
+- (int) positionsForCompositeSequence: (NSGlyph*)glyphs numberOfGlyphs: (int)numGlyphs pointArray: (NSPointArray)points
+
+
+
+
+- (NSFont*) printerFont
+
+
+
+
+- (NSFont*) screenFont
+
+
+
+
+- (void) set
+
+
+
+
+- (float) underlinePosition
+
+
+
+
+- (float) underlineThickness
+
+
+
+
+- (float) widthOfString: (NSString*)aString
+
+
+
+
+- (float*) widths
+
+
+
+
+- (float) xHeight
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSFontManager.html b/Documentation/gsdoc/NSFontManager.html
new file mode 100644
index 000000000..3c2585bb4
--- /dev/null
+++ b/Documentation/gsdoc/NSFontManager.html
@@ -0,0 +1,264 @@
+
+NSFontManager
+
+
+[Previous]
+[Up]
+[Next]
+NSFontManager
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSFontManager.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (void) setFontManagerFactory: (Class)aClass
+
+
+
+
++ (void) setFontPanelFactory: (Class)factoryId
+
+
+
+
++ (NSFontManager*) sharedFontManager
+
+
+
+
+- (SEL) action
+
+
+
+
+- (void) addFontTrait: (id)sender
+
+
+
+
+- (NSArray*) availableFontFamilies
+
+
+
+
+- (NSArray*) availableFontNamesWithTraits: (NSFontTraitMask)fontTraitMask
+
+
+
+
+- (NSArray*) availableFonts
+
+
+
+
+- (NSArray*) availableMembersOfFontFamily: (NSString*)family
+
+
+
+
+- (NSFont*) convertFont: (NSFont*)aFont
+
+
+
+
+- (NSFont*) convertFont: (NSFont*)aFont toFace: (NSString*)typeface
+
+
+
+
+- (NSFont*) convertFont: (NSFont*)aFont toFamily: (NSString*)family
+
+
+
+
+- (NSFont*) convertFont: (NSFont*)aFont toHaveTrait: (NSFontTraitMask)fontTrait
+
+
+
+
+- (NSFont*) convertFont: (NSFont*)aFont toNotHaveTrait: (NSFontTraitMask)fontTraitMask
+
+
+
+
+- (NSFont*) convertFont: (NSFont*)aFont toSize: (float)size
+
+
+
+
+- (NSFont*) convertWeight: (BOOL)increaseFlag
+
+
+
+
+- (id) delegate
+
+
+
+
+- (NSMenu*) fontMenu: (BOOL)createFlag
+
+
+
+
+- (BOOL) fontNamed: (NSString*)typeface hasTraits: (NSFontTraitMask)fontTraitMask
+
+
+
+
+- (NSFontPanel*) fontPanel: (BOOL)createFlag
+
+
+
+
+- (NSFont*) fontWithFamily: (NSString*)family traits: (NSFontTraitMask)fontTraitMask weight: (int)weight
+
+
+
+
+- (BOOL) isEnabled
+
+
+
+
+- (BOOL) isMultiple
+
+
+
+
+- (NSString*) localizedNameForFamily: (NSString*)family
+
+
+
+
+- (void) modifyFont: (id)sender
+
+
+
+
+- (void) modifyFontViaPanel: (id)sender
+
+
+
+
+- (void) orderFrontFontPanel: (id)sender
+
+
+
+
+- (void) removeFontTrait: (id)sender
+
+
+
+
+- (NSFont*) selectedFont
+
+
+
+
+- (BOOL) sendAction
+
+
+
+
+- (void) setAction: (SEL)aSelector
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setEnabled: (BOOL)flag
+
+
+
+
+- (void) setFontMenu: (NSMenu*)aMenu
+
+
+
+
+- (void) setSelectedFont: (NSFont*)aFont isMultiple: (BOOL)flag
+
+
+
+
+- (NSFontTraitMask) traitsOfFont: (NSFont*)aFont
+
+
+
+
+- (int) weightOfFont: (NSFont*)aFont
+
+
+
+
+- (void) changeFont: (id)sender
+
+
+
+
+- (BOOL) fontManager: (id)theFontManager willIncludeFont: (NSString*)fontName
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSFontPanel.html b/Documentation/gsdoc/NSFontPanel.html
new file mode 100644
index 000000000..8cbef30be
--- /dev/null
+++ b/Documentation/gsdoc/NSFontPanel.html
@@ -0,0 +1,84 @@
+
+NSFontPanel
+
+
+[Previous]
+[Up]
+[Next]
+NSFontPanel
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSFontPanel.h
+Inherits from: NSPanel
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSFontPanel*) sharedFontPanel
+
+
+
+
++ (BOOL) sharedFontPanelExists
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (BOOL) isEnabled
+
+
+
+
+- (NSFont*) panelConvertFont: (NSFont*)aFont
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) setEnabled: (BOOL)flag
+
+
+
+
+- (void) setPanelFont: (NSFont*)aFont isMultiple: (BOOL)flag
+
+
+
+
+- (BOOL) worksWhenModal
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSForm.html b/Documentation/gsdoc/NSForm.html
new file mode 100644
index 000000000..a52c85f00
--- /dev/null
+++ b/Documentation/gsdoc/NSForm.html
@@ -0,0 +1,126 @@
+
+NSForm
+
+
+[Previous]
+[Up]
+[Next]
+NSForm
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSForm.h
+Inherits from: NSMatrix
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSFormCell*) addEntry: (NSString*)title
+
+
+
+
+- (id) cellAtIndex: (int)entryIndex
+
+
+
+
+- (void) drawCellAtIndex: (int)entryIndex
+
+
+
+
+- (int) indexOfCellWithTag: (int)tag
+
+
+
+
+- (int) indexOfSelectedItem
+
+
+
+
+- (NSFormCell*) insertEntry: (NSString*)title atIndex: (int)entryIndex
+
+
+
+
+- (void) removeEntryAtIndex: (int)entryIndex
+
+
+
+
+- (void) selectTextAtIndex: (int)entryIndex
+
+
+
+
+- (void) setBezeled: (BOOL)flag
+
+
+
+
+- (void) setBordered: (BOOL)flag
+
+
+
+
+- (void) setEntryWidth: (float)width
+
+
+
+
+- (void) setInterlineSpacing: (float)spacing
+
+
+
+
+- (void) setTextAlignment: (int)alignment
+
+
+
+
+- (void) setTextFont: (NSFont*)font
+
+
+
+
+- (void) setTitleAlignment: (NSTextAlignment)alignment
+
+
+
+
+- (void) setTitleFont: (NSFont*)font
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSFormCell.html b/Documentation/gsdoc/NSFormCell.html
new file mode 100644
index 000000000..de67ddd9e
--- /dev/null
+++ b/Documentation/gsdoc/NSFormCell.html
@@ -0,0 +1,114 @@
+
+NSFormCell
+
+
+[Previous]
+[Up]
+[Next]
+NSFormCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSFormCell.h
+Inherits from: NSActionCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSAttributedString*) attributedTitle
+
+
+
+
+- (id) initTextCell: (NSString*)aString
+
+
+
+
+- (BOOL) isOpaque
+
+
+
+
+- (void) setAttributedTitle: (NSAttributedString*)anAttributedString
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) setTitleAlignment: (NSTextAlignment)alignment
+
+
+
+
+- (void) setTitleFont: (NSFont*)font
+
+
+
+
+- (void) setTitleWidth: (float)width
+
+
+
+
+- (void) setTitleWithMnemonic: (NSString*)titleWithAmpersand
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (NSTextAlignment) titleAlignment
+
+
+
+
+- (NSFont*) titleFont
+
+
+
+
+- (float) titleWidth
+
+
+
+
+- (float) titleWidth: (NSSize)aSize
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSGraphicsContext.html b/Documentation/gsdoc/NSGraphicsContext.html
new file mode 100644
index 000000000..52c49b6e2
--- /dev/null
+++ b/Documentation/gsdoc/NSGraphicsContext.html
@@ -0,0 +1,78 @@
+
+NSGraphicsContext
+
+
+[Previous]
+[Up]
+[Next]
+NSGraphicsContext
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSGraphicsContext.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSGraphicsContext*) currentContext
+
+
+
+
++ (void) setCurrentContext: (NSGraphicsContext*)context
+
+
+
+
+- (void) flush
+
+
+
+
+- (void) flushGraphics
+
+
+
+
+- (BOOL) isDrawingToScreen
+
+
+
+
+- (void) restoreGraphicsState
+
+
+
+
+- (void) saveGraphicsState
+
+
+
+
+- (void) wait
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSHelpManager.html b/Documentation/gsdoc/NSHelpManager.html
new file mode 100644
index 000000000..c1279285f
--- /dev/null
+++ b/Documentation/gsdoc/NSHelpManager.html
@@ -0,0 +1,72 @@
+
+NSHelpManager
+
+
+[Previous]
+[Up]
+[Next]
+NSHelpManager
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSHelpManager.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (BOOL) isContextHelpModeActive
+
+
+
+
++ (void) setContextHelpModeActive: (BOOL)flag
+
+
+
+
++ (NSHelpManager*) sharedHelpManager
+
+
+
+
+- (NSAttributedString*) contextHelpForObject: (id)object
+
+
+
+
+- (void) removeContextHelpForObject: (id)object
+
+
+
+
+- (void) setContextHelp: (NSAttributedString*)help forObject: (id)object
+
+
+
+
+- (BOOL) showContextHelpForObject: (id)object locationHint: (NSPoint)point
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSImage.html b/Documentation/gsdoc/NSImage.html
new file mode 100644
index 000000000..5fccca974
--- /dev/null
+++ b/Documentation/gsdoc/NSImage.html
@@ -0,0 +1,360 @@
+
+NSImage
+
+
+[Previous]
+[Up]
+[Next]
+NSImage
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSImage.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (BOOL) canInitWithPasteboard: (NSPasteboard*)pasteboard
+
+
+
+
++ (NSArray*) imageFileTypes
+
+
+
+
++ (id) imageNamed: (NSString*)name
+
+
+
+
++ (NSArray*) imagePasteboardTypes
+
+
+
+
++ (NSArray*) imageUnfilteredFileTypes
+
+
+
+
++ (NSArray*) imageUnfilteredPasteboardTypes
+
+
+
+
+- (void) addRepresentation: (NSImageRep*)imageRep
+
+
+
+
+- (void) addRepresentations: (NSArray*)imageReps
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (NSImageRep*) bestRepresentationForDevice: (NSDictionary*)deviceDescription
+
+
+
+
+- (BOOL) cacheDepthMatchesImageDepth
+
+
+
+
+- (void) compositeToPoint: (NSPoint)aPoint fromRect: (NSRect)aRect operation: (NSCompositingOperation)op
+
+
+
+
+- (void) compositeToPoint: (NSPoint)aPoint operation: (NSCompositingOperation)op
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) dissolveToPoint: (NSPoint)aPoint fraction: (float)aFloat
+
+
+
+
+- (void) dissolveToPoint: (NSPoint)aPoint fromRect: (NSRect)aRect fraction: (float)aFloat
+
+
+
+
+- (BOOL) drawRepresentation: (NSImageRep*)imageRep
+
+
+
+
+- (id) initByReferencingFile: (NSString*)filename
+
+
+
+
+- (id) initWithBitmapHandle: (void*)bitmap
+
+
+
+
+- (id) initWithContentsOfFile: (NSString*)filename
+
+
+
+
+- (id) initWithData: (NSData*)data
+
+
+
+
+- (id) initWithIconHandle: (void*)icon
+
+
+
+
+- (id) initWithPasteboard: (NSPasteboard*)pasteboard
+
+
+
+
+- (id) initWithSize: (NSSize)aSize
+
+
+
+
+- (BOOL) isCachedSeparately
+
+
+
+
+- (BOOL) isDataRetained
+
+
+
+
+- (BOOL) isFlipped
+
+
+
+
+- (BOOL) isValid
+
+
+
+
+- (void) lockFocus
+
+
+
+
+- (void) lockFocusOnRepresentation: (NSImageRep*)imageRepresentation
+
+
+
+
+- (BOOL) matchesOnMultipleResolution
+
+
+
+
+- (NSString*) name
+
+
+
+
+- (BOOL) prefersColorMatch
+
+
+
+
+- (void) recache
+
+
+
+
+- (void) removeRepresentation: (NSImageRep*)imageRep
+
+
+
+
+- (NSArray*) representations
+
+
+
+
+- (BOOL) scalesWhenResized
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setCacheDepthMatchesImageDepth: (BOOL)flag
+
+
+
+
+- (void) setCachedSeparately: (BOOL)flag
+
+
+
+
+- (void) setDataRetained: (BOOL)flag
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setFlipped: (BOOL)flag
+
+
+
+
+- (void) setMatchesOnMultipleResolution: (BOOL)flag
+
+
+
+
+- (BOOL) setName: (NSString*)aString
+
+
+
+
+- (void) setPrefersColorMatch: (BOOL)flag
+
+
+
+
+- (void) setScalesWhenResized: (BOOL)flag
+
+
+
+
+- (void) setSize: (NSSize)aSize
+
+
+
+
+- (void) setUsesEPSOnResolutionMismatch: (BOOL)flag
+
+
+
+
+- (NSSize) size
+
+
+
+
+- (NSData*) TIFFRepresentation
+
+
+
+
+- (NSData*) TIFFRepresentationUsingCompression: (NSTIFFCompression)comp factor: (float)aFloat
+
+
+
+
+- (void) unlockFocus
+
+
+
+
+- (BOOL) usesEPSOnResolutionMismatch
+
+
+
+
+- (NSImage*) imageDidNotDraw: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSImageCell.html b/Documentation/gsdoc/NSImageCell.html
new file mode 100644
index 000000000..d076b7008
--- /dev/null
+++ b/Documentation/gsdoc/NSImageCell.html
@@ -0,0 +1,66 @@
+
+NSImageCell
+
+
+[Previous]
+[Up]
+[Next]
+NSImageCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSImageCell.h
+Inherits from: NSCell
+Conforms to: NSCopying
+
+
+
+
+
+
+
+- (NSImageAlignment) imageAlignment
+
+
+
+
+- (NSImageFrameStyle) imageFrameStyle
+
+
+
+
+- (NSImageScaling) imageScaling
+
+
+
+
+- (void) setImageAlignment: (NSImageAlignment)alignment
+
+
+
+
+- (void) setImageFrameStyle: (NSImageFrameStyle)frameStyle
+
+
+
+
+- (void) setImageScaling: (NSImageScaling)scaling
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSImageRep.html b/Documentation/gsdoc/NSImageRep.html
new file mode 100644
index 000000000..c4ce26e33
--- /dev/null
+++ b/Documentation/gsdoc/NSImageRep.html
@@ -0,0 +1,228 @@
+
+NSImageRep
+
+
+[Previous]
+[Up]
+[Next]
+NSImageRep
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSImageRep.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (BOOL) canInitWithData: (NSData*)data
+
+
+
+
++ (BOOL) canInitWithPasteboard: (NSPasteboard*)pasteboard
+
+
+
+
++ (NSArray*) imageFileTypes
+
+
+
+
++ (NSArray*) imagePasteboardTypes
+
+
+
+
++ (Class) imageRepClassForData: (NSData*)data
+
+
+
+
++ (Class) imageRepClassForFileType: (NSString*)type
+
+
+
+
++ (Class) imageRepClassForPasteboardType: (NSString*)type
+
+
+
+
++ (id) imageRepWithContentsOfFile: (NSString*)filename
+
+
+
+
++ (id) imageRepWithPasteboard: (NSPasteboard*)pasteboard
+
+
+
+
++ (NSArray*) imageRepsWithContentsOfFile: (NSString*)filename
+
+
+
+
++ (NSArray*) imageRepsWithPasteboard: (NSPasteboard*)pasteboard
+
+
+
+
++ (NSArray*) imageUnfilteredFileTypes
+
+
+
+
++ (NSArray*) imageUnfilteredPasteboardTypes
+
+
+
+
++ (void) registerImageRepClass: (Class)imageRepClass
+
+
+
+
++ (NSArray*) registeredImageRepClasses
+
+
+
+
++ (void) unregisterImageRepClass: (Class)imageRepClass
+
+
+
+
+- (int) bitsPerSample
+
+
+
+
+- (NSString*) colorSpaceName
+
+
+
+
+- (BOOL) draw
+
+
+
+
+- (BOOL) drawAtPoint: (NSPoint)aPoint
+
+
+
+
+- (BOOL) drawInRect: (NSRect)rect
+
+
+
+
+- (BOOL) hasAlpha
+
+
+
+
+- (BOOL) isOpaque
+
+
+
+
+- (int) pixelsHigh
+
+
+
+
+- (int) pixelsWide
+
+
+
+
+- (void) setAlpha: (BOOL)flag
+
+
+
+
+- (void) setBitsPerSample: (int)anInt
+
+
+
+
+- (void) setColorSpaceName: (NSString*)string
+
+
+
+
+- (void) setOpaque: (BOOL)flag
+
+
+
+
+- (void) setPixelsHigh: (int)anInt
+
+
+
+
+- (void) setPixelsWide: (int)anInt
+
+
+
+
+- (void) setSize: (NSSize)aSize
+
+
+
+
+- (NSSize) size
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSImageView.html b/Documentation/gsdoc/NSImageView.html
new file mode 100644
index 000000000..2fd8ce4aa
--- /dev/null
+++ b/Documentation/gsdoc/NSImageView.html
@@ -0,0 +1,90 @@
+
+NSImageView
+
+
+[Previous]
+[Up]
+[Next]
+NSImageView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSImageView.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSImage*) image
+
+
+
+
+- (NSImageAlignment) imageAlignment
+
+
+
+
+- (NSImageFrameStyle) imageFrameStyle
+
+
+
+
+- (NSImageScaling) imageScaling
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (void) setEditable: (BOOL)flag
+
+
+
+
+- (void) setImage: (NSImage*)image
+
+
+
+
+- (void) setImageAlignment: (NSImageAlignment)alignment
+
+
+
+
+- (void) setImageFrameStyle: (NSImageFrameStyle)frameStyle
+
+
+
+
+- (void) setImageScaling: (NSImageScaling)scaling
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSInputManager.html b/Documentation/gsdoc/NSInputManager.html
new file mode 100644
index 000000000..edb8b3dfb
--- /dev/null
+++ b/Documentation/gsdoc/NSInputManager.html
@@ -0,0 +1,66 @@
+
+NSInputManager
+
+
+[Previous]
+[Up]
+[Next]
+NSInputManager
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSInputManager.h
+Inherits from: NSObject
+Conforms to: NSTextInput
+
+
+
+
+
+
+
++ (NSInputManager*) currentInputManager
+
+
+
+
+- (NSInputManager*) initWithName: (NSString*)inputServerName
+
+
+
+
+- (NSString*) localizedInputManagerName
+
+
+
+
+- (void) markedTextSelectionChanged: (NSRange)aRange
+
+
+
+
+- (void) markedTextWillBeAbandoned: (id)sender
+
+
+
+
+- (BOOL) wantsToInterpretAllKeystrokes
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSInputServer.html b/Documentation/gsdoc/NSInputServer.html
new file mode 100644
index 000000000..d1cda1b87
--- /dev/null
+++ b/Documentation/gsdoc/NSInputServer.html
@@ -0,0 +1,108 @@
+
+NSInputServer
+
+
+[Previous]
+[Up]
+[Next]
+NSInputServer
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSInputServer.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (void) activeConversationWillChange: (id)sender oldConversation: (long)conv newConversation: (long)new
+
+
+
+
+- (BOOL) canBeDisabled
+
+
+
+
+- (void) cancelInput: (id)sender conversation: (long)conv
+
+
+
+
+- (void) doCommandBySelector: (SEL)aSelector sender: (id)sender conversation: (long)conv
+
+
+
+
+- (id)
+
+
+
+
+- (void) insertText: (NSString*)aString sender: (id)sender conversation: (long)conv
+
+
+
+
+- (void) markedTextSelectionChanged: (NSRange)aRange sender: (id)sender conversation: (long)conv
+
+
+
+
+- (void) markedTextWillBeAbandoned: (id)sender conversation: (long)conv
+
+
+
+
+- (void) senderDidBecomeActive: (id)sender
+
+
+
+
+- (void) senderDidResignActive: (id)sender
+
+
+
+
+- (void) setActivated: (BOOL)flag sender: (id)sender
+
+
+
+
+- (void) terminate: (id)sender
+
+
+
+
+- (BOOL) wantsToInterpretAllKeystrokes
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSLayoutManager.html b/Documentation/gsdoc/NSLayoutManager.html
new file mode 100644
index 000000000..953106b97
--- /dev/null
+++ b/Documentation/gsdoc/NSLayoutManager.html
@@ -0,0 +1,528 @@
+
+NSLayoutManager
+
+
+[Previous]
+[Up]
+[Next]
+NSLayoutManager
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSLayoutManager.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (void) addTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (BOOL) backgroundLayoutEnabled
+
+
+
+
+- (NSRect) boundingRectForGlyphRange: (NSRange)glyphRange inTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (unsigned int) characterIndexForGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (NSRange) characterRangeForGlyphRange: (NSRange)glyphRange actualGlyphRange: (NSRange*)actualGlyphRange
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) deleteGlyphsInRange: (NSRange)glyphRange
+
+
+
+
+- (void) drawBackgroundForGlyphRange: (NSRange)glyphRange
+
+
+
+
+- (void) drawGlyphsForGlyphRange: (NSRange)glyphRange
+
+
+
+
+- (BOOL) drawsOutsideLineFragmentForGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) drawUnderlineForGlyphRange: (NSRange)glyphRange underlineType: (int)underlineType baselineOffset: (float)baselineOffset lineFragmentRect: (NSRect)lineRect lineFragmentGlyphRange: (NSRange)lineGlyphRange containerOrigin: (NSPoint)containerOrigin
+
+
+
+
+- (NSRect) extraLineFragmentRect
+
+
+
+
+- (NSTextContainer*) extraLineFragmentTextContainer
+
+
+
+
+- (NSRect) extraLineFragmentUsedRect
+
+
+
+
+- (NSTextView*) firstTextView
+
+
+
+
+- (unsigned int) firstUnlaidCharacterIndex
+
+
+
+
+- (unsigned int) firstUnlaidGlyphIndex
+
+
+
+
+- (float) fractionOfDistanceThroughGlyphForPoint: (NSPoint)aPoint inTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) getFirstUnlaidCharacterIndex: (unsigned int*)charIndex glyphIndex: (unsigned int*)glyphIndex
+
+
+
+
+- (unsigned int) getGlyphs: (NSGlyph*)glyphArray
+
+
+
+
+- (NSGlyph) glyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (NSGlyph) glyphAtIndex: (unsigned int)glyphIndex isValidIndex: (BOOL*)flag
+
+
+
+
+- (unsigned int) glyphIndexForPoint: (NSPoint)aPoint inTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (unsigned int) glyphIndexForPoint: (NSPoint)aPoint inTextContainer: (NSTextContainer*)aTextContainer fractionOfDistanceThroughGlyph: (float*)partialFraction
+
+
+
+
+- (NSRange) glyphRangeForBoundingRect: (NSRect)aRect inTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (NSRange) glyphRangeForBoundingRectWithoutAdditionalLayout: (NSRect)bounds inTextContainer: (NSTextContainer*)container
+
+
+
+
+- (NSRange) glyphRangeForCharacterRange: (NSRange)charRange actualCharacterRange: (NSRange*)actualCharRange
+
+
+
+
+- (NSRange) glyphRangeForTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (float) hyphenationFactor
+
+
+
+
+- (id) init
+
+
+
+
+- (void) insertGlyph: (NSGlyph)aGlyph atGlyphIndex: (unsigned int)glyphIndex characterIndex: (unsigned int)charIndex
+
+
+
+
+- (void) insertTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (int) intAttribute: (int)attributeTag forGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) invalidateDisplayForCharacterRange: (NSRange)charRange
+
+
+
+
+- (void) invalidateDisplayForGlyphRange: (NSRange)glyphRange
+
+
+
+
+- (void) invalidateGlyphsForCharacterRange: (NSRange)charRange changeInLength: (int)lengthChange actualCharacterRange: (NSRange*)actualCharRange
+
+
+
+
+- (void) invalidateLayoutForCharacterRange: (NSRange)charRange isSoft: (BOOL)flag actualCharacterRange: (NSRange*)actualCharRange
+
+
+
+
+- (BOOL) isValidGlyphIndex: (unsigned int)glyphIndex
+
+
+
+
+- (BOOL) layoutManagerOwnsFirstResponderInWindow: (NSWindow*)aWindow
+
+
+
+
+- (NSRect) lineFragmentRectForGlyphAtIndex: (unsigned int)glyphIndex effectiveRange: (NSRange*)lineFragmentRange
+
+
+
+
+- (NSRect) lineFragmentUsedRectForGlyphAtIndex: (unsigned int)glyphIndex effectiveRange: (NSRange*)lineFragmentRange
+
+
+
+
+- (NSPoint) locationForGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (BOOL) notShownAttributeForGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (unsigned int) numberOfGlyphs
+
+
+
+
+- (NSRange) rangeOfNominallySpacedGlyphsContainingIndex: (unsigned int)glyphIndex
+
+
+
+
+- (NSRect*) rectArrayForCharacterRange: (NSRange)charRange withinSelectedCharacterRange: (NSRange)selCharRange inTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (NSRect*) rectArrayForGlyphRange: (NSRange)glyphRange withinSelectedGlyphRange: (NSRange)selGlyphRange inTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) removeTextContainerAtIndex: (unsigned int)index
+
+
+
+
+- (void) replaceGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) replaceTextStorage: (NSTextStorage*)newTextStorage
+
+
+
+
+- (NSView*) rulerAccessoryViewForTextView: (NSTextView*)aTextView paragraphStyle: (NSParagraphStyle*)paraStyle ruler: (NSRulerView *)aRulerView enabled: (BOOL)flag
+
+
+
+
+- (NSArray*) rulerMarkersForTextView: (NSTextView*)aTextView paragraphStyle: (NSParagraphStyle*)paraStyle
+
+
+
+
+- (void) setBackgroundLayoutEnabled: (BOOL)flag
+
+
+
+
+- (void) setCharacterIndex: (unsigned int)charIndex forGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDrawsOutsideLineFragment: (BOOL)flag forGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) setExtraLineFragmentRect: (NSRect)aRect usedRect: (NSRect)usedRect textContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) setHyphenationFactor: (float)factor
+
+
+
+
+- (void) setIntAttribute: (int)attributeTag value: (int)anInt forGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) setLineFragmentRect: (NSRect)fragmentRect forGlyphRange: (NSRange)glyphRange
+
+
+
+
+- (void) setLocation: (NSPoint)aPoint forStartOfGlyphRange: (NSRange)glyphRange
+
+
+
+
+- (void) setNotShownAttribute: (BOOL)flag forGlyphAtIndex: (unsigned int)glyphIndex
+
+
+
+
+- (void) setShowsControlCharacters: (BOOL)flag
+
+
+
+
+- (void) setShowsInvisibleCharacters: (BOOL)flag
+
+
+
+
+- (void) setTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) setTextStorage: (NSTextStorage*)textStorage
+
+
+
+
+- (void) setUsesScreenFonts: (BOOL)flag
+
+
+
+
+- (void) showAttachmentCell: (NSCell*)cell inRect: (NSRect)rect characterIndex: (unsigned int)attachmentIndex;
+
+
+
+
+- (BOOL) showsControlCharacters
+
+
+
+
+- (BOOL) showsInvisibleCharacters
+
+
+
+
+- (NSFont*) substituteFontForFont: (NSFont*)originalFont
+
+
+
+
+- (void) textContainerChangedGeometry: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) textContainerChangedTextView: (NSTextContainer*)aTextContainer
+
+
+
+
+- (NSTextContainer*) textContainerForGlyphAtIndex: (unsigned int)glyphIndex effectiveRange: (NSRange*)effectiveGlyphRange
+
+
+
+
+- (NSArray*) textContainers
+
+
+
+
+- (NSTextStorage*) textStorage
+
+
+
+
+- (void) textStorage: (NSTextStorage*)aTextStorage edited: (unsigned int)mask range: (NSRange)range changeInLength: (int)lengthChange invalidatedRange: (NSRange)invalidatedCharRange
+
+
+
+
+- (NSTextView*) textViewForBeginningOfSelection
+
+
+
+
+- (void) underlineGlyphRange: (NSRange)glyphRange underlineType: (int)underlineType lineFragmentRect: (NSRect)lineRect lineFragmentGlyphRange: (NSRange)lineGlyphRange containerOrigin: (NSPoint)containerOrigin
+
+
+
+
+- (NSRect) usedRectForTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (BOOL) usesScreenFonts
+
+
+
+
+- (void) layoutManager: (NSLayoutManager*)aLayoutManager didCompleteLayoutForTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) layoutManagerDidInvalidateLayout: (NSLayoutManager*)aLayoutManager
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMatrix.html b/Documentation/gsdoc/NSMatrix.html
new file mode 100644
index 000000000..042957faa
--- /dev/null
+++ b/Documentation/gsdoc/NSMatrix.html
@@ -0,0 +1,612 @@
+
+NSMatrix
+
+
+[Previous]
+[Up]
+[Next]
+NSMatrix
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSMatrix.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) acceptsFirstMouse: (NSEvent*)theEvent
+
+
+
+
+- (void) addColumn
+
+
+
+
+- (void) addColumnWithCells: (NSArray*)newCells
+
+
+
+
+- (void) addRow
+
+
+
+
+- (void) addRowWithCells: (NSArray*)newCells
+
+
+
+
+- (BOOL) allowsEmptySelection
+
+
+
+
+- (BOOL) autosizesCells
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (id) cellAtRow: (int)row column: (int)column
+
+
+
+
+- (NSColor*) cellBackgroundColor
+
+
+
+
+- (Class) cellClass
+
+
+
+
+- (NSRect) cellFrameAtRow: (int)row column: (int)column
+
+
+
+
+- (NSSize) cellSize
+
+
+
+
+- (id) cellWithTag: (int)anInt
+
+
+
+
+- (NSArray*) cells
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) deselectAllCells
+
+
+
+
+- (SEL) doubleAction
+
+
+
+
+- (void) drawCellAtRow: (int)row column: (int)column
+
+
+
+
+- (BOOL) drawsBackground
+
+
+
+
+- (BOOL) drawsCellBackground
+
+
+
+
+- (SEL) errorAction
+
+
+
+
+- (void) getNumberOfRows: (int*)rowCount
+
+
+
+
+- (BOOL) getRow: (int*)row column: (int*)column
+
+
+
+
+- (void) highlightCell: (BOOL)flag atRow: (int)row column: (int)column
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect mode: (int)aMode cellClass: (Class)factoryId numberOfRows: (int)numRows numberOfColumns: (int)numColumns
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect mode: (int)aMode prototype: (NSCell*)aCell numberOfRows: (int)numRows numberOfColumns: (int)numColumns
+
+
+
+
+- (void) insertColumn: (int)column
+
+
+
+
+- (void) insertColumn: (int)column withCells: (NSArray*)newCells
+
+
+
+
+- (void) insertRow: (int)row
+
+
+
+
+- (void) insertRow: (int)row withCells: (NSArray*)newCells
+
+
+
+
+- (NSSize) intercellSpacing
+
+
+
+
+- (BOOL) isAutoscroll
+
+
+
+
+- (BOOL) isSelectionByRect
+
+
+
+
+- (id) keyCell
+
+
+
+
+- (NSCell*) makeCellAtRow: (int)row column: (int)column
+
+
+
+
+- (NSMatrixMode) mode
+
+
+
+
+- (void) mouseDown: (NSEvent*)theEvent
+
+
+
+
+- (int) mouseDownFlags
+
+
+
+
+- (id) nextText
+
+
+
+
+- (int) numberOfColumns
+
+
+
+
+- (int) numberOfRows
+
+
+
+
+- (BOOL) performKeyEquivalent: (NSEvent*)theEvent
+
+
+
+
+- (id) previousText
+
+
+
+
+- (id) prototype
+
+
+
+
+- (void) putCell: (NSCell*)newCell atRow: (int)row column: (int)column
+
+
+
+
+- (void) removeColumn: (int)column
+
+
+
+
+- (void) removeRow: (int)row
+
+
+
+
+- (void) renewRows: (int)newRows
+
+
+
+
+- (void) resetCursorRects
+
+
+
+
+- (void) scrollCellToVisibleAtRow: (int)row column: (int)column
+
+
+
+
+- (void) selectAll: (id)sender
+
+
+
+
+- (void) selectCellAtRow: (int)row column: (int)column
+
+
+
+
+- (BOOL) selectCellWithTag: (int)anInt
+
+
+
+
+- (void) selectText: (id)sender
+
+
+
+
+- (id) selectTextAtRow: (int)row column: (int)column
+
+
+
+
+- (id) selectedCell
+
+
+
+
+- (NSArray*) selectedCells
+
+
+
+
+- (int) selectedColumn
+
+
+
+
+- (int) selectedRow
+
+
+
+
+- (BOOL) sendAction
+
+
+
+
+- (void) sendAction: (SEL)aSelector to: (id)anObject forAllCells: (BOOL)flag
+
+
+
+
+- (void) sendDoubleAction
+
+
+
+
+- (void) setAllowsEmptySelection: (BOOL)flag
+
+
+
+
+- (void) setAutoscroll: (BOOL)flag
+
+
+
+
+- (void) setAutosizesCells: (BOOL)flag
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setCellBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setCellClass: (Class)aClass
+
+
+
+
+- (void) setCellSize: (NSSize)aSize
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDoubleAction: (SEL)aSelector
+
+
+
+
+- (void) setDrawsBackground: (BOOL)flag
+
+
+
+
+- (void) setDrawsCellBackground: (BOOL)flag
+
+
+
+
+- (void) setErrorAction: (SEL)aSelector
+
+
+
+
+- (void) setIntercellSpacing: (NSSize)aSize
+
+
+
+
+- (void) setKeyCell: (NSCell*)aCell
+
+
+
+
+- (void) setMode: (NSMatrixMode)aMode
+
+
+
+
+- (void) setNextText: (id)anObject
+
+
+
+
+- (void) setPreviousText: (id)anObject
+
+
+
+
+- (void) setPrototype: (NSCell*)aCell
+
+
+
+
+- (void) setScrollable: (BOOL)flag
+
+
+
+
+- (void) setSelectionByRect: (BOOL)flag
+
+
+
+
+- (void) setSelectionFrom: (int)startPos to: (int)endPos anchor: (int)anchorPos
+
+
+
+
+- (void) setState: (int)value atRow: (int)row column: (int)column
+
+
+
+
+- (void) setTabKeyTraversesCells: (BOOL)flag
+
+
+
+
+- (void) setValidateSize: (BOOL)flag
+
+
+
+
+- (void) sizeToCells
+
+
+
+
+- (void) sortUsingFunction: (int(*)(id,id,void*))comparator context: (void*)context
+
+
+
+
+- (void) sortUsingSelector: (SEL)comparator
+
+
+
+
+- (BOOL) tabKeyTraversesCells
+
+
+
+
+- (void) textDidBeginEditing: (NSNotification*)notification
+
+
+
+
+- (void) textDidChange: (NSNotification*)notification
+
+
+
+
+- (void) textDidEndEditing: (NSNotification*)notification
+
+
+
+
+- (BOOL) textShouldBeginEditing: (NSText*)textObject
+
+
+
+
+- (BOOL) textShouldEndEditing: (NSText*)textObject
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMenu.html b/Documentation/gsdoc/NSMenu.html
new file mode 100644
index 000000000..6cb4d615f
--- /dev/null
+++ b/Documentation/gsdoc/NSMenu.html
@@ -0,0 +1,306 @@
+
+NSMenu
+
+
+[Previous]
+[Up]
+[Next]
+NSMenu
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSMenu.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSZone*) menuZone
+
+
+
+
++ (void) setMenuZone: (NSZone*)zone
+
+
+
+
+- (void) addItem: (id<NSMenuItem>)newItem
+
+
+
+
+- (id<NSMenuItem>) addItemWithTitle: (NSString*)aString action: (SEL)aSelector keyEquivalent: (NSString*)keyEquiv
+
+
+
+
+- (NSMenu*) attachedMenu
+
+
+
+
+- (BOOL) autoenablesItems
+
+
+
+
+- (id) contextMenuRepresentation
+
+
+
+
+- (void) helpRequested: (NSEvent*)event
+
+
+
+
+- (int) indexOfItem: (id<NSMenuItem>)anObject
+
+
+
+
+- (int) indexOfItemWithRepresentedObject: (id)anObject
+
+
+
+
+- (int) indexOfItemWithSubmenu: (NSMenu*)anObject
+
+
+
+
+- (int) indexOfItemWithTag: (int)aTag
+
+
+
+
+- (int) indexOfItemWithTarget: (id)anObject andAction: (SEL)actionSelector
+
+
+
+
+- (int) indexOfItemWithTitle: (NSString*)aTitle
+
+
+
+
+- (id) initWithTitle: (NSString*)aTitle
+
+
+
+
+- (void) insertItem: (id<NSMenuItem>)newItem
+
+
+
+
+- (id<NSMenuItem>) insertItemWithTitle: (NSString*)aString action: (SEL)aSelector keyEquivalent: (NSString*)keyEquiv
+
+
+
+
+- (BOOL) isAttached
+
+
+
+
+- (BOOL) isTornOff
+
+
+
+
+- (NSArray*) itemArray
+
+
+
+
+- (id<NSMenuItem>) itemAtIndex: (int)index
+
+
+
+
+- (void) itemChanged: (id<NSMenuItem>)anObject
+
+
+
+
+- (id<NSMenuItem>) itemWithTag: (int)aTag
+
+
+
+
+- (id<NSMenuItem>) itemWithTitle: (NSString*)aString
+
+
+
+
+- (NSPoint) locationForSubmenu: (NSMenu*)aSubmenu
+
+
+
+
+- (BOOL) menuChangedMessagesEnabled
+
+
+
+
+- (id) menuRepresentation
+
+
+
+
+- (int) numberOfItems
+
+
+
+
+- (void) performActionForItemAtIndex: (int)index
+
+
+
+
+- (BOOL) performKeyEquivalent: (NSEvent*)theEvent
+
+
+
+
+- (void) removeItem: (id<NSMenuItem>)anItem
+
+
+
+
+- (void) removeItemAtIndex: (int)index
+
+
+
+
+- (void) setAutoenablesItems: (BOOL)flag
+
+
+
+
+- (void) setContextMenuRepresentation: (id)menuRep
+
+
+
+
+- (void) setMenuChangedMessagesEnabled: (BOOL)flag
+
+
+
+
+- (void) setMenuRepresentation: (id)menuRep
+
+
+
+
+- (void) setSubmenu: (NSMenu*)aMenu forItem: (id<NSMenuItem>)anItem
+
+
+
+
+- (void) setSupermenu: (NSMenu*)supermenu
+
+
+
+
+- (void) setTearOffMenuRepresentation: (id)menuRep
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (void) submenuAction: (id)sender
+
+
+
+
+- (NSMenu*) supermenu
+
+
+
+
+- (id) tearOffMenuRepresentation
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (void) update
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMenuItem.html b/Documentation/gsdoc/NSMenuItem.html
new file mode 100644
index 000000000..d762fc9ad
--- /dev/null
+++ b/Documentation/gsdoc/NSMenuItem.html
@@ -0,0 +1,27 @@
+
+NSMenuItem
+
+
+[Previous]
+[Up]
+[Next]
+NSMenuItem
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSMenuItem.h
+Inherits from: NSObject
+
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMenuItemCell.html b/Documentation/gsdoc/NSMenuItemCell.html
new file mode 100644
index 000000000..86043e2ff
--- /dev/null
+++ b/Documentation/gsdoc/NSMenuItemCell.html
@@ -0,0 +1,180 @@
+
+NSMenuItemCell
+
+
+[Previous]
+[Up]
+[Next]
+NSMenuItemCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSMenuItemCell.h
+Inherits from: NSButtonCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) calcSize
+
+
+
+
+- (void) drawBorderAndBackgroundWithFrame: (NSRect)cellFrame
+
+
+
+
+- (void) drawImageWithFrame: (NSRect)cellFrame
+
+
+
+
+- (void) drawKeyEquivalentWithFrame: (NSRect)cellFrame
+
+
+
+
+- (void) drawSeparatorItemWithFrame: (NSRect)cellFrame
+
+
+
+
+- (void) drawStateImageWithFrame: (NSRect)cellFrame
+
+
+
+
+- (void) drawTitleWithFrame: (NSRect)cellFrame
+
+
+
+
+- (NSRect) imageRectForBounds: (NSRect)cellFrame
+
+
+
+
+- (float) imageWidth
+
+
+
+
+- (BOOL) isHighlighted
+
+
+
+
+- (NSRect) keyEquivalentRectForBounds: (NSRect)cellFrame
+
+
+
+
+- (float) keyEquivalentWidth
+
+
+
+
+- (NSMenuItem*) menuItem
+
+
+
+
+- (NSMenuView*) menuView
+
+
+
+
+- (BOOL) needsDisplay
+
+
+
+
+- (BOOL) needsSizing
+
+
+
+
+- (void) setHighlighted: (BOOL)flag
+
+
+
+
+- (void) setMenuItem: (NSMenuItem*)item
+
+
+
+
+- (void) setMenuView: (NSMenuView*)menuView
+
+
+
+
+- (void) setNeedsDisplay: (BOOL)flag
+
+
+
+
+- (void) setNeedsSizing: (BOOL)flag
+
+
+
+
+- (NSRect) stateImageRectForBounds: (NSRect)cellFrame
+
+
+
+
+- (float) stateImageWidth
+
+
+
+
+- (NSRect) titleRectForBounds: (NSRect)cellFrame
+
+
+
+
+- (float) titleWidth
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMenuView.html b/Documentation/gsdoc/NSMenuView.html
new file mode 100644
index 000000000..fe4e7730b
--- /dev/null
+++ b/Documentation/gsdoc/NSMenuView.html
@@ -0,0 +1,276 @@
+
+NSMenuView
+
+
+[Previous]
+[Up]
+[Next]
+NSMenuView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSMenuView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (float) menuBarHeight
+
+
+
+
+- (NSMenu*) attachedMenu
+
+
+
+
+- (NSMenuView*) attachedMenuView
+
+
+
+
+- (void) attachSubmenuForItemAtIndex: (int)index
+
+
+
+
+- (void) detachSubmenu
+
+
+
+
+- (NSFont*) font
+
+
+
+
+- (int) highlightedItemIndex
+
+
+
+
+- (float) horizontalEdgePadding
+
+
+
+
+- (float) imageAndTitleOffset
+
+
+
+
+- (float) imageAndTitleWidth
+
+
+
+
+- (int) indexOfItemAtPoint: (NSPoint)point
+
+
+
+
+- (NSRect) innerRect
+
+
+
+
+- (BOOL) isAttached
+
+
+
+
+- (BOOL) isHorizontal
+
+
+
+
+- (BOOL) isTornOff
+
+
+
+
+- (void) itemAdded: (NSNotification*)notification
+
+
+
+
+- (void) itemChanged: (NSNotification*)notification
+
+
+
+
+- (void) itemRemoved: (NSNotification*)notification
+
+
+
+
+- (float) keyEquivalentOffset
+
+
+
+
+- (float) keyEquivalentWidth
+
+
+
+
+- (NSPoint) locationForSubmenu: (NSMenu*)aSubmenu
+
+
+
+
+- (NSMenu*) menu
+
+
+
+
+- (NSMenuItemCell*) menuItemCellForItemAtIndex: (int)index
+
+
+
+
+- (BOOL) needsSizing
+
+
+
+
+- (void) performActionWithHighlightingForItemAtIndex: (int)index
+
+
+
+
+- (NSRect) rectOfItemAtIndex: (int)index
+
+
+
+
+- (void) resizeWindowWithMaxHeight: (float)maxHeight
+
+
+
+
+- (void) setFont: (NSFont*)font
+
+
+
+
+- (void) setHighlightedItemIndex: (int)index
+
+
+
+
+- (void) setHorizontal: (BOOL)flag
+
+
+
+
+- (void) setHorizontalEdgePadding: (float)pad
+
+
+
+
+- (void) setMenu: (NSMenu*)menu
+
+
+
+
+- (void) setMenuItemCell: (NSMenuItemCell*)cell forItemAtIndex: (int)index
+
+
+
+
+- (void) setNeedsDisplayForItemAtIndex: (int)index
+
+
+
+
+- (void) setNeedsSizing: (BOOL)flag
+
+
+
+
+- (void) setWindowFrameForAttachingToRect: (NSRect)screenRect onScreen: (NSScreen *)screen preferredEdge: (NSRectEdge)edge popUpSelectedItem: (int)selectedItemIndex
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (float) stateImageOffset
+
+
+
+
+- (float) stateImageWidth
+
+
+
+
+- (BOOL) trackWithEvent: (NSEvent*)event
+
+
+
+
+- (void) update
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMutableAttributedStringAdditions.html b/Documentation/gsdoc/NSMutableAttributedStringAdditions.html
new file mode 100644
index 000000000..134b28a8c
--- /dev/null
+++ b/Documentation/gsdoc/NSMutableAttributedStringAdditions.html
@@ -0,0 +1,88 @@
+
+NSMutableAttributedStringAdditions
+
+
+[Previous]
+[Up]
+[Next]
+NSMutableAttributedStringAdditions
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSAttributedString.h
+Inherits from: NSAttributedString
+
+
+
+
+
+
+- (void) applyFontTraits: (NSFontTraitMask)mask range: (NSRange)aRange
+
+
+
+
+- (void) fixAttachmentAttributeInRange: (NSRange)aRange
+
+
+
+
+- (void) fixAttributesInRange: (NSRange)aRange
+
+
+
+
+- (void) fixFontAttributeInRange: (NSRange)aRange
+
+
+
+
+- (void) fixParagraphStyleAttributeInRange: (NSRange)aRange
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)alignment
+
+
+
+
+- (void) subscriptRange: (NSRange)aRange
+
+
+
+
+- (void) superscriptRange: (NSRange)aRange
+
+
+
+
+- (void) unscriptRange: (NSRange)aRange
+
+
+
+
+- (void) updateAttachmentsFromPath: (NSString*)path
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSMutableParagraphStyle.html b/Documentation/gsdoc/NSMutableParagraphStyle.html
new file mode 100644
index 000000000..a1c7f0f26
--- /dev/null
+++ b/Documentation/gsdoc/NSMutableParagraphStyle.html
@@ -0,0 +1,108 @@
+
+NSMutableParagraphStyle
+
+
+[Previous]
+[Up]
+[Next]
+NSMutableParagraphStyle
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSParagraphStyle.h
+Inherits from: NSParagraphStyle
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) addTabStop: (NSTextTab*)tabStop
+
+
+
+
+- (void) removeTabStop: (NSTextTab*)tabStop
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)alignment
+
+
+
+
+- (void) setFirstLineHeadIndent: (float)aFloat
+
+
+
+
+- (void) setHeadIndent: (float)aFloat
+
+
+
+
+- (void) setLineBreakMode: (NSLineBreakMode)mode
+
+
+
+
+- (void) setLineSpacing: (float)aFloat
+
+
+
+
+- (void) setMaximumLineHeight: (float)aFloat
+
+
+
+
+- (void) setMinimumLineHeight: (float)aFloat
+
+
+
+
+- (void) setParagraphSpacing: (float)aFloat
+
+
+
+
+- (void) setParagraphStyle: (NSParagraphStyle*)aStyle
+
+
+
+
+- (void) setTabStops: (NSArray*)tabStops
+
+
+
+
+- (void) setTailIndent: (float)aFloat
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSOpenPanel.html b/Documentation/gsdoc/NSOpenPanel.html
new file mode 100644
index 000000000..bfcf9959e
--- /dev/null
+++ b/Documentation/gsdoc/NSOpenPanel.html
@@ -0,0 +1,96 @@
+
+NSOpenPanel
+
+
+[Previous]
+[Up]
+[Next]
+NSOpenPanel
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSOpenPanel.h
+Inherits from: NSSavePanel
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSOpenPanel*) openPanel
+
+
+
+
+- (BOOL) allowsMultipleSelection
+
+
+
+
+- (BOOL) canChooseDirectories
+
+
+
+
+- (BOOL) canChooseFiles
+
+
+
+
+- (NSArray*) filenames
+
+
+
+
+- (int) runModalForDirectory: (NSString*)directory file: (NSString *)filename types: (NSArray*)fileTypes
+
+
+
+
+- (int) runModalForTypes: (NSArray*)fileTypes
+
+
+
+
+- (void) setAllowsMultipleSelection: (BOOL)flag
+
+
+
+
+- (void) setCanChooseDirectories: (BOOL)flag
+
+
+
+
+- (void) setCanChooseFiles: (BOOL)flag
+
+
+
+
+- (NSArray*) URLs
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPICTImageRep.html b/Documentation/gsdoc/NSPICTImageRep.html
new file mode 100644
index 000000000..c77f47a01
--- /dev/null
+++ b/Documentation/gsdoc/NSPICTImageRep.html
@@ -0,0 +1,54 @@
+
+NSPICTImageRep
+
+
+[Previous]
+[Up]
+[Next]
+NSPICTImageRep
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPICTImageRep.h
+Inherits from: NSImageRep
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (id) imageRepWithData: (NSData*)pictData
+
+
+
+
+- (NSRect) boundingBox
+
+
+
+
+- (id) initWithData: (NSData*)pictData
+
+
+
+
+- (NSData*) PICTRepresentation
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPageLayout.html b/Documentation/gsdoc/NSPageLayout.html
new file mode 100644
index 000000000..827708aca
--- /dev/null
+++ b/Documentation/gsdoc/NSPageLayout.html
@@ -0,0 +1,108 @@
+
+NSPageLayout
+
+
+[Previous]
+[Up]
+[Next]
+NSPageLayout
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPageLayout.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSPageLayout*) pageLayout
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (void) convertOldFactor: (float*)old newFactor: (float*)new
+
+
+
+
+- (void) pickedButton: (id)sender
+
+
+
+
+- (void) pickedOrientation: (id)sender
+
+
+
+
+- (void) pickedPaperSize: (id)sender
+
+
+
+
+- (void) pickedUnits: (id)sender
+
+
+
+
+- (NSPrintInfo*) printInfo
+
+
+
+
+- (void) readPrintInfo
+
+
+
+
+- (int) runModal
+
+
+
+
+- (int) runModalWithPrintInfo: (NSPrintInfo*)printInfo
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) writePrintInfo
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPanel.html b/Documentation/gsdoc/NSPanel.html
new file mode 100644
index 000000000..988a709ae
--- /dev/null
+++ b/Documentation/gsdoc/NSPanel.html
@@ -0,0 +1,66 @@
+
+NSPanel
+
+
+[Previous]
+[Up]
+[Next]
+NSPanel
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPanel.h
+Inherits from: NSWindow
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) becomesKeyOnlyIfNeeded
+
+
+
+
+- (BOOL) isFloatingPanel
+
+
+
+
+- (void) setBecomesKeyOnlyIfNeeded: (BOOL)flag
+
+
+
+
+- (void) setFloatingPanel: (BOOL)flag
+
+
+
+
+- (void) setWorksWhenModal: (BOOL)flag
+
+
+
+
+- (BOOL) worksWhenModal
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSParagraphStyle.html b/Documentation/gsdoc/NSParagraphStyle.html
new file mode 100644
index 000000000..98b93de8f
--- /dev/null
+++ b/Documentation/gsdoc/NSParagraphStyle.html
@@ -0,0 +1,96 @@
+
+NSParagraphStyle
+
+
+[Previous]
+[Up]
+[Next]
+NSParagraphStyle
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSParagraphStyle.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSParagraphStyle*) defaultParagraphStyle
+
+
+
+
+- (NSTextAlignment) alignment
+
+
+
+
+- (float) firstLineHeadIndent
+
+
+
+
+- (float) headIndent
+
+
+
+
+- (NSLineBreakMode) lineBreakMode
+
+
+
+
+- (float) lineSpacing
+
+
+
+
+- (float) maximumLineHeight
+
+
+
+
+- (float) minimumLineHeight
+
+
+
+
+- (float) paragraphSpacing
+
+
+
+
+- (NSArray*) tabStops
+
+
+
+
+- (float) tailIndent
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPasteboard.html b/Documentation/gsdoc/NSPasteboard.html
new file mode 100644
index 000000000..2f6a71e0e
--- /dev/null
+++ b/Documentation/gsdoc/NSPasteboard.html
@@ -0,0 +1,186 @@
+
+NSPasteboard
+
+
+[Previous]
+[Up]
+[Next]
+NSPasteboard
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPasteboard.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSPasteboard*) generalPasteboard
+
+
+
+
++ (NSPasteboard*) pasteboardByFilteringData: (NSData*)data ofType: (NSString*)type
+
+
+
+
++ (NSPasteboard*) pasteboardByFilteringFile: (NSString*)filename
+
+
+
+
++ (NSPasteboard*) pasteboardByFilteringTypesInPasteboard: (NSPasteboard*)pasteboard
+
+
+
+
++ (NSPasteboard*) pasteboardWithName: (NSString*)name
+
+
+
+
++ (NSPasteboard*) pasteboardWithUniqueName
+
+
+
+
++ (NSArray*) typesFilterableTo: (NSString*)type
+
+
+
+
+- (int) addTypes: (NSArray*)newTypes
+
+
+
+
+- (NSString*) availableTypeFromArray: (NSArray*)types
+
+
+
+
+- (int) changeCount
+
+
+
+
+- (NSData*) dataForType: (NSString*)dataType
+
+
+
+
+- (int) declareTypes: (NSArray*)newTypes
+
+
+
+
+- (NSString*) name
+
+
+
+
+- (id) propertyListForType: (NSString*)dataType
+
+
+
+
+- (NSString*) readFileContentsType: (NSString*)type toFile: (NSString*)filename
+
+
+
+
+- (NSFileWrapper*) readFileWrapper;
+
+
+
+
+- (void) releaseGlobally
+
+
+
+
+- (BOOL) setData: (NSData*)data forType: (NSString*)dataType
+
+
+
+
+- (BOOL) setPropertyList: (id)propertyList
+
+
+
+
+- (BOOL) setString: (NSString*)string forType: (NSString*)dataType
+
+
+
+
+- (NSString*) stringForType: (NSString*)dataType
+
+
+
+
+- (NSArray*) types
+
+
+
+
+- (BOOL) writeFileContents: (NSString*)filename
+
+
+
+
+- (BOOL) writeFileWrapper: (NSFileWrapper*)wrapper;
+
+
+
+
+- (void) pasteboardChangedOwner: (NSPasteboard*)sender
+
+
+
+
+- (void) pasteboard: (NSPasteboard*)sender provideDataForType: (NSString*)type
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPopUpButton.html b/Documentation/gsdoc/NSPopUpButton.html
new file mode 100644
index 000000000..f3e37d57c
--- /dev/null
+++ b/Documentation/gsdoc/NSPopUpButton.html
@@ -0,0 +1,246 @@
+
+NSPopUpButton
+
+
+[Previous]
+[Up]
+[Next]
+NSPopUpButton
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPopUpButton.h
+Inherits from: NSButton
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) addItemWithTitle: (NSString*)title
+
+
+
+
+- (void) addItemsWithTitles: (NSArray*)itemTitles
+
+
+
+
+- (BOOL) autoenablesItems
+
+
+
+
+- (int) indexOfItem: (id<NSMenuItem>)anObject
+
+
+
+
+- (int) indexOfItemWithRepresentedObject: (id)anObject
+
+
+
+
+- (int) indexOfItemWithTag: (int)tag
+
+
+
+
+- (int) indexOfItemWithTarget: (id)target andAction: (SEL)actionSelector
+
+
+
+
+- (int) indexOfItemWithTitle: (NSString*)title
+
+
+
+
+- (int) indexOfSelectedItem
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (void) insertItemWithTitle: (NSString*)title atIndex: (int)index
+
+
+
+
+- (NSArray*) itemArray
+
+
+
+
+- (id<NSMenuItem>) itemAtIndex: (int)index
+
+
+
+
+- (NSString*) itemTitleAtIndex: (int)index
+
+
+
+
+- (NSArray*) itemTitles
+
+
+
+
+- (id<NSMenuItem>) itemWithTitle: (NSString*)title
+
+
+
+
+- (id<NSMenuItem>) lastItem
+
+
+
+
+- (NSMenu*) menu
+
+
+
+
+- (int) numberOfItems
+
+
+
+
+- (NSRectEdge) preferredEdge
+
+
+
+
+- (BOOL) pullsDown
+
+
+
+
+- (void) removeAllItems
+
+
+
+
+- (void) removeItemAtIndex: (int)index
+
+
+
+
+- (void) removeItemWithTitle: (NSString*)title
+
+
+
+
+- (id<NSMenuItem>) selectedItem
+
+
+
+
+- (void) selectItem (id <NSMenuItem>)anObject
+
+
+
+
+- (void) selectItemAtIndex: (int)index
+
+
+
+
+- (void) selectItemWithTitle: (NSString*)title
+
+
+
+
+- (void) setAutoenablesItems: (BOOL)flag
+
+
+
+
+- (void) setFont: (NSFont*)fontObject
+
+
+
+
+- (void) setMenu: (NSMenu*)menu
+
+
+
+
+- (void) setPreferredEdge: (NSRectEdge)edge
+
+
+
+
+- (void) setPullsDown: (BOOL)flag
+
+
+
+
+- (int) setTitle: (NSString*)aString
+
+
+
+
+- (void) synchronizeTitleAndSelectedItem
+
+
+
+
+- (NSString*) titleOfSelectedItem
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPopUpButtonCell.html b/Documentation/gsdoc/NSPopUpButtonCell.html
new file mode 100644
index 000000000..19f9b7ee1
--- /dev/null
+++ b/Documentation/gsdoc/NSPopUpButtonCell.html
@@ -0,0 +1,300 @@
+
+NSPopUpButtonCell
+
+
+[Previous]
+[Up]
+[Next]
+NSPopUpButtonCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPopUpButtonCell.h
+Inherits from: NSMenuItemCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) addItemWithTitle: (NSString*)title
+
+
+
+
+- (void) addItemsWithTitles: (NSArray*)itemTitles
+
+
+
+
+- (BOOL) altersStateOfSelectedItem
+
+
+
+
+- (NSPopUpArrowPosition) arrowPosition
+
+
+
+
+- (void) attachPopUpWithFrame: (NSRect)cellFrame
+
+
+
+
+- (BOOL) autoenablesItems
+
+
+
+
+- (void) dismissPopUp
+
+
+
+
+- (int) indexOfItem: (id<NSMenuItem>)item
+
+
+
+
+- (int) indexOfItemWithRepresentedObject: (id)obj
+
+
+
+
+- (int) indexOfItemWithTag: (int)tag
+
+
+
+
+- (int) indexOfItemWithTarget: (id)target andAction: (SEL)actionSelector
+
+
+
+
+- (int) indexOfItemWithTitle: (NSString*)title
+
+
+
+
+- (int) indexOfSelectedItem
+
+
+
+
+- (id) initTextCell: (NSString*)stringValue
+
+
+
+
+- (void) insertItemWithTitle: (NSString*)title atIndex: (int)index
+
+
+
+
+- (NSArray*) itemArray
+
+
+
+
+- (id<NSMenuItem>) itemAtIndex: (int)index
+
+
+
+
+- (NSString*) itemTitleAtIndex: (int)index
+
+
+
+
+- (NSArray*) itemTitles
+
+
+
+
+- (id<NSMenuItem>) itemWithTitle: (NSString*)title
+
+
+
+
+- (id<NSMenuItem>) lastItem
+
+
+
+
+- (NSMenu*) menu
+
+
+
+
+- (int) numberOfItems
+
+
+
+
+- (void) performClick: (id)sender
+
+
+
+
+- (void) performClickWithFrame: (NSRect)frame inView: (NSView*)controlView
+
+
+
+
+- (NSRectEdge) preferredEdge
+
+
+
+
+- (BOOL) pullsDown
+
+
+
+
+- (void) removeAllItems
+
+
+
+
+- (void) removeItemAtIndex: (int)index
+
+
+
+
+- (void) removeItemWithTitle: (NSString*)title
+
+
+
+
+- (id<NSMenuItem>) selectedItem
+
+
+
+
+- (void) selectItem: (id<NSMenuItem>)item
+
+
+
+
+- (void) selectItemAtIndex: (int)index
+
+
+
+
+- (void) selectItemWithTitle: (NSString*)title
+
+
+
+
+- (void) setAltersStateOfSelectedItem: (BOOL)flag
+
+
+
+
+- (void) setArrowPosition: (NSPopUpArrowPosition)position
+
+
+
+
+- (void) setAutoenablesItems: (BOOL)flag
+
+
+
+
+- (void) setMenu: (NSMenu*)menu
+
+
+
+
+- (void) setPreferredEdge: (NSRectEdge)edge
+
+
+
+
+- (void) setPullsDown: (BOOL)flag
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) setUsesItemFromMenu: (BOOL)flag
+
+
+
+
+- (void) synchronizeTitleAndSelectedItem
+
+
+
+
+- (NSString*) titleOfSelectedItem
+
+
+
+
+- (BOOL) usesItemFromMenu
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPrintInfo.html b/Documentation/gsdoc/NSPrintInfo.html
new file mode 100644
index 000000000..22910a1a7
--- /dev/null
+++ b/Documentation/gsdoc/NSPrintInfo.html
@@ -0,0 +1,234 @@
+
+NSPrintInfo
+
+
+[Previous]
+[Up]
+[Next]
+NSPrintInfo
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPrintInfo.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSPrinter*) defaultPrinter
+
+
+
+
++ (void) setDefaultPrinter: (NSPrinter*)aPrinter
+
+
+
+
++ (void) setSharedPrintInfo: (NSPrintInfo*)printInfo
+
+
+
+
++ (NSPrintInfo*) sharedPrintInfo
+
+
+
+
++ (NSSize) sizeForPaperName: (NSString*)name
+
+
+
+
+- (float) bottomMargin
+
+
+
+
+- (NSMutableDictionary*) dictionary
+
+
+
+
+- (NSPrintingPaginationMode) horizontalPagination
+
+
+
+
+- (id) initWithDictionary: (NSDictionary*)aDictionary
+
+
+
+
+- (BOOL) isHorizontallyCentered
+
+
+
+
+- (BOOL) isVerticallyCentered
+
+
+
+
+- (NSString*) jobDisposition
+
+
+
+
+- (float) leftMargin
+
+
+
+
+- (NSPrintingOrientation) orientation
+
+
+
+
+- (NSString*) paperName
+
+
+
+
+- (NSSize) paperSize
+
+
+
+
+- (NSPrinter*) printer
+
+
+
+
+- (float) rightMargin
+
+
+
+
+- (void) setBottomMargin: (float)margin
+
+
+
+
+- (void) setHorizontalPagination: (NSPrintingPaginationMode)mode
+
+
+
+
+- (void) setHorizontallyCentered: (BOOL)flag
+
+
+
+
+- (void) setJobDisposition: (NSString*)disposition
+
+
+
+
+- (void) setLeftMargin: (float)margin
+
+
+
+
+- (void) setOrientation: (NSPrintingOrientation)orientation
+
+
+
+
+- (void) setPaperName: (NSString*)name
+
+
+
+
+- (void) setPaperSize: (NSSize)aSize
+
+
+
+
+- (void) setPrinter: (NSPrinter*)aPrinter
+
+
+
+
+- (void) setRightMargin: (float)margin
+
+
+
+
+- (void) setTopMargin: (float)margin
+
+
+
+
+- (void) setUpPrintOperationDefaultValues
+
+
+
+
+- (void) setVerticalPagination: (NSPrintingPaginationMode)mode
+
+
+
+
+- (void) setVerticallyCentered: (BOOL)flag
+
+
+
+
+- (float) topMargin
+
+
+
+
+- (NSPrintingPaginationMode) verticalPagination
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPrintOperation.html b/Documentation/gsdoc/NSPrintOperation.html
new file mode 100644
index 000000000..f1ec06457
--- /dev/null
+++ b/Documentation/gsdoc/NSPrintOperation.html
@@ -0,0 +1,198 @@
+
+NSPrintOperation
+
+
+[Previous]
+[Up]
+[Next]
+NSPrintOperation
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPrintOperation.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSPrintOperation*) EPSOperationWithView: (NSView*)aView insideRect: (NSRect)rect toData: (NSMutableData*)data
+
+
+
+
++ (NSPrintOperation*) EPSOperationWithView: (NSView*)aView insideRect: (NSRect)rect toData: (NSMutableData*)data printInfo: (NSPrintInfo*)aPrintInfo
+
+
+
+
++ (NSPrintOperation*) EPSOperationWithView: (NSView*)aView insideRect: (NSRect)rect toPath: (NSString*)path printInfo: (NSPrintInfo*)aPrintInfo
+
+
+
+
++ (NSPrintOperation*) currentOperation
+
+
+
+
++ (NSPrintOperation*) printOperationWithView: (NSView*)aView
+
+
+
+
++ (NSPrintOperation*) printOperationWithView: (NSView*)aView printInfo: (NSPrintInfo*)aPrintInfo
+
+
+
+
++ (void) setCurrentOperation: (NSPrintOperation*)operation
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (void) cleanUpOperation
+
+
+
+
+- (NSDPSContext*) context
+
+
+
+
+- (NSDPSContext*) createContext
+
+
+
+
+- (int) currentPage
+
+
+
+
+- (BOOL) deliverResult
+
+
+
+
+- (void) destroyContext
+
+
+
+
+- (id) initEPSOperationWithView: (NSView*)aView insideRect: (NSRect)rect toData: (NSMutableData*)data printInfo: (NSPrintInfo*)aPrintInfo
+
+
+
+
+- (id) initWithView: (NSView*)aView printInfo: (NSPrintInfo*)aPrintInfo
+
+
+
+
+- (BOOL) isEPSOperation
+
+
+
+
+- (NSPrintingPageOrder) pageOrder
+
+
+
+
+- (NSPrintInfo*) printInfo
+
+
+
+
+- (NSPrintPanel*) printPanel
+
+
+
+
+- (BOOL) runOperation
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) setPageOrder: (NSPrintingPageOrder)order
+
+
+
+
+- (void) setPrintInfo: (NSPrintInfo*)aPrintInfo
+
+
+
+
+- (void) setPrintPanel: (NSPrintPanel*)panel
+
+
+
+
+- (void) setShowPanels: (BOOL)flag
+
+
+
+
+- (BOOL) showPanels
+
+
+
+
+- (NSView*) view
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPrintPanel.html b/Documentation/gsdoc/NSPrintPanel.html
new file mode 100644
index 000000000..c1fac1e86
--- /dev/null
+++ b/Documentation/gsdoc/NSPrintPanel.html
@@ -0,0 +1,84 @@
+
+NSPrintPanel
+
+
+[Previous]
+[Up]
+[Next]
+NSPrintPanel
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPrintPanel.h
+Inherits from: NSPanel
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSPrintPanel*) printPanel
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (void) finalWritePrintInfo
+
+
+
+
+- (void) pickedAllPages: (id)sender
+
+
+
+
+- (void) pickedButton: (id)sender
+
+
+
+
+- (void) pickedLayoutList: (id)sender
+
+
+
+
+- (int) runModal
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) updateFromPrintInfo
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSPrinter.html b/Documentation/gsdoc/NSPrinter.html
new file mode 100644
index 000000000..cf9ffaa67
--- /dev/null
+++ b/Documentation/gsdoc/NSPrinter.html
@@ -0,0 +1,192 @@
+
+NSPrinter
+
+
+[Previous]
+[Up]
+[Next]
+NSPrinter
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSPrinter.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSArray*) printerNames
+
+
+
+
++ (NSArray*) printerTypes
+
+
+
+
++ (NSPrinter*) printerWithName: (NSString*)name
+
+
+
+
++ (NSPrinter*) printerWithName: (NSString*)name domain: (NSString*)domain includeUnavailable: (BOOL)includeUnavailable
+
+
+
+
++ (NSPrinter*) printerWithType: (NSString*)type
+
+
+
+
+- (BOOL) acceptsBinary
+
+
+
+
+- (BOOL) booleanForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (NSDictionary*) deviceDescription
+
+
+
+
+- (NSString*) domain
+
+
+
+
+- (float) floatForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (NSString*) host
+
+
+
+
+- (NSRect) imageRectForPaper: (NSString*)paperName
+
+
+
+
+- (int) intForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (BOOL) isColor
+
+
+
+
+- (BOOL) isFontAvailable: (NSString*)faceName
+
+
+
+
+- (BOOL) isKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (BOOL) isOutputStackInReverseOrder
+
+
+
+
+- (int) languageLevel
+
+
+
+
+- (NSString*) name
+
+
+
+
+- (NSString*) note
+
+
+
+
+- (NSSize) pageSizeForPaper: (NSString*)paperName
+
+
+
+
+- (NSRect) rectForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (NSSize) sizeForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (NSPrinterTableStatus) statusForTable: (NSString*)table
+
+
+
+
+- (NSString*) stringForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (NSArray*) stringListForKey: (NSString*)key inTable: (NSString*)table
+
+
+
+
+- (NSString*) type
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSProgressIndicator.html b/Documentation/gsdoc/NSProgressIndicator.html
new file mode 100644
index 000000000..23454423e
--- /dev/null
+++ b/Documentation/gsdoc/NSProgressIndicator.html
@@ -0,0 +1,138 @@
+
+NSProgressIndicator
+
+
+[Previous]
+[Up]
+[Next]
+NSProgressIndicator
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSProgressIndicator.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) animate: (id)sender
+
+
+
+
+- (NSTimeInterval) animationDelay
+
+
+
+
+- (double) doubleValue
+
+
+
+
+- (void) incrementBy: (double)delta
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (BOOL) isBezeled
+
+
+
+
+- (BOOL) isIndeterminate
+
+
+
+
+- (double) maxValue
+
+
+
+
+- (double) minValue
+
+
+
+
+- (void) setAnimationDelay: (NSTimeInterval)delay
+
+
+
+
+- (void) setBezeled: (BOOL)flag
+
+
+
+
+- (void) setDoubleValue: (double)doubleValue
+
+
+
+
+- (void) setIndeterminate: (BOOL)flag
+
+
+
+
+- (void) setMaxValue: (double)newMaximum
+
+
+
+
+- (void) setMinValue: (double)newMinimum
+
+
+
+
+- (void) setUsesThreadedAnimation: (BOOL)flag
+
+
+
+
+- (void) stopAnimation: (id)sender
+
+
+
+
+- (BOOL) usesThreadedAnimation
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSResponder.html b/Documentation/gsdoc/NSResponder.html
new file mode 100644
index 000000000..130d5ddea
--- /dev/null
+++ b/Documentation/gsdoc/NSResponder.html
@@ -0,0 +1,576 @@
+
+NSResponder
+
+
+[Previous]
+[Up]
+[Next]
+NSResponder
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSResponder.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) acceptsFirstResponder
+
+
+
+
+- (BOOL) becomeFirstResponder
+
+
+
+
+- (void) capitalizeWord: (id)sender
+
+
+
+
+- (void) centerSelectionInVisibleArea: (id)sender
+
+
+
+
+- (void) changeCaseOfLetter: (id)sender
+
+
+
+
+- (void) complete: (id)sender
+
+
+
+
+- (void) deleteBackward: (id)sender
+
+
+
+
+- (void) deleteForward: (id)sender
+
+
+
+
+- (void) deleteToBeginningOfLine: (id)sender
+
+
+
+
+- (void) deleteToBeginningOfParagraph: (id)sender
+
+
+
+
+- (void) deleteToEndOfLine: (id)sender
+
+
+
+
+- (void) deleteToEndOfParagraph: (id)sender
+
+
+
+
+- (void) deleteToMark: (id)sender
+
+
+
+
+- (void) deleteWordBackward: (id)sender
+
+
+
+
+- (void) deleteWordForward: (id)sender
+
+
+
+
+- (void) doCommandBySelector: (SEL)aSelector
+
+
+
+
+- (void) flagsChanged: (NSEvent*)theEvent
+
+
+
+
+- (void) flushBufferedKeyEvents
+
+
+
+
+- (void) helpRequested: (NSEvent*)theEvent
+
+
+
+
+- (void) indent: (id)sender
+
+
+
+
+- (void) insertBacktab: (id)sender
+
+
+
+
+- (void) insertNewline: (id)sender
+
+
+
+
+- (void) insertNewlineIgnoringFieldEditor: (id)sender
+
+
+
+
+- (void) insertParagraphSeparator: (id)sender
+
+
+
+
+- (void) insertTab: (id)sender
+
+
+
+
+- (void) insertTabIgnoringFieldEditor: (id)sender
+
+
+
+
+- (void) insertText: (NSString*)aString
+
+
+
+
+- (NSInterfaceStyle) interfaceStyle
+
+
+
+
+- (void) interpretKeyEvents: (NSArray*)eventArray
+
+
+
+
+- (void) keyDown: (NSEvent*)theEvent
+
+
+
+
+- (void) keyUp: (NSEvent*)theEvent
+
+
+
+
+- (void) lowercaseWord: (id)sender
+
+
+
+
+- (NSMenu*) menu
+
+
+
+
+- (void) mouseDown: (NSEvent*)theEvent
+
+
+
+
+- (void) mouseDragged: (NSEvent*)theEvent
+
+
+
+
+- (void) mouseEntered: (NSEvent*)theEvent
+
+
+
+
+- (void) mouseExited: (NSEvent*)theEvent
+
+
+
+
+- (void) mouseMoved: (NSEvent*)theEvent
+
+
+
+
+- (void) mouseUp: (NSEvent*)theEvent
+
+
+
+
+- (void) moveBackward: (id)sender
+
+
+
+
+- (void) moveBackwardAndModifySelection: (id)sender
+
+
+
+
+- (void) moveDown: (id)sender
+
+
+
+
+- (void) moveDownAndModifySelection: (id)sender
+
+
+
+
+- (void) moveForward: (id)sender
+
+
+
+
+- (void) moveForwardAndModifySelection: (id)sender
+
+
+
+
+- (void) moveLeft: (id)sender
+
+
+
+
+- (void) moveRight: (id)sender
+
+
+
+
+- (void) moveToBeginningOfDocument: (id)sender
+
+
+
+
+- (void) moveToBeginningOfLine: (id)sender
+
+
+
+
+- (void) moveToBeginningOfParagraph: (id)sender
+
+
+
+
+- (void) moveToEndOfDocument: (id)sender
+
+
+
+
+- (void) moveToEndOfLine: (id)sender
+
+
+
+
+- (void) moveToEndOfParagraph: (id)sender
+
+
+
+
+- (void) moveUp: (id)sender
+
+
+
+
+- (void) moveUpAndModifySelection: (id)sender
+
+
+
+
+- (void) moveWordBackward: (id)sender
+
+
+
+
+- (void) moveWordBackwardAndModifySelection: (id)sender
+
+
+
+
+- (void) moveWordForward: (id)sender
+
+
+
+
+- (void) moveWordForwardAndModifySelection: (id)sender
+
+
+
+
+- (NSResponder*) nextResponder
+
+
+
+
+- (void) noResponderFor: (SEL)eventSelector
+
+
+
+
+- (void) pageDown: (id)sender
+
+
+
+
+- (void) pageUp: (id)sender
+
+
+
+
+- (BOOL) performKeyEquivalent: (NSEvent*)theEvent
+
+
+
+
+- (BOOL) performMnemonic: (NSString*)aString
+
+
+
+
+- (BOOL) resignFirstResponder
+
+
+
+
+- (void) rightMouseDown: (NSEvent*)theEvent
+
+
+
+
+- (void) rightMouseDragged: (NSEvent*)theEvent
+
+
+
+
+- (void) rightMouseUp: (NSEvent*)theEvent
+
+
+
+
+- (void) scrollLineDown: (id)sender
+
+
+
+
+- (void) scrollLineUp: (id)sender
+
+
+
+
+- (void) scrollPageDown: (id)sender
+
+
+
+
+- (void) scrollPageUp: (id)sender
+
+
+
+
+- (void) selectAll: (id)sender
+
+
+
+
+- (void) selectLine: (id)sender
+
+
+
+
+- (void) selectParagraph: (id)sender
+
+
+
+
+- (void) selectToMark: (id)sender
+
+
+
+
+- (void) selectWord: (id)sender
+
+
+
+
+- (void) setInterfaceStyle: (NSInterfaceStyle)interfaceStyle
+
+
+
+
+- (void) setMark: (id)sender
+
+
+
+
+- (void) setMenu: (NSMenu*)aMenu
+
+
+
+
+- (void) setNextResponder: (NSResponder*)aResponder
+
+
+
+
+- (void) showContextHelp: (id)sender
+
+
+
+
+- (void) swapWithMark: (id)sender
+
+
+
+
+- (void) transpose: (id)sender
+
+
+
+
+- (void) transposeWords: (id)sender
+
+
+
+
+- (BOOL) tryToPerform: (SEL)anAction
+
+
+
+
+- (NSUndoManager*) undoManager
+
+
+
+
+- (void) uppercaseWord: (id)sender
+
+
+
+
+- (id) validRequestorForSendType: (NSString*)sendType returnType: (NSString*)returnType
+
+
+
+
+- (void) yank: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSRulerMarker.html b/Documentation/gsdoc/NSRulerMarker.html
new file mode 100644
index 000000000..0c0b6f7f5
--- /dev/null
+++ b/Documentation/gsdoc/NSRulerMarker.html
@@ -0,0 +1,144 @@
+
+NSRulerMarker
+
+
+[Previous]
+[Up]
+[Next]
+NSRulerMarker
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSRulerMarker.h
+Inherits from: NSObject
+Conforms to: NSCopying
+
+
+
+
+
+
+
+- (void) drawRect: (NSRect)aRect
+
+
+
+
+- (NSImage*) image
+
+
+
+
+- (NSPoint) imageOrigin
+
+
+
+
+- (NSRect) imageRectInRuler
+
+
+
+
+- (id) initWithRulerView: (NSRulerView*)aRulerView markerLocation: (float)location image: (NSImage *)anImage imageOrigin: (NSPoint)imageOrigin
+
+
+
+
+- (BOOL) isDragging
+
+
+
+
+- (BOOL) isMovable
+
+
+
+
+- (BOOL) isRemovable
+
+
+
+
+- (float) makerLocation
+
+
+
+
+- (id<NSCopying>) representedObject
+
+
+
+
+- (NSRulerView*) ruler
+
+
+
+
+- (void) setImage: (NSImage*)anImage
+
+
+
+
+- (void) setImageOrigin: (NSPoint)aPoint
+
+
+
+
+- (void) setMarkerLocation: (float)location
+
+
+
+
+- (void) setMovable: (BOOL)flag
+
+
+
+
+- (void) setRemovable: (BOOL)flag
+
+
+
+
+- (void) setRepresentedObject: (id<NSCopying>)anObject
+
+
+
+
+- (float) thicknessRequiredInRuler
+
+
+
+
+- (BOOL) trackMouse: (NSEvent*)theEvent
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSRulerView.html b/Documentation/gsdoc/NSRulerView.html
new file mode 100644
index 000000000..8cdfd6276
--- /dev/null
+++ b/Documentation/gsdoc/NSRulerView.html
@@ -0,0 +1,282 @@
+
+NSRulerView
+
+
+[Previous]
+[Up]
+[Next]
+NSRulerView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSRulerView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (void) registerUnitWithName: (NSString*)unitName abbreviation: (NSString*)abbreviation unitToPointsConversionFactor: (float)conversionFactor stepUpCycle: (NSArray *)stepUpCycle stepDownCycle: (NSArray*)stepDownCycle
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (void) addMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (float) baselineLocation
+
+
+
+
+- (NSView*) clientView
+
+
+
+
+- (void) drawHashMarksAndLabelsInRect: (NSRect)aRect
+
+
+
+
+- (void) drawMarkersInRect: (NSRect)aRect
+
+
+
+
+- (id) initWithScrollView: (NSScrollView*)aScrollView
+
+
+
+
+- (void) invalidateHashMarks
+
+
+
+
+- (BOOL) isFlipped
+
+
+
+
+- (NSArray*) markers
+
+
+
+
+- (NSString*) measurementUnits
+
+
+
+
+- (void) moveRulerlineFromLocation: (float)oldLoc toLocation: (float)newLoc
+
+
+
+
+- (NSRulerOrientation) orientation
+
+
+
+
+- (float) originOffset
+
+
+
+
+- (void) removeMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (float) requiredThickness
+
+
+
+
+- (float) reservedThicknessForAccessoryView
+
+
+
+
+- (float) reservedThicknessForMarkers
+
+
+
+
+- (float) ruleThickness
+
+
+
+
+- (NSScrollView*) scrollView
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) setClientView: (NSView*)aView
+
+
+
+
+- (void) setMarkers: (NSArray*)markers
+
+
+
+
+- (void) setMeasurementUnits: (NSString*)unitName
+
+
+
+
+- (void) setOrientation: (NSRulerOrientation)orientation
+
+
+
+
+- (void) setOriginOffset: (float)offset
+
+
+
+
+- (void) setReservedThicknessForAccessoryView: (float)thickness
+
+
+
+
+- (void) setReservedThicknessForMarkers: (float)thickness
+
+
+
+
+- (void) setRuleThickness: (float)thickness
+
+
+
+
+- (void) setScrollView: (NSScrollView*)scrollView
+
+
+
+
+- (BOOL) trackMarker: (NSRulerMarker*)aMarker withMouseEvent: (NSEvent*)theEvent
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView didAddMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView didMoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView didRemoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView handleMouseDown: (NSEvent*)theEvent
+
+
+
+
+- (BOOL) rulerView: (NSRulerView*)aRulerView shouldAddMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (BOOL) rulerView: (NSRulerView*)aRulerView shouldMoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (BOOL) rulerView: (NSRulerView*)aRulerView shouldRemoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (float) rulerView: (NSRulerView*)aRulerView willAddMarker: (NSRulerMarker*)aMarker atLocation: (float)location
+
+
+
+
+- (float) rulerView: (NSRulerView*)aRulerView willMoveMarker: (NSRulerMarker*)aMarker toLocation: (float)location
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView willSetClientView: (NSView*)newClient
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSavePanel.html b/Documentation/gsdoc/NSSavePanel.html
new file mode 100644
index 000000000..0fcff51e6
--- /dev/null
+++ b/Documentation/gsdoc/NSSavePanel.html
@@ -0,0 +1,165 @@
+
+NSSavePanel
+
+
+[Previous]
+[Up]
+[Next]
+NSSavePanel
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSavePanel.h
+
+
+
+
+
+
++ (NSSavePanel*) savePanel
+
+
+
+
+- (void) cancel: (id)sender
+
+
+
+
+- (NSString*) directory
+
+
+
+
+- (void) encodeWithCoder: (NSCoder*)coder
+
+
+
+
+- (id) initWithCoder: (NSCoder*)coder
+
+
+
+
+- (void) ok: (id)sender
+
+
+
+
+- (NSString*) prompt
+
+
+
+
+- (NSString*) requiredFileType
+
+
+
+
+- (int) runModalForDirectory: (NSString*)path
+
+
+
+
+- (void) selectText: (id)sender
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDirectory: (NSString*)path
+
+
+
+
+- (void) setPrompt: (NSString*)prompt
+
+
+
+
+- (void) setRequiredFileType: (NSString*)type
+
+
+
+
+- (void) setTreatsFilePackagesAsDirectories: (BOOL)flag
+
+
+
+
+- (void) setTitle: (NSString*)title
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (BOOL) treatsFilePackagesAsDirectories
+
+
+
+
+- (void) validateVisibleColumns
+
+
+
+
+- (NSComparisonResult) panel: (id)sender compareFilename: (NSString*)fileName1 with: (NSString *)fileName2 caseSensitive: (BOOL)flag
+
+
+
+
+- (BOOL) panel: (id)sender shouldShowFilename: (NSString*)filename
+
+
+
+
+- (BOOL) panel: (id)sender isValidFilename: (NSString*)filename
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSScreen.html b/Documentation/gsdoc/NSScreen.html
new file mode 100644
index 000000000..983d14edb
--- /dev/null
+++ b/Documentation/gsdoc/NSScreen.html
@@ -0,0 +1,78 @@
+
+NSScreen
+
+
+[Previous]
+[Up]
+[Next]
+NSScreen
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSScreen.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSScreen*) deepestScreen
+
+
+
+
++ (NSScreen*) mainScreen
+
+
+
+
++ (NSArray*) screens
+
+
+
+
+- (NSWindowDepth) depth
+
+
+
+
+- (NSDictionary*) deviceDescription
+
+
+
+
+- (NSRect) frame
+
+
+
+
+- (constNSWindowDepth*) supportedWindowDepths
+
+
+
+
+- (NSRect) visibleFrame
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSScrollView.html b/Documentation/gsdoc/NSScrollView.html
new file mode 100644
index 000000000..5bc3c1f9d
--- /dev/null
+++ b/Documentation/gsdoc/NSScrollView.html
@@ -0,0 +1,342 @@
+
+NSScrollView
+
+
+[Previous]
+[Up]
+[Next]
+NSScrollView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSScrollView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSSize) contentSizeForFrameSize: (NSSize)frameSize hasHorizontalScroller: (BOOL)hFlag hasVerticalScroller: (BOOL)vFlag borderType: (NSBorderType)borderType
+
+
+
+
++ (NSSize) frameSizeForContentSize: (NSSize)contentSize hasHorizontalScroller: (BOOL)hFlag hasVerticalScroller: (BOOL)vFlag borderType: (NSBorderType)borderType
+
+
+
+
++ (Class) rulerViewClass
+
+
+
+
++ (void) setRulerViewClass: (Class)aClass
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (NSBorderType) borderType
+
+
+
+
+- (NSSize) contentSize
+
+
+
+
+- (NSClipView*) contentView
+
+
+
+
+- (NSCursor*) documentCursor
+
+
+
+
+- (id) documentView
+
+
+
+
+- (NSRect) documentVisibleRect
+
+
+
+
+- (BOOL) hasHorizontalRuler
+
+
+
+
+- (BOOL) hasHorizontalScroller
+
+
+
+
+- (BOOL) hasVerticalRuler
+
+
+
+
+- (BOOL) hasVerticalScroller
+
+
+
+
+- (float) horizontalLineScroll
+
+
+
+
+- (float) horizontalPageScroll
+
+
+
+
+- (NSRulerView*) horizontalRulerView
+
+
+
+
+- (NSScroller*) horizontalScroller
+
+
+
+
+- (BOOL) isRulerVisible
+
+
+
+
+- (float) lineScroll
+
+
+
+
+- (float) pageScroll
+
+
+
+
+- (void) reflectScrolledClipView: (NSClipView*)aClipView
+
+
+
+
+- (BOOL) rulersVisible
+
+
+
+
+- (BOOL) scrollsDynamically
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setBorderType: (NSBorderType)borderType
+
+
+
+
+- (void) setContentView: (NSClipView*)aView
+
+
+
+
+- (void) setDocumentCursor: (NSCursor*)aCursor
+
+
+
+
+- (void) setDocumentView: (NSView*)aView
+
+
+
+
+- (void) setHasHorizontalRuler: (BOOL)flag
+
+
+
+
+- (void) setHasHorizontalScroller: (BOOL)flag
+
+
+
+
+- (void) setHasVerticalRuler: (BOOL)flag
+
+
+
+
+- (void) setHasVerticalScroller: (BOOL)flag
+
+
+
+
+- (void) setHorizontalLineScroll: (float)aFloat
+
+
+
+
+- (void) setHorizontalPageScroll: (float)aFloat
+
+
+
+
+- (void) setHorizontalRulerView: (NSRulerView*)aRulerView
+
+
+
+
+- (void) setHorizontalScroller: (NSScroller*)aScroller
+
+
+
+
+- (void) setLineScroll: (float)aFloat
+
+
+
+
+- (void) setPageScroll: (float)aFloat
+
+
+
+
+- (void) setRulersVisible: (BOOL)flag
+
+
+
+
+- (void) setScrollsDynamically: (BOOL)flag
+
+
+
+
+- (void) setVerticalLineScroll: (float)aFloat
+
+
+
+
+- (void) setVerticalPageScroll: (float)aFloat
+
+
+
+
+- (void) setVerticalRulerView: (NSRulerView*)aRulerView
+
+
+
+
+- (void) setVerticalScroller: (NSScroller*)aScroller
+
+
+
+
+- (void) tile
+
+
+
+
+- (void) toggleRuler: (id)sender
+
+
+
+
+- (float) verticalLineScroll
+
+
+
+
+- (float) verticalPageScroll
+
+
+
+
+- (NSRulerView*) verticalRulerView
+
+
+
+
+- (NSScroller*) verticalScroller
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSScroller.html b/Documentation/gsdoc/NSScroller.html
new file mode 100644
index 000000000..4bf1d1b2b
--- /dev/null
+++ b/Documentation/gsdoc/NSScroller.html
@@ -0,0 +1,132 @@
+
+NSScroller
+
+
+[Previous]
+[Up]
+[Next]
+NSScroller
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSScroller.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (float) scrollerWidth
+
+
+
+
+- (NSScrollArrowPosition) arrowsPosition
+
+
+
+
+- (void) checkSpaceForParts
+
+
+
+
+- (void) drawArrow: (NSScrollerArrow)arrow highlight: (BOOL)flag
+
+
+
+
+- (void) drawKnob
+
+
+
+
+- (void) drawParts
+
+
+
+
+- (void) highlight: (BOOL)flag
+
+
+
+
+- (NSScrollerPart) hitPart
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (float) knobProportion
+
+
+
+
+- (NSRect) rectForPart: (NSScrollerPart)aPart
+
+
+
+
+- (void) setArrowsPosition: (NSScrollArrowPosition)location
+
+
+
+
+- (void) setFloatValue: (float)aFloat knobProportion: (float)knobProp
+
+
+
+
+- (NSScrollerPart) testPart: (NSPoint)aPoint
+
+
+
+
+- (void) trackKnob: (NSEvent*)theEvent
+
+
+
+
+- (void) trackScrollButtons: (NSEvent*)theEvent
+
+
+
+
+- (NSUsableScrollerParts) usableParts
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSecureTextField.html b/Documentation/gsdoc/NSSecureTextField.html
new file mode 100644
index 000000000..453b73e21
--- /dev/null
+++ b/Documentation/gsdoc/NSSecureTextField.html
@@ -0,0 +1,29 @@
+
+NSSecureTextField
+
+
+[Previous]
+[Up]
+[Next]
+NSSecureTextField
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSecureTextField.h
+Inherits from: NSTextField
+Conforms to: NSCoding
+
+
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSecureTextFieldCell.html b/Documentation/gsdoc/NSSecureTextFieldCell.html
new file mode 100644
index 000000000..a8e0dbb94
--- /dev/null
+++ b/Documentation/gsdoc/NSSecureTextFieldCell.html
@@ -0,0 +1,42 @@
+
+NSSecureTextFieldCell
+
+
+[Previous]
+[Up]
+[Next]
+NSSecureTextFieldCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSecureTextField.h
+Inherits from: NSTextFieldCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) echosBullets
+
+
+
+
+- (void) setEchosBullets: (BOOL)flag
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSlider.html b/Documentation/gsdoc/NSSlider.html
new file mode 100644
index 000000000..5291b9e67
--- /dev/null
+++ b/Documentation/gsdoc/NSSlider.html
@@ -0,0 +1,210 @@
+
+NSSlider
+
+
+[Previous]
+[Up]
+[Next]
+NSSlider
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSlider.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) acceptsFirstMouse: (NSEvent*)mouseDownEvent
+
+
+
+
+- (BOOL) allowsTickMarkValuesOnly
+
+
+
+
+- (double) altIncrementValue
+
+
+
+
+- (double) closestTickMarkValueToValue: (double)aValue
+
+
+
+
+- (NSImage*) image
+
+
+
+
+- (int) indexOfTickMarkAtPoint: (NSPoint)point
+
+
+
+
+- (int) isVertical
+
+
+
+
+- (float) knobThickness
+
+
+
+
+- (double) maxValue
+
+
+
+
+- (double) minValue
+
+
+
+
+- (int) numberOfTickMarks
+
+
+
+
+- (NSRect) rectOfTickMarkAtIndex: (int)index
+
+
+
+
+- (void) setAllowsTickMarkValuesOnly: (BOOL)flag
+
+
+
+
+- (void) setAltIncrementValue: (double)increment
+
+
+
+
+- (void) setImage: (NSImage*)barImage
+
+
+
+
+- (void) setKnobThickness: (float)thickness
+
+
+
+
+- (void) setMaxValue: (double)maxValue
+
+
+
+
+- (void) setMinValue: (double)minValue
+
+
+
+
+- (void) setNumberOfTickMarks: (int)numberOfTickMarks
+
+
+
+
+- (void) setTickMarkPosition: (NSTickMarkPosition)position
+
+
+
+
+- (void) setTitle: (NSString*)barTitle
+
+
+
+
+- (void) setTitleCell: (NSCell*)titleCell
+
+
+
+
+- (void) setTitleColor: (NSColor*)color
+
+
+
+
+- (void) setTitleFont: (NSFont*)font
+
+
+
+
+- (NSTickMarkPosition) tickMarkPosition
+
+
+
+
+- (double) tickMarkValueAtIndex: (int)index
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (id) titleCell
+
+
+
+
+- (NSColor*) titleColor
+
+
+
+
+- (NSFont*) titleFont
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSliderCell.html b/Documentation/gsdoc/NSSliderCell.html
new file mode 100644
index 000000000..2cfda1e6a
--- /dev/null
+++ b/Documentation/gsdoc/NSSliderCell.html
@@ -0,0 +1,228 @@
+
+NSSliderCell
+
+
+[Previous]
+[Up]
+[Next]
+NSSliderCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSliderCell.h
+Inherits from: NSActionCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (BOOL) prefersTrackingUntilMouseUp
+
+
+
+
+- (BOOL) allowsTickMarkValuesOnly
+
+
+
+
+- (double) altIncrementValue
+
+
+
+
+- (double) closestTickMarkValueToValue: (double)aValue
+
+
+
+
+- (void) drawBarInside: (NSRect)aRect flipped: (BOOL)flipped
+
+
+
+
+- (void) drawKnob
+
+
+
+
+- (void) drawKnob: (NSRect)knobRect
+
+
+
+
+- (int) indexOfTickMarkAtPoint: (NSPoint)point
+
+
+
+
+- (int) isVertical
+
+
+
+
+- (NSRect) knobRectFlipped: (BOOL)flipped
+
+
+
+
+- (float) knobThickness
+
+
+
+
+- (double) maxValue
+
+
+
+
+- (double) minValue
+
+
+
+
+- (int) numberOfTickMarks
+
+
+
+
+- (NSRect) rectOfTickMarkAtIndex: (int)index
+
+
+
+
+- (void) setAllowsTickMarkValuesOnly: (BOOL)flag
+
+
+
+
+- (void) setAltIncrementValue: (double)increment
+
+
+
+
+- (void) setKnobThickness: (float)thickness
+
+
+
+
+- (void) setMaxValue: (double)aDouble
+
+
+
+
+- (void) setMinValue: (double)aDouble
+
+
+
+
+- (void) setNumberOfTickMarks: (int)numberOfTickMarks
+
+
+
+
+- (void) setTickMarkPosition: (NSTickMarkPosition)position
+
+
+
+
+- (void) setTitle: (NSString*)title
+
+
+
+
+- (void) setTitleCell: (NSCell*)aCell
+
+
+
+
+- (void) setTitleColor: (NSColor*)color
+
+
+
+
+- (void) setTitleFont: (NSFont*)font
+
+
+
+
+- (NSTickMarkPosition) tickMarkPosition
+
+
+
+
+- (double) tickMarkValueAtIndex: (int)index
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (id) titleCell
+
+
+
+
+- (NSColor*) titleColor
+
+
+
+
+- (NSFont*) titleFont
+
+
+
+
+- (NSRect) trackRect
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSpellChecker.html b/Documentation/gsdoc/NSSpellChecker.html
new file mode 100644
index 000000000..29825418c
--- /dev/null
+++ b/Documentation/gsdoc/NSSpellChecker.html
@@ -0,0 +1,132 @@
+
+NSSpellChecker
+
+
+[Previous]
+[Up]
+[Next]
+NSSpellChecker
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSpellChecker.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSSpellChecker*) sharedSpellChecker
+
+
+
+
++ (BOOL) sharedSpellCheckerExists
+
+
+
+
++ (int) uniqueSpellDocumentTag
+
+
+
+
+- (NSView*) accessoryView
+
+
+
+
+- (NSRange) checkSpellingOfString: (NSString*)stringToCheck
+
+
+
+
+- (NSRange) checkSpellingOfString: (NSString*)stringToCheck startingAt: (int)startingOffset language: (NSString*)language wrap: (BOOL)wrapFlag inSpellDocumentWithTag: (int)tag wordCount: (int*)wordCount
+
+
+
+
+- (void) closeSpellDocumentWithTag: (int)tag
+
+
+
+
+- (int) countWordsInString: (NSString*)stringToCount
+
+
+
+
+- (void) ignoreWord: (NSString*)wordToIgnore inSpellDocumentWithTag: (int)tag
+
+
+
+
+- (NSArray*) ignoredWordsInSpellDocumentWithTag: (int)tag
+
+
+
+
+- (NSString*) language
+
+
+
+
+- (void) setAccessoryView: (NSView*)aView
+
+
+
+
+- (void) setIgnoredWords: (NSArray*)someWords inSpellDocumentWithTag: (int)tag
+
+
+
+
+- (BOOL) setLanguage: (NSString*)language
+
+
+
+
+- (void) setWordFieldStringValue: (NSString*)aString
+
+
+
+
+- (NSPanel*) spellingPanel
+
+
+
+
+- (void) updateSpellingPanelWithMisspelledWord: (NSString*)word
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSpellServer.html b/Documentation/gsdoc/NSSpellServer.html
new file mode 100644
index 000000000..a208fa2ef
--- /dev/null
+++ b/Documentation/gsdoc/NSSpellServer.html
@@ -0,0 +1,84 @@
+
+NSSpellServer
+
+
+[Previous]
+[Up]
+[Next]
+NSSpellServer
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSpellServer.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (id) delegate
+
+
+
+
+- (BOOL) isWordInUserDictionaries: (NSString*)word caseSensitive: (BOOL)flag
+
+
+
+
+- (BOOL) registerLanguage: (NSString*)language
+
+
+
+
+- (void) run
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) spellServer: (NSSpellServer*)sender didForgetWord: (NSString*)word inLanguage: (NSString*)language
+
+
+
+
+- (void) spellServer: (NSSpellServer*)sender didLearnWord: (NSString*)word inLanguage: (NSString*)language
+
+
+
+
+- (NSRange) spellServer: (NSSpellServer*)sender findMisspelledWordInString: (NSString*)stringToCheck language: (NSString *)language wordCount: (int*)wordCount
+
+
+
+
+- (NSArray*) spellServer: (NSSpellServer*)sender suggestGuessesForWord: (NSString*)word inLanguage: (NSString*)language
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSSplitView.html b/Documentation/gsdoc/NSSplitView.html
new file mode 100644
index 000000000..8924eeae6
--- /dev/null
+++ b/Documentation/gsdoc/NSSplitView.html
@@ -0,0 +1,72 @@
+
+NSSplitView
+
+
+[Previous]
+[Up]
+[Next]
+NSSplitView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSSplitView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) adjustSubviews
+
+
+
+
+- (id) delegate
+
+
+
+
+- (float) dividerThickness
+
+
+
+
+- (void) drawDividerInRect: (NSRect)aRect
+
+
+
+
+- (BOOL) isVertical
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setVertical: (BOOL)flag
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSStringAdditions.html b/Documentation/gsdoc/NSStringAdditions.html
new file mode 100644
index 000000000..2fb07e9ee
--- /dev/null
+++ b/Documentation/gsdoc/NSStringAdditions.html
@@ -0,0 +1,46 @@
+
+NSStringAdditions
+
+
+[Previous]
+[Up]
+[Next]
+NSStringAdditions
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSStringDrawing.h
+Inherits from: NSObject
+
+
+
+
+
+
+- (void) drawAtPoint: (NSPoint)aPoint withAttributes: (NSDictionary*)attributes
+
+
+
+
+- (void) drawInRect: (NSRect)aRect withAttributes: (NSDictionary*)attributes
+
+
+
+
+- (NSSize) sizeWithAttributes: (NSDictionary*)attributes
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTabView.html b/Documentation/gsdoc/NSTabView.html
new file mode 100644
index 000000000..b23f0f319
--- /dev/null
+++ b/Documentation/gsdoc/NSTabView.html
@@ -0,0 +1,210 @@
+
+NSTabView
+
+
+[Previous]
+[Up]
+[Next]
+NSTabView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTabView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) addTabViewItem: (NSTabViewItem*)tabViewItem
+
+
+
+
+- (BOOL) allowsTruncatedLabels
+
+
+
+
+- (NSRect) contentRect
+
+
+
+
+- (id) delegate
+
+
+
+
+- (BOOL) drawsBackground
+
+
+
+
+- (NSFont*) font
+
+
+
+
+- (int) indexOfTabViewItem: (NSTabViewItem*)tabViewItem
+
+
+
+
+- (int) indexOfTabViewItemWithIdentifier: (id)identifier
+
+
+
+
+- (void) insertTabViewItem: (NSTabViewItem*)tabViewItem
+
+
+
+
+- (NSSize) minimumSize
+
+
+
+
+- (int) numberOfTabViewItems
+
+
+
+
+- (void) removeTabViewItem: (NSTabViewItem*)tabViewItem
+
+
+
+
+- (void) selectFirstTabViewItem: (id)sender
+
+
+
+
+- (void) selectLastTabViewItem: (id)sender
+
+
+
+
+- (void) selectNextTabViewItem: (id)sender
+
+
+
+
+- (void) selectPreviousTabViewItem: (id)sender
+
+
+
+
+- (NSTabViewItem*) selectedTabViewItem
+
+
+
+
+- (void) selectTabViewItem: (NSTabViewItem*)tabViewItem
+
+
+
+
+- (void) selectTabViewItemAtIndex: (int)index
+
+
+
+
+- (void) selectTabViewItemWithIdentifier: (id)identifier;
+
+
+
+
+- (void) setAllowsTruncatedLabels: (BOOL)allowTruncatedLabels
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDrawsBackground: (BOOL)flag
+
+
+
+
+- (void) setFont: (NSFont*)font
+
+
+
+
+- (void) setTabViewType: (NSTabViewType)tabViewType
+
+
+
+
+- (NSTabViewItem*) tabViewItemAtIndex: (int)index
+
+
+
+
+- (NSTabViewItem*) tabViewItemAtPoint: (NSPoint)point
+
+
+
+
+- (NSArray*) tabViewItems
+
+
+
+
+- (NSTabViewType) tabViewType
+
+
+
+
+- (void) takeSelectedTabViewItemFromSender: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTabViewItem.html b/Documentation/gsdoc/NSTabViewItem.html
new file mode 100644
index 000000000..9c9683c0c
--- /dev/null
+++ b/Documentation/gsdoc/NSTabViewItem.html
@@ -0,0 +1,120 @@
+
+NSTabViewItem
+
+
+[Previous]
+[Up]
+[Next]
+NSTabViewItem
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTabViewItem.h
+Inherits from: NSObject
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSColor*) color
+
+
+
+
+- (void) drawLabel: (BOOL)shouldTruncateLabel
+
+
+
+
+- (id) identifier
+
+
+
+
+- (id) initialFirstResponder
+
+
+
+
+- (id) initWithIdentifier: (id)identifier
+
+
+
+
+- (NSString*) label
+
+
+
+
+- (void) setColor: (NSColor*)color
+
+
+
+
+- (void) setIdentifier: (id)identifier
+
+
+
+
+- (void) setInitialFirstResponder: (NSView*)view
+
+
+
+
+- (void) setLabel: (NSString*)label
+
+
+
+
+- (void) setView: (NSView*)view
+
+
+
+
+- (NSSize) sizeOfLabel: (BOOL)shouldTruncateLabel
+
+
+
+
+- (NSTabState) tabState
+
+
+
+
+- (NSTabView*) tabView
+
+
+
+
+- (id) view
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTableColumn.html b/Documentation/gsdoc/NSTableColumn.html
new file mode 100644
index 000000000..b25161058
--- /dev/null
+++ b/Documentation/gsdoc/NSTableColumn.html
@@ -0,0 +1,150 @@
+
+NSTableColumn
+
+
+[Previous]
+[Up]
+[Next]
+NSTableColumn
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTableColumn.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (id) dataCell
+
+
+
+
+- (id) headerCell
+
+
+
+
+- (id) initWithIdentifier: anObject
+
+
+
+
+- (id) identifier
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (BOOL) isResizable
+
+
+
+
+- (float) maxWidth
+
+
+
+
+- (float) minWidth
+
+
+
+
+- (void) setDataCell: (NSCell*)aCell
+
+
+
+
+- (void) setEditable: (BOOL)flag
+
+
+
+
+- (void) setHeaderCell: (NSCell*)aCell
+
+
+
+
+- (void) setIdentifier: (id)anObject
+
+
+
+
+- (void) setMaxWidth: (float)maxWidth
+
+
+
+
+- (void) setMinWidth: (float)minWidth
+
+
+
+
+- (void) setResizable: (BOOL)flag
+
+
+
+
+- (void) setTableView: (NSTableView*)aTableView
+
+
+
+
+- (void) setWidth: (float)newWidth
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (NSTableView*) tableView
+
+
+
+
+- (float) width
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTableHeaderCell.html b/Documentation/gsdoc/NSTableHeaderCell.html
new file mode 100644
index 000000000..a680c8e58
--- /dev/null
+++ b/Documentation/gsdoc/NSTableHeaderCell.html
@@ -0,0 +1,36 @@
+
+NSTableHeaderCell
+
+
+[Previous]
+[Up]
+[Next]
+NSTableHeaderCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTableHeaderCell.h
+Inherits from: NSTextFieldCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) drawInteriorWithFrame: (NSRect)cellFrame
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTableHeaderView.html b/Documentation/gsdoc/NSTableHeaderView.html
new file mode 100644
index 000000000..15e4a4408
--- /dev/null
+++ b/Documentation/gsdoc/NSTableHeaderView.html
@@ -0,0 +1,72 @@
+
+NSTableHeaderView
+
+
+[Previous]
+[Up]
+[Next]
+NSTableHeaderView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTableHeaderView.h
+Inherits from: NSView
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (int) columnAtPoint: (NSPoint)aPoint
+
+
+
+
+- (int) draggedColumn
+
+
+
+
+- (float) draggedDistance
+
+
+
+
+- (NSRect) headerRectOfColumn: (int)columnIndex
+
+
+
+
+- (int) resizedColumn
+
+
+
+
+- (void) setTableView: (NSTableView*)aTableView
+
+
+
+
+- (NSTableView*) tableView
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTableView.html b/Documentation/gsdoc/NSTableView.html
new file mode 100644
index 000000000..1e7c0e4ba
--- /dev/null
+++ b/Documentation/gsdoc/NSTableView.html
@@ -0,0 +1,600 @@
+
+NSTableView
+
+
+[Previous]
+[Up]
+[Next]
+NSTableView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTableView.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (void) addTableColumn: (NSTableColumn*)aColumn
+
+
+
+
+- (BOOL) allowsColumnReordering
+
+
+
+
+- (BOOL) allowsColumnResizing
+
+
+
+
+- (BOOL) allowsColumnSelection
+
+
+
+
+- (BOOL) allowsEmptySelection
+
+
+
+
+- (BOOL) allowsMultipleSelection
+
+
+
+
+- (BOOL) autoresizesAllColumnsToFit
+
+
+
+
+- (NSString*) autosaveName
+
+
+
+
+- (BOOL) autosaveTableColumns
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (int) clickedColumn
+
+
+
+
+- (int) clickedRow
+
+
+
+
+- (int) columnAtPoint: (NSPoint)aPoint
+
+
+
+
+- (NSRange) columnsInRect: (NSRect)aRect
+
+
+
+
+- (int) columnWithIdentifier: (id)anObject
+
+
+
+
+- (NSView*) cornerView
+
+
+
+
+- (id) dataSource
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) deselectAll: (id)sender
+
+
+
+
+- (void) deselectColumn: (int)columnIndex
+
+
+
+
+- (void) deselectRow: (int)rowIndex
+
+
+
+
+- (SEL) doubleAction
+
+
+
+
+- (void) drawGridInClipRect: (NSRect)aRect
+
+
+
+
+- (void) drawRow: (int)rowIndex
+
+
+
+
+- (BOOL) drawsGrid
+
+
+
+
+- (void) editColumn: (int)columnIndex row: (int)rowIndex withEvent: (NSEvent*)theEvent
+
+
+
+
+- (int) editedColumn
+
+
+
+
+- (int) editedRow
+
+
+
+
+- (NSRect) frameOfCellAtColumn: (int)columnIndex
+
+
+
+
+- (NSColor*) gridColor
+
+
+
+
+- (NSTableHeaderView*) headerView
+
+
+
+
+- (void) highlightSelectionInClipRect: (NSRect)clipRect
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (NSSize) intercellSpacing
+
+
+
+
+- (BOOL) isColumnSelected: (int)columnIndex
+
+
+
+
+- (BOOL) isRowSelected: (int)rowIndex
+
+
+
+
+- (void) moveColumn: (int)columnIndex
+
+
+
+
+- (void) noteNumberOfRowsChanged
+
+
+
+
+- (int) numberOfColumns
+
+
+
+
+- (int) numberOfRows
+
+
+
+
+- (int) numberOfSelectedColumns
+
+
+
+
+- (int) numberOfSelectedRows
+
+
+
+
+- (NSRect) rectOfColumn: (int)columnIndex
+
+
+
+
+- (NSRect) rectOfRow: (int)rowIndex
+
+
+
+
+- (void) reloadData
+
+
+
+
+- (void) removeTableColumn: (NSTableColumn*)aTableColumn
+
+
+
+
+- (int) rowAtPoint: (NSPoint)aPoint
+
+
+
+
+- (float) rowHeight
+
+
+
+
+- (NSRange) rowsInRect: (NSRect)aRect
+
+
+
+
+- (void) scrollColumnToVisible: (int)columnIndex
+
+
+
+
+- (void) scrollRowToVisible: (int)rowIndex
+
+
+
+
+- (void) selectAll: (id)sender
+
+
+
+
+- (void) selectColumn: (int)columnIndex byExtendingSelection: (BOOL)flag
+
+
+
+
+- (int) selectedColumn
+
+
+
+
+- (NSEnumerator*) selectedColumnEnumerator
+
+
+
+
+- (int) selectedRow
+
+
+
+
+- (NSEnumerator*) selectedRowEnumerator
+
+
+
+
+- (void) selectRow: (int)rowIndex byExtendingSelection: (BOOL)flag
+
+
+
+
+- (void) setAllowsColumnReordering: (BOOL)flag
+
+
+
+
+- (void) setAllowsColumnResizing: (BOOL)flag
+
+
+
+
+- (void) setAllowsColumnSelection: (BOOL)flag
+
+
+
+
+- (void) setAllowsEmptySelection: (BOOL)flag
+
+
+
+
+- (void) setAllowsMultipleSelection: (BOOL)flag
+
+
+
+
+- (void) setAutoresizesAllColumnsToFit: (BOOL)flag
+
+
+
+
+- (void) setAutosaveName: (NSString*)name
+
+
+
+
+- (void) setAutosaveTableColumns: (BOOL)flag
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setCornerView: (NSView*)aView
+
+
+
+
+- (void) setDataSource: (id)anObject
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDoubleAction: (SEL)aSelector
+
+
+
+
+- (void) setDrawsGrid: (BOOL)flag
+
+
+
+
+- (void) setGridColor: (NSColor*)aColor
+
+
+
+
+- (void) setHeaderView: (NSTableHeaderView*)aHeaderView
+
+
+
+
+- (void) setIntercellSpacing: (NSSize)aSize
+
+
+
+
+- (void) setRowHeight: (float)rowHeight
+
+
+
+
+- (void) sizeLastColumnToFit
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (NSArray*) tableColumns
+
+
+
+
+- (NSTableColumn*) tableColumnWithIdentifier: (id)anObject
+
+
+
+
+- (void) textDidBeginEditing: (NSNotification*)aNotification
+
+
+
+
+- (void) textDidChange: (NSNotification*)aNotification
+
+
+
+
+- (void) textDidEndEditing: (NSNotification*)aNotification
+
+
+
+
+- (BOOL) textShouldBeginEditing: (NSText*)textObject
+
+
+
+
+- (BOOL) textShouldEndEditing: (NSText*)textObject
+
+
+
+
+- (void) tile
+
+
+
+
+- (BOOL) selectionShouldChangeInTableView: (NSTableView*)aTableView
+
+
+
+
+- (BOOL) tableView: (NSTableView*)aTableView shouldEditTableColumn: (NSTableColumn*)aTableColumn
+
+
+
+
+- (BOOL) tableView: (NSTableView*)aTableView shouldSelectRow: (int)rowIndex
+
+
+
+
+- (BOOL) tableView: (NSTableView*)aTableView shouldSelectTableColumn: (NSTableColumn*)aTableColumn
+
+
+
+
+- (void) tableView: (NSTableView*)aTableView willDisplayCell: (id)aCell forTableColumn: (NSTableColumn*)aTableColumn
+
+
+
+
+- (void) tableViewColumnDidMove: (NSNotification*)aNotification
+
+
+
+
+- (void) tableViewColumnDidResize: (NSNotification*)aNotification
+
+
+
+
+- (void) tableViewSelectionDidChange: (NSNotification*)aNotification
+
+
+
+
+- (void) tableViewSelectionIsChanging: (NSNotification*)aNotification
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSText.html b/Documentation/gsdoc/NSText.html
new file mode 100644
index 000000000..ed0820497
--- /dev/null
+++ b/Documentation/gsdoc/NSText.html
@@ -0,0 +1,468 @@
+
+NSText
+
+
+[Previous]
+[Up]
+[Next]
+NSText
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSText.h
+Inherits from: NSView
+Conforms to: NSChangeSpelling
+
+
+
+
+
+
+
+- (void) alignCenter: (id)sender
+
+
+
+
+- (void) alignLeft: (id)sender
+
+
+
+
+- (void) alignRight: (id)sender
+
+
+
+
+- (NSTextAlignment) alignment
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (void) changeFont: (id)sender
+
+
+
+
+- (void) checkSpelling: (id)sender
+
+
+
+
+- (void) copy: (id)sender
+
+
+
+
+- (void) copyFont: (id)sender
+
+
+
+
+- (void) copyRuler: (id)sender
+
+
+
+
+- (void) cut: (id)sender
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) delete: (id)sender
+
+
+
+
+- (BOOL) drawsBackground
+
+
+
+
+- (NSFont*) font
+
+
+
+
+- (BOOL) importsGraphics
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (BOOL) isFieldEditor
+
+
+
+
+- (BOOL) isHorizontallyResizable
+
+
+
+
+- (BOOL) isRichText
+
+
+
+
+- (BOOL) isRulerVisible
+
+
+
+
+- (BOOL) isSelectable
+
+
+
+
+- (BOOL) isVerticallyResizable
+
+
+
+
+- (NSSize) maxSize
+
+
+
+
+- (NSSize) minSize
+
+
+
+
+- (void) paste: (id)sender
+
+
+
+
+- (void) pasteFont: (id)sender
+
+
+
+
+- (void) pasteRuler: (id)sender
+
+
+
+
+- (BOOL) readRTFDFromFile: (NSString*)path
+
+
+
+
+- (void) replaceCharactersInRange: (NSRange)aRange withRTF: (NSData*)rtfData
+
+
+
+
+- (void) replaceCharactersInRange: (NSRange)aRange withRTFD: (NSData*)rtfdData
+
+
+
+
+- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString
+
+
+
+
+- (NSData*) RTFDFromRange: (NSRange)aRange
+
+
+
+
+- (void) scrollRangeToVisible: (NSRange)aRange
+
+
+
+
+- (void) selectAll: (id)sender
+
+
+
+
+- (NSRange) selectedRange
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)mode
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDrawsBackground: (BOOL)flag
+
+
+
+
+- (void) setEditable: (BOOL)flag
+
+
+
+
+- (void) setFieldEditor: (BOOL)flag
+
+
+
+
+- (void) setFont: (NSFont*)aFont
+
+
+
+
+- (void) setFont: (NSFont*)aFont
+
+
+
+
+- (void) setHorizontallyResizable: (BOOL)flag
+
+
+
+
+- (void) setImportsGraphics: (BOOL)flag
+
+
+
+
+- (void) setMaxSize: (NSSize)aSize
+
+
+
+
+- (void) setMinSize: (NSSize)aSize
+
+
+
+
+- (void) setRichText: (BOOL)flag
+
+
+
+
+- (void) setSelectable: (BOOL)flag
+
+
+
+
+- (void) setSelectedRange: (NSRange)aRange
+
+
+
+
+- (void) setString: (NSString*)aString
+
+
+
+
+- (void) setTextColor: (NSColor*)aColor
+
+
+
+
+- (void) setTextColor: (NSColor*)aColor
+
+
+
+
+- (void) setUsesFontPanel: (BOOL)flag
+
+
+
+
+- (void) setVerticallyResizable: (BOOL)flag
+
+
+
+
+- (void) showGuessPanel: (id)sender
+
+
+
+
+- (void) sizeToFit
+
+
+
+
+- (NSString*) string
+
+
+
+
+- (void) subscript: (id)sender
+
+
+
+
+- (void) superscript: (id)sender
+
+
+
+
+- (NSColor*) textColor
+
+
+
+
+- (void) toggleRuler: (id)sender
+
+
+
+
+- (void) underline: (id)sender
+
+
+
+
+- (void) unscript: (id)sender
+
+
+
+
+- (BOOL) usesFontPanel
+
+
+
+
+- (BOOL) writeRTFDToFile: (NSString*)path atomically: (BOOL)atomicFlag
+
+
+
+
+- (void) textDidBeginEditing: (NSNotification*)aNotification
+
+
+
+
+- (void) textDidChange: (NSNotification*)aNotification
+
+
+
+
+- (void) textDidEndEditing: (NSNotification*)aNotification
+
+
+
+
+- (BOOL) textShouldBeginEditing: (NSText*)aTextObject
+
+
+
+
+- (BOOL) textShouldEndEditing: (NSText*)aTextObject
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextAttachment.html b/Documentation/gsdoc/NSTextAttachment.html
new file mode 100644
index 000000000..751d15835
--- /dev/null
+++ b/Documentation/gsdoc/NSTextAttachment.html
@@ -0,0 +1,60 @@
+
+NSTextAttachment
+
+
+[Previous]
+[Up]
+[Next]
+NSTextAttachment
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTextAttachment.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (id<NSTextAttachmentCell>) attachmentCell
+
+
+
+
+- (NSFileWrapper*) fileWrapper
+
+
+
+
+- (id) initWithFileWrapper: (NSFileWrapper*)aWrapper
+
+
+
+
+- (void) setAttachmentCell: (id<NSTextAttachmentCell>)aCell
+
+
+
+
+- (void) setFileWrapper: (NSFileWrapper*)aWrapper
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextAttachmentCell.html b/Documentation/gsdoc/NSTextAttachmentCell.html
new file mode 100644
index 000000000..c9a7f088f
--- /dev/null
+++ b/Documentation/gsdoc/NSTextAttachmentCell.html
@@ -0,0 +1,42 @@
+
+NSTextAttachmentCell
+
+
+[Previous]
+[Up]
+[Next]
+NSTextAttachmentCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: NSTextAttachment.h
+Inherits from: NSCell
+Conforms to: NSTextAttachmentCell
+
+
+
+
+
+
+
+- (BOOL) trackMouse: (NSEvent*)theEvent inRect: (NSRect)cellFrame ofView: (NSView*)aTextView untilMouseUp: (BOOL)flag
+
+
+
+
+- (BOOL) wantsToTrackMouse
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextContainer.html b/Documentation/gsdoc/NSTextContainer.html
new file mode 100644
index 000000000..0a75503b9
--- /dev/null
+++ b/Documentation/gsdoc/NSTextContainer.html
@@ -0,0 +1,132 @@
+
+NSTextContainer
+
+
+[Previous]
+[Up]
+[Next]
+NSTextContainer
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTextContainer.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (NSSize) containerSize
+
+
+
+
+- (BOOL) containsPoint: (NSPoint)aPoint
+
+
+
+
+- (BOOL) heightTracksTextView
+
+
+
+
+- (id) initWithContainerSize: (NSSize)aSize
+
+
+
+
+- (BOOL) isSimpleRectangularTextContainer
+
+
+
+
+- (NSLayoutManager*) layoutManager
+
+
+
+
+- (float) lineFragmentPadding
+
+
+
+
+- (NSRect) lineFragmentRectForProposedRect: (NSRect)proposedRect sweepDirection: (NSLineSweepDirection)sweepDirection movementDirection: (NSLineMovementDirection)movementDirection
+
+
+
+
+- (void) replaceLayoutManager: (NSLayoutManager*)aLayoutManager
+
+
+
+
+- (void) setContainerSize: (NSSize)aSize
+
+
+
+
+- (void) setHeightTracksTextView: (BOOL)flag
+
+
+
+
+- (void) setLayoutManager: (NSLayoutManager*)aLayoutManager
+
+
+
+
+- (void) setLineFragmentPadding: (float)aFloat
+
+
+
+
+- (void) setTextView: (NSTextView*)aTextView
+
+
+
+
+- (void) setWidthTracksTextView: (BOOL)flag
+
+
+
+
+- (NSTextView*) textView
+
+
+
+
+- (BOOL) widthTracksTextView
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextField.html b/Documentation/gsdoc/NSTextField.html
new file mode 100644
index 000000000..fabbbf395
--- /dev/null
+++ b/Documentation/gsdoc/NSTextField.html
@@ -0,0 +1,228 @@
+
+NSTextField
+
+
+[Previous]
+[Up]
+[Next]
+NSTextField
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTextField.h
+Inherits from: NSControl
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (BOOL) acceptsFirstResponder
+
+
+
+
+- (BOOL) allowsEditingTextAttributes
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (id) delegate
+
+
+
+
+- (BOOL) drawsBackground
+
+
+
+
+- (SEL) errorAction
+
+
+
+
+- (BOOL) importsGraphics
+
+
+
+
+- (BOOL) isBezeled
+
+
+
+
+- (BOOL) isBordered
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (BOOL) isSelectable
+
+
+
+
+- (id) nextText
+
+
+
+
+- (id) previousText
+
+
+
+
+- (void) selectText: (id)sender
+
+
+
+
+- (void) setAllowsEditingTextAttributes: (BOOL)flag
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setBezeled: (BOOL)flag
+
+
+
+
+- (void) setBordered: (BOOL)flag
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDrawsBackground: (BOOL)flag
+
+
+
+
+- (void) setEditable: (BOOL)flag
+
+
+
+
+- (void) setErrorAction: (SEL)aSelector
+
+
+
+
+- (void) setImportsGraphics: (BOOL)flag
+
+
+
+
+- (void) setPreviousText: (id)anObject
+
+
+
+
+- (void) setSelectable: (BOOL)flag
+
+
+
+
+- (void) setTextColor: (NSColor*)aColor
+
+
+
+
+- (void) setTitleWithMnemonic: (NSString*)aString
+
+
+
+
+- (NSColor*) textColor
+
+
+
+
+- (void) textDidBeginEditing: (NSNotification*)aNotification
+
+
+
+
+- (void) textDidChange: (NSNotification*)aNotification
+
+
+
+
+- (void) textDidEndEditing: (NSNotification*)aNotification
+
+
+
+
+- (BOOL) textShouldBeginEditing: (NSText*)textObject
+
+
+
+
+- (BOOL) textShouldEndEditing: (NSText*)textObject
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextFieldCell.html b/Documentation/gsdoc/NSTextFieldCell.html
new file mode 100644
index 000000000..1630ac291
--- /dev/null
+++ b/Documentation/gsdoc/NSTextFieldCell.html
@@ -0,0 +1,72 @@
+
+NSTextFieldCell
+
+
+[Previous]
+[Up]
+[Next]
+NSTextFieldCell
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTextFieldCell.h
+Inherits from: NSActionCell
+Conforms to: NSCoding
+
+
+
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (BOOL) drawsBackground
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setDrawsBackground: (BOOL)flag
+
+
+
+
+- (void) setTextColor: (NSColor*)aColor
+
+
+
+
+- (NSText*) setUpFieldEditorAttributes: (NSText*)textObj
+
+
+
+
+- (NSColor*) textColor
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextStorage.html b/Documentation/gsdoc/NSTextStorage.html
new file mode 100644
index 000000000..e71a87b6e
--- /dev/null
+++ b/Documentation/gsdoc/NSTextStorage.html
@@ -0,0 +1,108 @@
+
+NSTextStorage
+
+
+[Previous]
+[Up]
+[Next]
+NSTextStorage
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTextStorage.h
+Inherits from: NSMutableAttributedString
+Conforms to: NSCopying
+
+
+
+
+
+
+
+- (void) addLayoutManager: (NSLayoutManager*)aLayoutManager
+
+
+
+
+- (int) changeInLength
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) edited: (unsigned int)mask range: (NSRange)oldRange changeInLength: (int)lengthChange
+
+
+
+
+- (unsigned int) editedMask
+
+
+
+
+- (NSRange) editedRange
+
+
+
+
+- (void) endEditing
+
+
+
+
+- (NSArray*) layoutManagers
+
+
+
+
+- (void) processEditing
+
+
+
+
+- (void) removeLayoutManager: (NSLayoutManager*)aLayoutManager
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) textStorageDidProcessEditing: (NSNotification*)aNotification
+
+
+
+
+- (void) textStorageWillProcessEditing: (NSNotification*)aNotification
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextTab.html b/Documentation/gsdoc/NSTextTab.html
new file mode 100644
index 000000000..3f0627054
--- /dev/null
+++ b/Documentation/gsdoc/NSTextTab.html
@@ -0,0 +1,48 @@
+
+NSTextTab
+
+
+[Previous]
+[Up]
+[Next]
+NSTextTab
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSParagraphStyle.h
+Inherits from: NSObject
+Conforms to: NSCopying
+
+
+
+
+
+
+
+- (id) initWithType: (NSTextTabType)type location: (float)location
+
+
+
+
+- (float) location
+
+
+
+
+- (NSTextTabType) tabStopType
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSTextView.html b/Documentation/gsdoc/NSTextView.html
new file mode 100644
index 000000000..906cb070b
--- /dev/null
+++ b/Documentation/gsdoc/NSTextView.html
@@ -0,0 +1,744 @@
+
+NSTextView
+
+
+[Previous]
+[Up]
+[Next]
+NSTextView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSTextView.h
+Inherits from: NSText
+Conforms to: NSTextInput
+
+
+
+
+
+
+
++ (void) registerForServices
+
+
+
+
+- (NSArray*) acceptableDragTypes
+
+
+
+
+- (void) alignJustified: (id)sender
+
+
+
+
+- (BOOL) allowsUndo;
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (BOOL) becomeFirstResponder
+
+
+
+
+- (void) changeColor: (id)sender
+
+
+
+
+- (void) cleanUpAfterDragOperation
+
+
+
+
+- (void) clickedOnLink: (id)link atIndex: (unsigned int)charIndex
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) didChangeText
+
+
+
+
+- (unsigned int) dragOperationForDraggingInfo: (id<NSDraggingInfo>)dragInfo
+
+
+
+
+- (void) drawInsertionPointInRect: (NSRect)aRect color: (NSColor *)aColor turnedOn: (BOOL)flag
+
+
+
+
+- (BOOL) drawsBackground
+
+
+
+
+- (void) encodeWithCoder: (NSCoder*)encoder
+
+
+
+
+- (BOOL) importsGraphics
+
+
+
+
+- (id) initWithCoder: (NSCoder*)decoder
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect textContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (void) insertText: (NSString*)aString
+
+
+
+
+- (NSColor*) insertionPointColor
+
+
+
+
+- (void) invalidateTextContainerOrigin
+
+
+
+
+- (BOOL) isEditable
+
+
+
+
+- (BOOL) isFieldEditor
+
+
+
+
+- (BOOL) isRichText
+
+
+
+
+- (BOOL) isRulerVisible
+
+
+
+
+- (BOOL) isSelectable
+
+
+
+
+- (NSLayoutManager*) layoutManager
+
+
+
+
+- (void) loosenKerning: (id)sender
+
+
+
+
+- (void) lowerBaseline: (id)sender
+
+
+
+
+- (NSRange) markedRange
+
+
+
+
+- (NSDictionary*) markedTextAttributes
+
+
+
+
+- (void) pasteAsPlainText: (id)sender
+
+
+
+
+- (void) pasteAsRichText: (id)sender
+
+
+
+
+- (NSString*) preferredPasteboardTypeFromArray: (NSArray*)availableTypes restrictedToTypesFromArray: (NSArray*)allowedTypes
+
+
+
+
+- (void) raiseBaseline: (id)sender
+
+
+
+
+- (NSArray*) readablePasteboardTypes
+
+
+
+
+- (BOOL) readSelectionFromPasteboard: (NSPasteboard*)pboard
+
+
+
+
+- (BOOL) readSelectionFromPasteboard: (NSPasteboard*)pboard
+
+
+
+
+- (void) replaceTextContainer: (NSTextContainer*)aTextContainer
+
+
+
+
+- (BOOL) resignFirstResponder
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView didAddMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView didMoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView didRemoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (void) rulerView: (NSRulerView*)aRulerView handleMouseDown: (NSEvent*)theEvent
+
+
+
+
+- (BOOL) rulerView: (NSRulerView*)aRulerView shouldAddMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (BOOL) rulerView: (NSRulerView*)aRulerView shouldMoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (BOOL) rulerView: (NSRulerView*)aRulerView shouldRemoveMarker: (NSRulerMarker*)aMarker
+
+
+
+
+- (float) rulerView: (NSRulerView*)aRulerView willAddMarker: (NSRulerMarker*)aMarker atLocation: (float)location
+
+
+
+
+- (float) rulerView: (NSRulerView*)aRulerView willMoveMarker: (NSRulerMarker*)aMarker toLocation: (float)location
+
+
+
+
+- (NSRange) selectedRange
+
+
+
+
+- (NSDictionary*) selectedTextAttributes
+
+
+
+
+- (NSSelectionAffinity) selectionAffinity
+
+
+
+
+- (NSSelectionGranularity) selectionGranularity
+
+
+
+
+- (NSRange) selectionRangeForProposedRange: (NSRange)proposedSelRange
+
+
+
+
+- (void) setAllowsUndo: (BOOL)flag
+
+
+
+
+- (void) setAlignment: (NSTextAlignment)alignment
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setConstrainedFrameSize: (NSSize)desiredSize
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDrawsBackground: (BOOL)flag
+
+
+
+
+- (void) setEditable: (BOOL)flag
+
+
+
+
+- (void) setFieldEditor: (BOOL)flag
+
+
+
+
+- (void) setImportsGraphics: (BOOL)flag
+
+
+
+
+- (void) setInsertionPointColor: (NSColor*)aColor
+
+
+
+
+- (void) setMarkedTextAttributes: (NSDictionary*)attributes
+
+
+
+
+- (void) setNeedsDisplayInRect: (NSRect)aRect avoidAdditionalLayout: (BOOL)flag
+
+
+
+
+- (void) setRichText: (BOOL)flag
+
+
+
+
+- (void) setRulerVisible: (BOOL)flag
+
+
+
+
+- (void) setSelectable: (BOOL)flag
+
+
+
+
+- (void) setSelectedRange: (NSRange)charRange
+
+
+
+
+- (void) setSelectedRange: (NSRange)charRange affinity: (NSSelectionAffinity)affinity stillSelecting: (BOOL)flag
+
+
+
+
+- (void) setSelectedTextAttributes: (NSDictionary*)attributes
+
+
+
+
+- (void) setSelectionGranularity: (NSSelectionGranularity)granularity
+
+
+
+
+- (void) setSmartInsertDeleteEnabled: (BOOL)flag
+
+
+
+
+- (void) setTextContainerInset: (NSSize)inset
+
+
+
+
+- (void) setTypingAttributes: (NSDictionary*)attributes
+
+
+
+
+- (void) setUsesFontPanel: (BOOL)flag
+
+
+
+
+- (void) setUsesRuler: (BOOL)flag
+
+
+
+
+- (BOOL) shouldChangeTextInRange: (NSRange)affectedCharRange
+
+
+
+
+- (BOOL) shouldDrawInsertionPoint
+
+
+
+
+- (NSRange) smartDeleteRangeForProposedRange: (NSRange)proposedCharRange
+
+
+
+
+- (NSString*) smartInsertAfterStringForString: (NSString*)aString replacingRange: (NSRange)charRange
+
+
+
+
+- (NSString*) smartInsertBeforeStringForString: (NSString*)aString replacingRange: (NSRange)charRange
+
+
+
+
+- (int) spellCheckerDocumentTag
+
+
+
+
+- (NSTextContainer*) textContainer
+
+
+
+
+- (NSSize) textContainerInset
+
+
+
+
+- (NSPoint) textContainerOrigin
+
+
+
+
+- (NSTextStorage*) textStorage
+
+
+
+
+- (void) tightenKerning: (id)sender
+
+
+
+
+- (void) turnOffKerning: (id)sender
+
+
+
+
+- (void) turnOffLigatures: (id)sender
+
+
+
+
+- (NSDictionary*) typingAttributes
+
+
+
+
+- (void) updateDragTypeRegistration
+
+
+
+
+- (void) updateFontPanel
+
+
+
+
+- (void) updateInsertionPointStateAndRestartTimer: (BOOL)flag
+
+
+
+
+- (void) updateRuler
+
+
+
+
+- (void) useAllLigatures: (id)sender
+
+
+
+
+- (BOOL) usesFontPanel
+
+
+
+
+- (BOOL) usesRuler
+
+
+
+
+- (void) useStandardKerning: (id)sender
+
+
+
+
+- (void) useStandardLigatures: (id)sender
+
+
+
+
+- (id) validRequestorForSendType: (NSString*)sendType returnType: (NSString*)returnType
+
+
+
+
+- (NSArray*) writablePasteboardTypes
+
+
+
+
+- (BOOL) writeSelectionToPasteboard: (NSPasteboard*)pboard
+
+
+
+
+- (BOOL) writeSelectionToPasteboard: (NSPasteboard*)pboard
+
+
+
+
+- (void) textView: (NSTextView*)aTextView clickedOnCell: (id<NSTextAttachmentCell>)attachmentCell
+
+
+
+
+- (void) textView: (NSTextView*)textView clickedOnCell: (id<NSTextAttachmentCell>)cell inRect: (NSRect)cellFrame
+
+
+
+
+- (BOOL) textView: (NSTextView*)textView clickedOnLink: (id)link
+
+
+
+
+- (BOOL) textView: (NSTextView*)textView clickedOnLink: (id)link atIndex: (unsigned int)charIndex
+
+
+
+
+- (BOOL) textView: (NSTextView*)aTextView doCommandBySelector: (SEL)aSelector
+
+
+
+
+- (void) textView: (NSTextView*)aTextView doubleClickedOnCell: (id<NSTextAttachmentCell>)attachmentCell
+
+
+
+
+- (void) textView: (NSTextView*)textView doubleClickedOnCell: (id<NSTextAttachmentCell>)cell inRect: (NSRect)cellFrame
+
+
+
+
+- (void) textView: (NSTextView*)aTextView draggedCell: (id<NSTextAttachmentCell>)attachmentCell inRect: (NSRect)aRect event: (NSEvent*)theEvent
+
+
+
+
+- (void) textView: (NSTextView*)view draggedCell: (id<NSTextAttachmentCell>)cell inRect: (NSRect)rect event: (NSEvent*)event atIndex: (unsigned int)charIndex
+
+
+
+
+- (BOOL) textView: (NSTextView*)aTextView shouldChangeTextInRange: (NSRange)affectedCharRange
+
+
+
+
+- (NSRange) textView: (NSTextView*)aTextView willChangeSelectionFromCharacterRange: (NSRange)oldSelectedCharRange
+
+
+
+
+- (void) textViewDidChangeSelection: (NSNotification*)aNotification
+
+
+
+
+- (NSUndoManager*) undoManagerForTextView: (NSTextView*)view
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSView.html b/Documentation/gsdoc/NSView.html
new file mode 100644
index 000000000..53f2480f9
--- /dev/null
+++ b/Documentation/gsdoc/NSView.html
@@ -0,0 +1,852 @@
+
+NSView
+
+
+[Previous]
+[Up]
+[Next]
+NSView
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSView.h
+Inherits from: NSResponder
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSMenu*) defaultMenu
+
+
+
+
++ (NSView*) focusView
+
+
+
+
+- (BOOL) acceptsFirstMouse: (NSEvent*)theEvent
+
+
+
+
+- (void) addCursorRect: (NSRect)aRect cursor: (NSCursor*)aCursor
+
+
+
+
+- (void) addSubview: (NSView*)aView
+
+
+
+
+- (void) addSubview: (NSView*)aView positioned: (NSWindowOrderingMode)place relativeTo: (NSView*)otherView
+
+
+
+
+- (void) addToPageSetup
+
+
+
+
+- (NSTrackingRectTag) addTrackingRect: (NSRect)aRect owner: (id)anObject userData: (void*)userData assumeInside: (BOOL)flag
+
+
+
+
+- (void) adjustPageHeightNew: (float*)newBottom top: (float)top bottom: (float)proposedBottom
+
+
+
+
+- (void) adjustPageWidthNew: (float*)newRight left: (float)left right: (float)proposedRight
+
+
+
+
+- (NSRect) adjustScroll: (NSRect)proposedVisibleRect
+
+
+
+
+- (void) allocateGState
+
+
+
+
+- (NSView*) ancestorSharedWithView: (NSView*)aView
+
+
+
+
+- (BOOL) autoresizesSubviews
+
+
+
+
+- (unsigned int) autoresizingMask
+
+
+
+
+- (BOOL) autoscroll: (NSEvent*)theEvent
+
+
+
+
+- (void) beginPage: (int)ordinalNum label: (NSString *)aString bBox: (NSRect)pageRect
+
+
+
+
+- (void) beginPageSetupRect: (NSRect)aRect placement: (NSPoint)location
+
+
+
+
+- (void) beginPrologueBBox: (NSRect)boundingBox creationDate: (NSString*)dateCreated createdBy: (NSString *)anApplication fonts: (NSString*)fontNames forWhom: (NSString *)user pages: (int)numPages
+
+
+
+
+- (void) beginSetup
+
+
+
+
+- (void) beginTrailer
+
+
+
+
+- (NSRect) bounds
+
+
+
+
+- (float) boundsRotation
+
+
+
+
+- (BOOL) canDraw
+
+
+
+
+- (NSRect) centerScanRect: (NSRect)aRect
+
+
+
+
+- (NSPoint) convertPoint: (NSPoint)aPoint fromView: (NSView*)aView
+
+
+
+
+- (NSPoint) convertPoint: (NSPoint)aPoint
+
+
+
+
+- (NSRect) convertRect: (NSRect)aRect fromView: (NSView*)aView
+
+
+
+
+- (NSRect) convertRect: (NSRect)aRect toView: (NSView*)aView
+
+
+
+
+- (NSSize) convertSize: (NSSize)aSize fromView: (NSView*)aView
+
+
+
+
+- (NSSize) convertSize: (NSSize)aSize toView: (NSView*)aView
+
+
+
+
+- (NSData*) dataWithEPSInsideRect: (NSRect)aRect
+
+
+
+
+- (void) discardCursorRects
+
+
+
+
+- (void) display
+
+
+
+
+- (void) displayIfNeeded
+
+
+
+
+- (void) displayIfNeededIgnoringOpacity
+
+
+
+
+- (void) displayIfNeededInRect: (NSRect)aRect
+
+
+
+
+- (void) displayIfNeededInRectIgnoringOpacity: (NSRect)aRect
+
+
+
+
+- (void) displayRect: (NSRect)aRect
+
+
+
+
+- (void) displayRectIgnoringOpacity: (NSRect)aRect
+
+
+
+
+- (BOOL) dragFile: (NSString*)fullPath fromRect: (NSRect)aRect slideBack: (BOOL)slideBack
+
+
+
+
+- (void) dragImage: (NSImage*)anImage at: (NSPoint)imageLoc offset: (NSSize)mouseOffset event: (NSEvent *)theEvent pasteboard: (NSPasteboard*)pboard source: (id)sourceObject slideBack: (BOOL)slideBack
+
+
+
+
+- (void) drawPageBorderWithSize: (NSSize)borderSize
+
+
+
+
+- (void) drawRect: (NSRect)aRect
+
+
+
+
+- (void) drawSheetBorderWithSize: (NSSize)borderSize
+
+
+
+
+- (NSScrollView*) enclosingScrollView
+
+
+
+
+- (void) endHeaderComments
+
+
+
+
+- (void) endPage
+
+
+
+
+- (void) endPageSetup
+
+
+
+
+- (void) endPrologue
+
+
+
+
+- (void) endSetup
+
+
+
+
+- (void) endTrailer
+
+
+
+
+- (void) fax: (id)sender
+
+
+
+
+- (NSRect) frame
+
+
+
+
+- (float) frameRotation
+
+
+
+
+- (int) gState
+
+
+
+
+- (float) heightAdjustLimit
+
+
+
+
+- (NSView*) hitTest: (NSPoint)aPoint
+
+
+
+
+- (id) initWithFrame: (NSRect)frameRect
+
+
+
+
+- (NSInterfaceStyle) interfaceStyle
+
+
+
+
+- (BOOL) isDescendantOf: (NSView*)aView
+
+
+
+
+- (BOOL) isFlipped
+
+
+
+
+- (BOOL) isOpaque
+
+
+
+
+- (BOOL) isRotatedFromBase
+
+
+
+
+- (BOOL) isRotatedOrScaledFromBase
+
+
+
+
+- (BOOL) knowsPageRange: (NSRangePointer)range
+
+
+
+
+- (BOOL) knowsPagesFirst: (int*)firstPageNum
+
+
+
+
+- (NSPoint) locationOfPrintRect: (NSRect)aRect
+
+
+
+
+- (void) lockFocus
+
+
+
+
+- (NSMenu*) menuForEvent: (NSEvent*)theEvent
+
+
+
+
+- (BOOL) mouse: (NSPoint)aPoint
+
+
+
+
+- (BOOL) needsDisplay
+
+
+
+
+- (BOOL) needsPanelToBecomeKey
+
+
+
+
+- (NSView*) nextKeyView
+
+
+
+
+- (NSView*) nextValidKeyView
+
+
+
+
+- (NSView*) opaqueAncestor
+
+
+
+
+- (BOOL) performKeyEquivalent: (NSEvent*)theEvent
+
+
+
+
+- (BOOL) performMnemonic: (NSString*)aString
+
+
+
+
+- (BOOL) postsBoundsChangedNotifications
+
+
+
+
+- (BOOL) postsFrameChangedNotifications
+
+
+
+
+- (NSView*) previousKeyView
+
+
+
+
+- (NSView*) previousValidKeyView
+
+
+
+
+- (void) print: (id)sender
+
+
+
+
+- (NSRect) rectForPage: (int)pageNumber
+
+
+
+
+- (void) reflectScrolledClipView: (NSClipView*)aClipView
+
+
+
+
+- (void) registerForDraggedTypes: (NSArray*)pboardTypes
+
+
+
+
+- (void) releaseGState
+
+
+
+
+- (void) removeCursorRect: (NSRect)aRect cursor: (NSCursor*)aCursor
+
+
+
+
+- (void) removeFromSuperview
+
+
+
+
+- (void) removeFromSuperviewWithoutNeedingDisplay
+
+
+
+
+- (void) removeTrackingRect: (NSTrackingRectTag)aTag
+
+
+
+
+- (void) renewGState
+
+
+
+
+- (void) replaceSubview: (NSView*)oldView
+
+
+
+
+- (void) resetCursorRects
+
+
+
+
+- (void) resizeSubviewsWithOldSize: (NSSize)oldFrameSize
+
+
+
+
+- (void) resizeWithOldSuperviewSize: (NSSize)oldFrameSize
+
+
+
+
+- (void) rotateByAngle: (float)angle
+
+
+
+
+- (void) scaleUnitSquareToSize: (NSSize)newUnitSize
+
+
+
+
+- (void) scrollClipView: (NSClipView*)aClipView
+
+
+
+
+- (void) scrollPoint: (NSPoint)aPoint
+
+
+
+
+- (void) scrollRect: (NSRect)aRect
+
+
+
+
+- (BOOL) scrollRectToVisible: (NSRect)aRect
+
+
+
+
+- (void) setAutoresizesSubviews: (BOOL)flag
+
+
+
+
+- (void) setAutoresizingMask: (unsigned int)mask
+
+
+
+
+- (void) setBounds: (NSRect)boundsRect
+
+
+
+
+- (void) setBoundsOrigin: (NSPoint)newOrigin
+
+
+
+
+- (void) setBoundsRotation: (float)angle
+
+
+
+
+- (void) setBoundsSize: (NSSize)newSize
+
+
+
+
+- (void) setFrame: (NSRect)frameRect
+
+
+
+
+- (void) setFrameOrigin: (NSPoint)newOrigin
+
+
+
+
+- (void) setFrameRotation: (float)angle
+
+
+
+
+- (void) setFrameSize: (NSSize)newSize
+
+
+
+
+- (void) setInterfaceStyle: (NSInterfaceStyle)interfaceStyle
+
+
+
+
+- (void) setNeedsDisplay: (BOOL)flag
+
+
+
+
+- (void) setNeedsDisplayInRect: (NSRect)invalidRect
+
+
+
+
+- (void) setNextKeyView: (NSView*)aView
+
+
+
+
+- (void) setPostsBoundsChangedNotifications: (BOOL)flag
+
+
+
+
+- (void) setPostsFrameChangedNotifications: (BOOL)flag
+
+
+
+
+- (void) setToolTip: (NSString*)string
+
+
+
+
+- (void) setUpGState
+
+
+
+
+- (BOOL) shouldDelayWindowOrderingForEvent: (NSEvent*)theEvent
+
+
+
+
+- (BOOL) shouldDrawColor
+
+
+
+
+- (void) sortSubviewsUsingFunction: (int (*)(id,id,void*))compare context: (void*)context
+
+
+
+
+- (NSArray*) subviews
+
+
+
+
+- (NSView*) superview
+
+
+
+
+- (int) tag
+
+
+
+
+- (NSString*) toolTip
+
+
+
+
+- (void) translateOriginToPoint: (NSPoint)newOrigin
+
+
+
+
+- (void) unlockFocus
+
+
+
+
+- (void) unregisterDraggedTypes
+
+
+
+
+- (void) viewWillMoveToSuperview: (NSView*)newSuperview
+
+
+
+
+- (void) viewWillMoveToWindow: (NSWindow*)newWindow
+
+
+
+
+- (id) viewWithTag: (int)aTag
+
+
+
+
+- (NSRect) visibleRect
+
+
+
+
+- (float) widthAdjustLimit
+
+
+
+
+- (NSWindow*) window
+
+
+
+
+- (void) writeEPSInsideRect: (NSRect)aRect toPasteboard: (NSPasteboard*)pboard
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSWindow.html b/Documentation/gsdoc/NSWindow.html
new file mode 100644
index 000000000..c3eb23179
--- /dev/null
+++ b/Documentation/gsdoc/NSWindow.html
@@ -0,0 +1,990 @@
+
+NSWindow
+
+
+[Previous]
+[Up]
+[Next]
+NSWindow
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSWindow.h
+Inherits from: NSResponder
+Conforms to: NSCoding
+
+
+
+
+
+
+
++ (NSRect) contentRectForFrameRect: (NSRect)frameRect
+
+
+
+
++ (NSWindowDepth) defaultDepthLimit
+
+
+
+
++ (NSRect) frameRectForContentRect: (NSRect)contentRect
+
+
+
+
++ (void) menuChanged: (NSMenu*)aMenu
+
+
+
+
++ (float) minFrameWidthWithTitle: (NSString*)aTitle styleMask: (unsigned int)aStyle
+
+
+
+
++ (void) removeFrameUsingName: (NSString*)name
+
+
+
+
+- (BOOL) acceptsMouseMovedEvents
+
+
+
+
+- (BOOL) areCursorRectsEnabled
+
+
+
+
+- (NSSize) aspectRatio
+
+
+
+
+- (NSColor*) backgroundColor
+
+
+
+
+- (NSBackingStoreType) backingType
+
+
+
+
+- (void) becomeKeyWindow
+
+
+
+
+- (void) becomeMainWindow
+
+
+
+
+- (void) cacheImageInRect: (NSRect)aRect
+
+
+
+
+- (BOOL) canBecomeKeyWindow
+
+
+
+
+- (BOOL) canBecomeMainWindow
+
+
+
+
+- (BOOL) canStoreColor
+
+
+
+
+- (NSPoint) cascadeTopLeftFromPoint: (NSPoint)topLeftPoint
+
+
+
+
+- (void) center
+
+
+
+
+- (void) close
+
+
+
+
+- (NSRect) constrainFrameRect: (NSRect)frameRect
+
+
+
+
+- (id) contentView
+
+
+
+
+- (NSPoint) convertBaseToScreen: (NSPoint)aPoint
+
+
+
+
+- (NSPoint) convertScreenToBase: (NSPoint)aPoint
+
+
+
+
+- (NSEvent*) currentEvent
+
+
+
+
+- (NSData*) dataWithEPSInsideRect: (NSRect)aRect
+
+
+
+
+- (NSScreen*) deepestScreen
+
+
+
+
+- (NSButtonCell*) defaultButtonCell
+
+
+
+
+- (id) delegate
+
+
+
+
+- (void) deminiaturize: (id)sender
+
+
+
+
+- (NSWindowDepth) depthLimit
+
+
+
+
+- (NSDictionary*) deviceDescription
+
+
+
+
+- (void) disableCursorRects
+
+
+
+
+- (void) disableFlushWindow
+
+
+
+
+- (void) disableKeyEquivalentForDefaultButtonCell
+
+
+
+
+- (void) discardCachedImage
+
+
+
+
+- (void) discardCursorRects
+
+
+
+
+- (void) discardEventsMatchingMask: (unsigned int)mask beforeEvent: (NSEvent*)lastEvent
+
+
+
+
+- (void) display
+
+
+
+
+- (void) displayIfNeeded
+
+
+
+
+- (void) dragImage: (NSImage*)anImage at: (NSPoint)aPoint offset: (NSSize)initialOffset event: (NSEvent *)theEvent pasteboard: (NSPasteboard*)pboard source: (id)sourceObject slideBack: (BOOL)slideBack
+
+
+
+
+- (void) enableCursorRects
+
+
+
+
+- (void) enableFlushWindow
+
+
+
+
+- (void) enableKeyEquivalentForDefaultButtonCell
+
+
+
+
+- (void) endEditingFor: (id)anObject
+
+
+
+
+- (void) fax: (id)sender
+
+
+
+
+- (NSText*) fieldEditor: (BOOL)createFlag
+
+
+
+
+- (NSResponder*) firstResponder
+
+
+
+
+- (void) flushWindow
+
+
+
+
+- (void) flushWindowIfNeeded
+
+
+
+
+- (NSRect) frame
+
+
+
+
+- (NSString*) frameAutosaveName
+
+
+
+
+- (int) gState
+
+
+
+
+- (BOOL) hasDynamicDepthLimit
+
+
+
+
+- (BOOL) hidesOnDeactivate
+
+
+
+
+- (NSView*) initialFirstResponder
+
+
+
+
+- (id) initWithContentRect: (NSRect)contentRect styleMask: (unsigned int)styleMask backing: (NSBackingStoreType)backingType
+
+
+
+
+- (id) initWithContentRect: (NSRect)contentRect styleMask: (unsigned int)styleMask backing: (NSBackingStoreType)bufferingType defer: (BOOL)flag screen: (NSScreen*)aScreen
+
+
+
+
+- (NSInterfaceStyle) interfaceStyle
+
+
+
+
+- (void) invalidateCursorRectsForView: (NSView*)aView
+
+
+
+
+- (BOOL) isAutodisplay
+
+
+
+
+- (BOOL) isDocumentEdited
+
+
+
+
+- (BOOL) isExcludedFromWindowsMenu
+
+
+
+
+- (BOOL) isFlushWindowDisabled
+
+
+
+
+- (BOOL) isKeyWindow
+
+
+
+
+- (BOOL) isMainWindow
+
+
+
+
+- (BOOL) isMiniaturized
+
+
+
+
+- (BOOL) isOneShot
+
+
+
+
+- (BOOL) isReleasedWhenClosed
+
+
+
+
+- (BOOL) isVisible
+
+
+
+
+- (BOOL) isZoomed;
+
+
+
+
+- (void) keyDown: (NSEvent*)theEvent
+
+
+
+
+- (NSSelectionDirection) keyViewSelectionDirection
+
+
+
+
+- (int) level
+
+
+
+
+- (BOOL) makeFirstResponder: (NSResponder*)aResponder
+
+
+
+
+- (void) makeKeyAndOrderFront: (id)sender
+
+
+
+
+- (void) makeKeyWindow
+
+
+
+
+- (void) makeMainWindow
+
+
+
+
+- (NSSize) maxSize
+
+
+
+
+- (void) miniaturize: (id)sender
+
+
+
+
+- (NSImage*) miniwindowImage
+
+
+
+
+- (NSString*) miniwindowTitle
+
+
+
+
+- (NSSize) minSize
+
+
+
+
+- (NSPoint) mouseLocationOutsideOfEventStream
+
+
+
+
+- (NSEvent*) nextEventMatchingMask: (unsigned int)mask
+
+
+
+
+- (NSEvent*) nextEventMatchingMask: (unsigned int)mask untilDate: (NSDate*)expirationDate inMode: (NSString *)mode dequeue: (BOOL)dequeue
+
+
+
+
+- (void) orderBack: (id)sender
+
+
+
+
+- (void) orderFront: (id)sender
+
+
+
+
+- (void) orderFrontRegardless
+
+
+
+
+- (void) orderOut: (id)sender
+
+
+
+
+- (void) orderWindow: (NSWindowOrderingMode)place relativeTo: (int)otherWindowNumber
+
+
+
+
+- (void) performClose: (id)sender
+
+
+
+
+- (void) performMiniaturize: (id)sender
+
+
+
+
+- (void) performZoom: (id)sender
+
+
+
+
+- (void) postEvent: (NSEvent*)anEvent
+
+
+
+
+- (void) print: (id)sender
+
+
+
+
+- (void) registerForDraggedTypes: (NSArray*)pboardTypes
+
+
+
+
+- (NSString*) representedFilename
+
+
+
+
+- (void) resetCursorRects
+
+
+
+
+- (void) resignKeyWindow
+
+
+
+
+- (void) resignMainWindow
+
+
+
+
+- (int) resizeFlags
+
+
+
+
+- (NSSize) resizeIncrements
+
+
+
+
+- (void) restoreCachedImage
+
+
+
+
+- (void) saveFrameUsingName: (NSString*)name
+
+
+
+
+- (NSScreen*) screen
+
+
+
+
+- (void) selectKeyViewFollowingView: (NSView*)aView
+
+
+
+
+- (void) selectKeyViewPrecedingView: (NSView*)aView
+
+
+
+
+- (void) selectNextKeyView: (id)sender
+
+
+
+
+- (void) selectPreviousKeyView: (id)sender
+
+
+
+
+- (void) sendEvent: (NSEvent*)theEvent
+
+
+
+
+- (void) setAcceptsMouseMovedEvents: (BOOL)flag
+
+
+
+
+- (void) setAspectRatio: (NSSize)ratio
+
+
+
+
+- (void) setAutodisplay: (BOOL)flag
+
+
+
+
+- (void) setBackgroundColor: (NSColor*)aColor
+
+
+
+
+- (void) setBackingType: (NSBackingStoreType)backingType
+
+
+
+
+- (void) setContentSize: (NSSize)aSize
+
+
+
+
+- (void) setContentView: (NSView*)aView
+
+
+
+
+- (void) setDefaultButtonCell: (NSButtonCell*)aButtonCell
+
+
+
+
+- (void) setDelegate: (id)anObject
+
+
+
+
+- (void) setDepthLimit: (NSWindowDepth)limit
+
+
+
+
+- (void) setDocumentEdited: (BOOL)flag
+
+
+
+
+- (void) setDynamicDepthLimit: (BOOL)flag
+
+
+
+
+- (void) setExcludedFromWindowsMenu: (BOOL)flag
+
+
+
+
+- (void) setFrame: (NSRect)frameRect
+
+
+
+
+- (BOOL) setFrameAutosaveName: (NSString*)name
+
+
+
+
+- (void) setFrameFromString: (NSString*)aString
+
+
+
+
+- (void) setFrameOrigin: (NSPoint)aPoint
+
+
+
+
+- (void) setFrameTopLeftPoint: (NSPoint)aPoint
+
+
+
+
+- (BOOL) setFrameUsingName: (NSString*)name
+
+
+
+
+- (void) setHidesOnDeactivate: (BOOL)flag
+
+
+
+
+- (void) setInitialFirstResponder: (NSView*)aView
+
+
+
+
+- (void) setInterfaceStyle: (NSInterfaceStyle)interfaceStyle
+
+
+
+
+- (void) setLevel: (int)newLevel
+
+
+
+
+- (void) setMaxSize: (NSSize)aSize
+
+
+
+
+- (void) setMiniwindowImage: (NSImage*)anImage
+
+
+
+
+- (void) setMiniwindowTitle: (NSString*)aString
+
+
+
+
+- (void) setMinSize: (NSSize)aSize
+
+
+
+
+- (void) setOneShot: (BOOL)flag
+
+
+
+
+- (void) setReleasedWhenClosed: (BOOL)flag
+
+
+
+
+- (void) setRepresentedFilename: (NSString*)path
+
+
+
+
+- (void) setResizeIncrements: (NSSize)increments
+
+
+
+
+- (void) setTitle: (NSString*)aString
+
+
+
+
+- (void) setTitleWithRepresentedFilename: (NSString*)path
+
+
+
+
+- (void) setViewsNeedDisplay: (BOOL)flag
+
+
+
+
+- (void) setWindowController: (NSWindowController*)windowController
+
+
+
+
+- (NSString*) stringWithSavedFrame
+
+
+
+
+- (unsigned int) styleMask
+
+
+
+
+- (NSString*) title
+
+
+
+
+- (BOOL) tryToPerform: (SEL)anAction
+
+
+
+
+- (void) unregisterDraggedTypes
+
+
+
+
+- (void) update
+
+
+
+
+- (void) useOptimizedDrawing: (BOOL)flag
+
+
+
+
+- (id) validRequestorForSendType: (NSString*)sendType returnType: (NSString*)returnType
+
+
+
+
+- (BOOL) viewsNeedDisplay
+
+
+
+
+- (id) windowController
+
+
+
+
+- (void*) windowHandle
+
+
+
+
+- (int) windowNumber
+
+
+
+
+- (BOOL) worksWhenModal
+
+
+
+
+- (void) zoom: (id)sender
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSWindowController.html b/Documentation/gsdoc/NSWindowController.html
new file mode 100644
index 000000000..4fb07e6db
--- /dev/null
+++ b/Documentation/gsdoc/NSWindowController.html
@@ -0,0 +1,156 @@
+
+NSWindowController
+
+
+[Previous]
+[Up]
+[Next]
+NSWindowController
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSWindowController.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
+- (void) close
+
+
+
+
+- (id) document
+
+
+
+
+- (id) initWithWindow: (NSWindow*)window
+
+
+
+
+- (id) initWithWindowNibName: (NSString*)windowNibName
+
+
+
+
+- (id) initWithWindowNibName: (NSString*)windowNibName
+
+
+
+
+- (BOOL) isWindowLoaded
+
+
+
+
+- (void) loadWindow
+
+
+
+
+- (id) owner
+
+
+
+
+- (void) setDocument: (NSDocument*)document
+
+
+
+
+- (void) setShouldCascadeWindows: (BOOL)flag
+
+
+
+
+- (void) setShouldCloseDocument: (BOOL)flag
+
+
+
+
+- (void) setWindowFrameAutosaveName: (NSString*)name
+
+
+
+
+- (BOOL) shouldCascadeWindows
+
+
+
+
+- (BOOL) shouldCloseDocument
+
+
+
+
+- (void) showWindow: (id)sender
+
+
+
+
+- (NSWindow*) window
+
+
+
+
+- (void) windowDidLoad
+
+
+
+
+- (NSString*) windowFrameAutosaveName
+
+
+
+
+- (NSString*) windowNibName
+
+
+
+
+- (NSString*) windowTitleForDocumentDisplayName: (NSString*)displayName
+
+
+
+
+- (void) windowWillLoad
+
+
+
+
+
+
diff --git a/Documentation/gsdoc/NSWorkspace.html b/Documentation/gsdoc/NSWorkspace.html
new file mode 100644
index 000000000..11d405a79
--- /dev/null
+++ b/Documentation/gsdoc/NSWorkspace.html
@@ -0,0 +1,203 @@
+
+NSWorkspace
+
+
+[Previous]
+[Up]
+NSWorkspace
+Authors
+
+- Richard Frith-Macdonald
+
-
+
+Version: 0.1
+Date: 28 February, 2000
+
+
+Declared in: AppKit/NSWorkspace.h
+Inherits from: NSObject
+Conforms to: NSObject
+
+
+
+
+
+
+
++ (NSWorkspace*) sharedWorkspace
+
+
+
+
+- (void) checkForRemovableMedia
+
+
+
+
+- (int) extendPowerOffBy: (int)requested
+
+
+
+
+- (BOOL) fileSystemChanged
+
+
+
+
+- (void) findApplications
+
+
+
+
+- (NSString*) fullPathForApplication: (NSString*)appName
+
+
+
+
+- (BOOL) getFileSystemInfoForPath: (NSString*)fullPath isRemovable: (BOOL*)removableFlag isWritable: (BOOL *)writableFlag isUnmountable: (BOOL*)unmountableFlag description: (NSString **)description type: (NSString**)fileSystemType
+
+
+
+
+- (BOOL) getInfoForFile: (NSString*)fullPath application: (NSString**)appName
+
+
+
+
+- (void) hideOtherApplications
+
+
+
+
+- (NSImage*) iconForFile: (NSString*)fullPath
+
+
+
+
+- (NSImage*) iconForFileType: (NSString*)fileType
+
+
+
+
+- (NSImage*) iconForFiles: (NSArray*)fullPaths
+
+
+
+
+- (BOOL) launchApplication: (NSString*)appName
+
+
+
+
+- (BOOL) launchApplication: (NSString*)appName showIcon: (BOOL)showIcon autolaunch: (BOOL)autolaunch
+
+
+
+
+- (NSArray*) mountNewRemovableMedia
+
+
+
+
+- (NSArray*) mountedRemovableMedia
+
+
+
+
+- (void) noteFileSystemChanged
+
+
+
+
+- (void) noteUserDefaultsChanged
+
+
+
+
+- (NSNotificationCenter*) notificationCenter
+
+
+
+
+- (BOOL) openFile: (NSString*)fullPath
+
+
+
+
+- (BOOL) openFile: (NSString*)fullPath fromImage: (NSImage*)anImage at: (NSPoint)point inView: (NSView*)aView
+
+
+
+
+- (BOOL) openFile: (NSString*)fullPath withApplication: (NSString*)appName
+
+
+
+
+- (BOOL) openFile: (NSString*)fullPath withApplication: (NSString*)appName andDeactivate: (BOOL)flag
+
+
+
+
+- (BOOL) openTempFile: (NSString*)fullPath
+
+
+
+
+- (BOOL) performFileOperation: (NSString*)operation source: (NSString *)source destination: (NSString*)destination files: (NSArray *)files tag: (int*)tag
+
+
+
+
+- (BOOL) selectFile: (NSString*)fullPath inFileViewerRootedAtPath: (NSString*)rootFullPath
+
+
+
+
+- (void) slideImage: (NSImage*)image from: (NSPoint)fromPoint to: (NSPoint)toPoint
+
+
+
+
+- (BOOL) unmountAndEjectDeviceAtPath: (NSString*)path
+
+
+
+
+- (BOOL) userDefaultsChanged
+
+
+
+
+
+