ref: b57b54c2d8223debedae9844098b89c6b5475637
dir: /libwidget/textbox.h/
/*** Textbox ***/ typedef struct Textbox Textbox; struct Textbox { Widget; Font *font; String *content; Point lastpt; int selectable; int editable; }; int istextbox(Widget*); Textbox* newtextbox(int selectable, int editable, Font*, char *content);