home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
-
- @interface WWTextFieldCell:TextFieldCell
- {
- id interp;
- char *controlString;
- int controlStringSize;
- char *sprintfControlString;
-
- char *tclExpression;
- int tclExpressionSize;
- char *tclVar;
- int tclVarSize;
- char *tclCommand;
- int tclCommandSize;
- BOOL tclCommandDirty;
- }
-
- - init;
- - awake;
- - write:(NXTypedStream *)stream;
- - read:(NXTypedStream *)stream;
-
- - evaluateSelf;
-
- - setControlString:(const char *)str;
- - (const char *)controlString;
- - setTclExpression:(const char *)str;
- - (const char *)tclExpression;
- - setTclVar:(const char *)varName;
- - (const char *)tclVar;
- - setTclCommand:(const char *)str;
- - (const char *)tclCommand;
-
- - updateInterp;
-
- @end
-