This is MiscArrowButtonPalette.m in view mode; [Download] [Up]
// Copyright (C) 1995 Robert Todd Thomas
// Use is governed by the MiscKit license
#import "MiscArrowButtonPalette.h"
@implementation MiscArrowButtonPalette
@end
@implementation MiscArrowButtonCell (IBInspector)
// This is used in IB when inspecting a matrix full of ArrowButton
// cells. We just use the same inspector that ArrowButton uses.
- (const char *)getInspectorClassName
{
return "ABInspector";
}
// Here for when NeXT gets around to disclosing the rest of the API
// for IBEditors.
- (const char *)getEditorClassName
{
return "ArrowButtonEditor";
}
@end
@implementation MiscArrowButton (IB)
// Used to tell the IB which Inspector to use for this
// object. (Used only for palettes)
- (const char *)getInspectorClassName
{
return "ABInspector";
}
// Here for when NeXT gets around to letting us have editors of our
// own.
- (const char *)getEditorClassName
{
return "ArrowButtonEditor";
}
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.