aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gwin/checkbox/main.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-07-16 18:57:12 +0200
committerJoel Bodenmann <joel@unormal.org>2013-07-16 18:57:12 +0200
commit30feefb728a7875259829c014e73699ef6b3168f (patch)
tree99f129eecc4a0b3dd375e0ed720e9530a7292485 /demos/modules/gwin/checkbox/main.c
parent7944147301fcebde1cb747f28fbbe58a0d62f29c (diff)
downloaduGFX-30feefb728a7875259829c014e73699ef6b3168f.tar.gz
uGFX-30feefb728a7875259829c014e73699ef6b3168f.tar.bz2
uGFX-30feefb728a7875259829c014e73699ef6b3168f.zip
added checkbox demo
Diffstat (limited to 'demos/modules/gwin/checkbox/main.c')
-rw-r--r--demos/modules/gwin/checkbox/main.c65
1 files changed, 65 insertions, 0 deletions
diff --git a/demos/modules/gwin/checkbox/main.c b/demos/modules/gwin/checkbox/main.c
new file mode 100644
index 00000000..fbef7187
--- /dev/null
+++ b/demos/modules/gwin/checkbox/main.c
@@ -0,0 +1,65 @@
+#include "gfx.h"
+
+static GListener gl;
+static GHandle ghCheckbox1;
+
+static void createWidgets(void) {
+ GWidgetInit wi;
+
+ // Apply some default values for GWIN
+ wi.customDraw = 0;
+ wi.customParam = 0;
+ wi.customStyle = 0;
+ wi.g.show = TRUE;
+
+ // Apply the checkbox parameters
+ wi.g.width = 100; // includes text
+ wi.g.height = 20;
+ wi.g.y = 10;
+ wi.g.x = 10;
+ wi.text = "Checkbox";
+
+ // Create the actual checkbox
+ ghCheckbox1 = gwinCheckboxCreate(NULL, &wi);
+}
+
+int main(void) {
+ GEvent* pe;
+
+ // Initialize the display
+ gfxInit();
+
+ // Set the widget defaults
+ gwinSetDefaultFont(gdispOpenFont("UI2"));
+ gwinSetDefaultStyle(&WhiteWidgetStyle, FALSE);
+ gdispClear(White);
+
+ // Attach the mouse input
+ gwinAttachMouse(0);
+
+ createWidgets();
+
+ // We want to listen for widget events
+ geventListenerInit(&gl);
+ gwinAttachListener(&gl);
+
+ while(1) {
+ // Get an Event
+ pe = geventEventWait(&gl, TIME_INFINITE);
+
+ switch(pe->type) {
+ case GEVENT_GWIN_CHECKBOX:
+ if (((GEventGWinCheckbox*)pe)->checkbox == ghCheckbox1) {
+ // The state of our checkbox has changed
+ printf("Checkbox state: %d\r\n", ((GEventGWinCheckbox*)pe)->isChecked);
+ }
+ break;
+
+ default:
+ break;
+ }
+ }
+
+ return 0;
+}
+