diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:56:41 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:59:33 -0800 |
commit | d577d991b97ae2b5ee1af23641bcffc3f83af5b2 (patch) | |
tree | 590639d50205d1bcfaff2a7d2dc6ebf3f373c7ed /iup/test/timer.c |
Initial import. Contains the im, cd and iup librairies, and a "working" Makefile for them under linux.
Diffstat (limited to 'iup/test/timer.c')
-rwxr-xr-x | iup/test/timer.c | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/iup/test/timer.c b/iup/test/timer.c new file mode 100755 index 0000000..f570b63 --- /dev/null +++ b/iup/test/timer.c @@ -0,0 +1,70 @@ +#include <stdlib.h> +#include <stdio.h> +#include "iup.h" + +static Ihandle *timer1, *timer2, *timer3; + +static int timer_cb(Ihandle *ih) +{ + if (ih == timer1) + printf("timer 1 called\n"); + + if (ih == timer2) + { + printf("timer 2 called and stopped\n"); + IupSetAttribute(ih, "RUN", "NO"); + } + + if (ih == timer3) + { + printf("timer 3 called and CLOSE returned.\n"); + IupDestroy(timer1); + IupDestroy(timer2); + IupDestroy(timer3); + return IUP_CLOSE; + } + + return IUP_DEFAULT; +} + +void TimerTest(void) +{ + Ihandle *dlg; + + dlg = IupDialog(NULL); + IupSetAttribute(dlg, "TITLE", "IupTimer Test"); + IupSetAttribute(dlg, "SIZE", "200x100"); + + IupShow(dlg); + + timer1 = IupTimer(); + timer2 = IupTimer(); + timer3 = IupTimer(); + + IupSetAttribute(timer1, "TIME", "100"); + IupSetAttribute(timer1, "RUN", "YES"); + IupSetCallback(timer1, "ACTION_CB", (Icallback)timer_cb); + + IupSetAttribute(timer2, "TIME", "400"); + IupSetAttribute(timer2, "RUN", "YES"); + IupSetCallback(timer2, "ACTION_CB", (Icallback)timer_cb); + + IupSetAttribute(timer3, "TIME", "5000"); + IupSetAttribute(timer3, "RUN", "YES"); + IupSetCallback(timer3, "ACTION_CB", (Icallback)timer_cb); +} + +#ifndef BIG_TEST +int main(int argc, char* argv[]) +{ + IupOpen(&argc, &argv); + + TimerTest(); + + IupMainLoop(); + + IupClose(); + + return EXIT_SUCCESS; +} +#endif |