diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pugl_cairo_demo.c | 4 | ||||
-rw-r--r-- | examples/pugl_embed_demo.c | 8 | ||||
-rw-r--r-- | examples/pugl_window_demo.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/examples/pugl_cairo_demo.c b/examples/pugl_cairo_demo.c index a1423ae..6b43cb0 100644 --- a/examples/pugl_cairo_demo.c +++ b/examples/pugl_cairo_demo.c @@ -195,11 +195,11 @@ onEvent(PuglView* view, const PuglEvent* event) app->mouseDown = false; postButtonRedisplay(view); break; - case PUGL_ENTER_NOTIFY: + case PUGL_POINTER_IN: app->entered = true; puglPostRedisplay(view); break; - case PUGL_LEAVE_NOTIFY: + case PUGL_POINTER_OUT: app->entered = false; puglPostRedisplay(view); break; diff --git a/examples/pugl_embed_demo.c b/examples/pugl_embed_demo.c index a540b67..313a92c 100644 --- a/examples/pugl_embed_demo.c +++ b/examples/pugl_embed_demo.c @@ -193,7 +193,7 @@ onParentEvent(PuglView* view, const PuglEvent* event) case PUGL_KEY_PRESS: onKeyPress(view, &event->key, "Parent: "); break; - case PUGL_MOTION_NOTIFY: + case PUGL_MOTION: break; case PUGL_CLOSE: app->quit = 1; @@ -230,7 +230,7 @@ onEvent(PuglView* view, const PuglEvent* event) case PUGL_KEY_PRESS: onKeyPress(view, &event->key, "Child: "); break; - case PUGL_MOTION_NOTIFY: + case PUGL_MOTION: app->xAngle -= event->motion.x - app->lastMouseX; app->yAngle += event->motion.y - app->lastMouseY; app->lastMouseX = event->motion.x; @@ -246,10 +246,10 @@ onEvent(PuglView* view, const PuglEvent* event) puglPostRedisplay(view); } break; - case PUGL_ENTER_NOTIFY: + case PUGL_POINTER_IN: app->mouseEntered = true; break; - case PUGL_LEAVE_NOTIFY: + case PUGL_POINTER_OUT: app->mouseEntered = false; break; case PUGL_TIMER: diff --git a/examples/pugl_window_demo.c b/examples/pugl_window_demo.c index 175d782..7beb330 100644 --- a/examples/pugl_window_demo.c +++ b/examples/pugl_window_demo.c @@ -142,7 +142,7 @@ onEvent(PuglView* view, const PuglEvent* event) case PUGL_KEY_PRESS: onKeyPress(view, &event->key); break; - case PUGL_MOTION_NOTIFY: + case PUGL_MOTION: cube->xAngle -= event->motion.x - cube->lastMouseX; cube->yAngle += event->motion.y - cube->lastMouseY; cube->lastMouseX = event->motion.x; @@ -153,11 +153,11 @@ onEvent(PuglView* view, const PuglEvent* event) cube->dist = fmaxf(10.0f, cube->dist + (float)event->scroll.dy); redisplayView(app, view); break; - case PUGL_ENTER_NOTIFY: + case PUGL_POINTER_IN: cube->entered = true; redisplayView(app, view); break; - case PUGL_LEAVE_NOTIFY: + case PUGL_POINTER_OUT: cube->entered = false; redisplayView(app, view); break; |