home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSTextField.h < prev    next >
Text File  |  1994-09-29  |  2KB  |  68 lines

  1. /*
  2.     TextField.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSControl.h"
  8.  
  9. @interface NSTextField : NSControl
  10. {
  11.     id                  nextText;
  12.     id                  previousText;
  13.     id                  textDelegate;
  14.     SEL                 errorAction;
  15.     unsigned int        _reservedTFint1;
  16. }
  17.  
  18. + setCellClass:factoryId;
  19.  
  20. - initFrame:(NSRect)frameRect;
  21.  
  22. - setFrameSize:(NSSize)_newSize;
  23. - setBackgroundColor:(NSColor *)color;
  24. - (NSColor *)backgroundColor;
  25. - setBackgroundTransparent:(BOOL)flag;
  26. - (BOOL)isBackgroundTransparent;
  27. - setTextColor:(NSColor *)color;
  28. - (NSColor *)textColor;
  29. - drawCellInside:aCell;
  30. - setEnabled:(BOOL)flag;
  31. - (BOOL)isBordered;
  32. - setBordered:(BOOL)flag;
  33. - (BOOL)isBezeled;
  34. - setBezeled:(BOOL)flag;
  35. - (BOOL)isEditable;
  36. - setEditable:(BOOL)flag;
  37. - (BOOL)isSelectable;
  38. - setSelectable:(BOOL)flag;
  39. - setPreviousText:anObject;
  40. - previousText;
  41. - setNextText:anObject;
  42. - nextText;
  43. - mouseDown:(NSEvent *)theEvent;
  44. - (SEL)errorAction;
  45. - setErrorAction:(SEL)aSelector;
  46. - selectText:sender;
  47. - textDelegate;
  48. - setTextDelegate:anObject;
  49. - (BOOL)textShouldEndEditing:textObject;
  50. - textDidEnd:textObject endChar:(unsigned short)whyEnd;
  51. - (BOOL)textShouldBeginEditing:textObject;
  52. - textDidChange:textObject;
  53. - textDidGetKeys:textObject isEmpty:(BOOL)flag;
  54. - (BOOL)acceptsFirstResponder;
  55.  
  56. @end
  57.  
  58. #ifdef KANJI
  59. @interface NSTextField(InputManager)
  60. - setIMEnabled:(BOOL)flag;
  61. - (BOOL)isIMEnabled;
  62. @end
  63.  
  64. @interface NSTextField(IMSupportDelegate)
  65. - (BOOL)textUsesIM:sender;
  66. @end
  67. #endif
  68.