|
Revision 3418, 474 bytes
(checked in by timothy, 2 years ago)
|
Turing on more warnings and fixing more of them.
|
| Line | |
|---|
| 1 |
@interface JVFontPreviewField : NSTextField { |
|---|
| 2 |
NSFont *_actualFont; |
|---|
| 3 |
BOOL _showPointSize; |
|---|
| 4 |
BOOL _showFontFace; |
|---|
| 5 |
} |
|---|
| 6 |
- (void) selectFont:(id) sender; |
|---|
| 7 |
- (IBAction) chooseFontWithFontPanel:(id) sender; |
|---|
| 8 |
- (void) setShowPointSize:(BOOL) show; |
|---|
| 9 |
@end |
|---|
| 10 |
|
|---|
| 11 |
@interface NSObject (JVFontPreviewFieldDelegate) |
|---|
| 12 |
- (BOOL) fontPreviewField:(JVFontPreviewField *) field shouldChangeToFont:(NSFont *) font; |
|---|
| 13 |
- (void) fontPreviewField:(JVFontPreviewField *) field didChangeToFont:(NSFont *) font; |
|---|
| 14 |
@end |
|---|