home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWTextFieldCell.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  715 b   |  39 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface WWTextFieldCell:TextFieldCell
  5. {
  6.   id    interp;
  7.   char  *controlString;
  8.   int   controlStringSize;
  9.   char  *sprintfControlString;
  10.  
  11.   char  *tclExpression;
  12.   int   tclExpressionSize;
  13.   char  *tclVar;
  14.   int   tclVarSize;
  15.   char  *tclCommand;
  16.   int   tclCommandSize;
  17.   BOOL  tclCommandDirty;
  18. }
  19.  
  20. - init;
  21. - awake;
  22. - write:(NXTypedStream *)stream;
  23. - read:(NXTypedStream *)stream; 
  24.  
  25. - evaluateSelf;
  26.  
  27. - setControlString:(const char *)str;
  28. - (const char *)controlString;
  29. - setTclExpression:(const char *)str;
  30. - (const char *)tclExpression;
  31. - setTclVar:(const char *)varName;
  32. - (const char *)tclVar;
  33. - setTclCommand:(const char *)str;
  34. - (const char *)tclCommand;
  35.  
  36. - updateInterp;
  37.  
  38. @end
  39.