Up
Authors
- Fred Kiefer (
FredKiefer@gmx.de
)
-
- Nicola Pero (
n.pero@mi.flashnet.it
)
-
System generic panel for selecting and previewing fonts
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSFontPanel.h
- Conforms to:
- NSCoding
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
+ (
NSFontPanel*)
sharedFontPanel;
Availability: OpenStep
Creates (if needed) and returns the shared NSFontPanel.
+ (BOOL)
sharedFontPanelExists;
Availability: OpenStep
Description forthcoming.
- (
NSView*)
accessoryView;
Availability: OpenStep
- (BOOL)
isEnabled;
Availability: OpenStep
Returns whether the "set" button is enabled.
See Also: -setEnabled:
- (
NSFont*)
panelConvertFont: (
NSFont*)fontObject;
Availability: OpenStep
Converts the NSFont fontObject
- (void)
reloadDefaultFontFamilies;
Availability: OpenStep
Description forthcoming.
- (void)
setAccessoryView: (
NSView*)aView;
Availability: OpenStep
Sets the NSFontPanel's accessory view to aView
See Also: -accessoryView
- (void)
setEnabled: (BOOL)flag;
Availability: OpenStep
Sets whether the "set" button is enabled.
See Also: -isEnabled
- (void)
setPanelFont: (
NSFont*)fontObject
isMultiple: (BOOL)flag;
Availability: OpenStep
Description forthcoming.
- (BOOL)
worksWhenModal;
Availability: OpenStep
Overides the NSPanel/NSWindow method to always returns YES
Instance Variables for NSFontPanel Class
@protected NSView* _accessoryView;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSView* _bottomView;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected int _face;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSMutableArray* _faceList;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected int _family;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSMutableArray* _familyList;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected BOOL _multiple;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSSize _originalMinSize;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSSize _originalSize;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSFont* _panelFont;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected BOOL _preview;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSString* _previewString;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSView* _topView;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected NSFontTraitMask _traits;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected int _weight;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
Up