libui/redo/test/page4.c

32 lines
627 B
C

// 19 may 2015
#include "test.h"
static uiSpinbox *spinbox;
static uiProgressBar *pbar;
#define CHANGED(what) \
static void on ## what ## Changed(ui ## what *this, void *data) \
{ \
uintmax_t value; \
printf("on %s changed\n", #what); \
value = ui ## what ## Value(this); \
uiProgressBarSetValue(pbar, value); \
}
CHANGED(Spinbox)
uiBox *makePage4(void)
{
uiBox *page4;
page4 = newVerticalBox();
spinbox = uiNewSpinbox();
uiSpinboxOnChanged(spinbox, onSpinboxChanged, NULL);
uiBoxAppend(page4, uiControl(spinbox), 0);
pbar = uiNewProgressBar();
uiBoxAppend(page4, uiControl(pbar), 0);
return page4;
}