aboutsummaryrefslogtreecommitdiffstats
path: root/widget.h
blob: a0149e0c3f93ebae72668dc8df9f3e4a816a58d3 (plain) (blame)
1
2
3
4
5
6
7
8
/* Field is a floating point number input field. */
typedef struct {
	char buf[64];
	double value;
} Field;

void init_field(Field *f);
int field(mu_Context *ctx, Field *f);