libui/test.c

194 lines
4.4 KiB
C
Raw Normal View History

// 6 april 2015
#include "ui.h"
#include <stdio.h>
#include <string.h>
int onClosing(uiWindow *w, void *data)
{
printf("in closing!\n");
uiQuit();
return 1;
}
uiControl *e;
static void getWindowText(uiControl *b, void *data)
{
char *text;
text = uiWindowTitle((uiWindow *) data);
uiEntrySetText(e, text);
uiFreeText(text);
}
static void setWindowText(uiControl *b, void *data)
{
char *text;
text = uiEntryText(e);
uiWindowSetTitle((uiWindow *) data, text);
uiFreeText(text);
}
static void getButtonText(uiControl *b, void *data)
{
char *text;
text = uiButtonText((uiControl *) data);
uiEntrySetText(e, text);
uiFreeText(text);
}
static void setButtonText(uiControl *b, void *data)
{
char *text;
text = uiEntryText(e);
uiButtonSetText((uiControl *) data, text);
uiFreeText(text);
}
static void getCheckboxText(uiControl *b, void *data)
{
char *text;
text = uiCheckboxText((uiControl *) data);
uiEntrySetText(e, text);
uiFreeText(text);
}
static void setCheckboxText(uiControl *b, void *data)
{
char *text;
text = uiEntryText(e);
uiCheckboxSetText((uiControl *) data, text);
uiFreeText(text);
}
2015-04-09 12:42:42 -05:00
uiWindow *w;
2015-04-09 14:59:40 -05:00
#define nStacks 5
uiControl *stacks[nStacks];
2015-04-09 11:26:59 -05:00
uiControl *spaced;
2015-04-09 12:42:42 -05:00
static void setSpaced(int spaced)
2015-04-09 11:26:59 -05:00
{
2015-04-09 14:59:40 -05:00
int i;
2015-04-09 12:42:42 -05:00
uiWindowSetMargined(w, spaced);
2015-04-09 14:59:40 -05:00
for (i = 0; i < nStacks; i++)
uiStackSetPadded(stacks[i], spaced);
2015-04-09 12:42:42 -05:00
}
static void toggleSpaced(uiControl *c, void *data)
{
int s = uiCheckboxChecked(spaced);
printf("toggled %d\n", s);
setSpaced(s);
}
// these will also be used to test if setting checks will trigger events
static void forceSpacedOn(uiControl *c, void *data)
{
uiCheckboxSetChecked(spaced, 1);
}
static void forceSpacedOff(uiControl *c, void *data)
{
uiCheckboxSetChecked(spaced, 0);
2015-04-09 11:26:59 -05:00
}
2015-04-09 19:04:18 -05:00
static void showSpaced(uiControl *c, void *data)
{
char msg[] = { 'm', ' ', '0', ' ', 'p', ' ', '0', '\0' };
if (uiWindowMargined(w))
msg[2] = '1';
2015-04-09 19:04:18 -05:00
if (uiStackPadded(stacks[0]))
msg[6] = '1';
uiEntrySetText(e, msg);
}
int main(int argc, char *argv[])
{
uiInitOptions o;
int i;
const char *err;
uiControl *getButton, *setButton;
memset(&o, 0, sizeof (uiInitOptions));
for (i = 1; i < argc; i++)
if (strcmp(argv[i], "leaks") == 0)
o.debugLogAllocations = 1;
else {
fprintf(stderr, "%s: unrecognized option %s\n", argv[0], argv[i]);
return 1;
}
err = uiInit(&o);
if (err != NULL) {
fprintf(stderr, "error initializing ui: %s\n", err);
uiFreeInitError(err);
return 1;
}
w = uiNewWindow("Hello", 320, 240);
uiWindowOnClosing(w, onClosing, NULL);
stacks[0] = uiNewVerticalStack();
uiWindowSetChild(w, stacks[0]);
2015-04-08 22:28:47 -05:00
e = uiNewEntry();
uiStackAdd(stacks[0], e, 0);
stacks[1] = uiNewHorizontalStack();
getButton = uiNewButton("Get Window Text");
uiButtonOnClicked(getButton, getWindowText, w);
setButton = uiNewButton("Set Window Text");
uiButtonOnClicked(setButton, setWindowText, w);
uiStackAdd(stacks[1], getButton, 1);
uiStackAdd(stacks[1], setButton, 1);
uiStackAdd(stacks[0], stacks[1], 0);
stacks[2] = uiNewHorizontalStack();
2015-04-08 22:28:47 -05:00
getButton = uiNewButton("Get Button Text");
uiButtonOnClicked(getButton, getButtonText, getButton);
2015-04-08 22:28:47 -05:00
setButton = uiNewButton("Set Button Text");
uiButtonOnClicked(setButton, setButtonText, getButton);
uiStackAdd(stacks[2], getButton, 1);
uiStackAdd(stacks[2], setButton, 1);
uiStackAdd(stacks[0], stacks[2], 0);
2015-04-09 11:26:59 -05:00
// this will also be used to make sure tab stops work properly when inserted out of creation order, especially on Windows
spaced = uiNewCheckbox("Spaced");
2015-04-09 12:42:42 -05:00
uiCheckboxOnToggled(spaced, toggleSpaced, NULL);
stacks[3] = uiNewHorizontalStack();
getButton = uiNewButton("Get Checkbox Text");
uiButtonOnClicked(getButton, getCheckboxText, spaced);
setButton = uiNewButton("Set Checkbox Text");
uiButtonOnClicked(setButton, setCheckboxText, spaced);
uiStackAdd(stacks[3], getButton, 1);
uiStackAdd(stacks[3], setButton, 1);
uiStackAdd(stacks[0], stacks[3], 0);
stacks[4] = uiNewHorizontalStack();
uiStackAdd(stacks[4], spaced, 1);
getButton = uiNewButton("On");
uiButtonOnClicked(getButton, forceSpacedOn, NULL);
setButton = uiNewButton("Off");
uiButtonOnClicked(setButton, forceSpacedOff, NULL);
uiStackAdd(stacks[4], getButton, 0);
uiStackAdd(stacks[4], setButton, 0);
2015-04-09 19:04:18 -05:00
setButton = uiNewButton("Show");
uiButtonOnClicked(setButton, showSpaced, NULL);
uiStackAdd(stacks[4], setButton, 0);
uiStackAdd(stacks[0], stacks[4], 0);
uiWindowShow(w);
uiMain();
2015-04-06 19:01:14 -05:00
printf("after uiMain()\n");
return 0;
}