ref: b9f2b8c6a28c2d4744119c7254767a0f1b51ed2e
dir: /libwidget/textbox.h/
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);