aboutsummaryrefslogtreecommitdiffstats
path: root/test/pugl_print_events.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-08 17:47:13 +0100
committerDavid Robillard <d@drobilla.net>2020-03-08 17:47:13 +0100
commit5f2e299a2f0d86e450340079930b98651103722f (patch)
treeac2b5aeb4d3ddd67b726f22c885224a825474b3e /test/pugl_print_events.c
parentf1f50a738e10873c483b7425ae7da963114b7719 (diff)
downloadpugl-5f2e299a2f0d86e450340079930b98651103722f.tar.gz
pugl-5f2e299a2f0d86e450340079930b98651103722f.tar.bz2
pugl-5f2e299a2f0d86e450340079930b98651103722f.zip
Move demo programs to examples directory
These are not really tests, but examples or demos, which has caused some confusion in the past. So, move them, and make room for actual tests.
Diffstat (limited to 'test/pugl_print_events.c')
-rw-r--r--test/pugl_print_events.c79
1 files changed, 0 insertions, 79 deletions
diff --git a/test/pugl_print_events.c b/test/pugl_print_events.c
deleted file mode 100644
index da486aa..0000000
--- a/test/pugl_print_events.c
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- Copyright 2012-2019 David Robillard <http://drobilla.net>
-
- Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted, provided that the above
- copyright notice and this permission notice appear in all copies.
-
- THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-*/
-
-/**
- @file pugl_print_events.c A simple Pugl test that prints events.
-*/
-
-#include "test_utils.h"
-
-#include "pugl/pugl.h"
-#include "pugl/pugl_stub.h"
-
-#include <stdbool.h>
-#include <stdio.h>
-
-typedef struct
-{
- PuglWorld* world;
- PuglView* view;
- int quit;
-} PuglPrintEventsApp;
-
-static PuglStatus
-onEvent(PuglView* view, const PuglEvent* event)
-{
- PuglPrintEventsApp* app = (PuglPrintEventsApp*)puglGetHandle(view);
-
- printEvent(event, "Event: ", true);
-
- switch (event->type) {
- case PUGL_CLOSE: app->quit = 1; break;
- default: break;
- }
-
- return PUGL_SUCCESS;
-}
-
-int
-main(void)
-{
- PuglPrintEventsApp app = {NULL, NULL, 0};
-
- app.world = puglNewWorld();
- app.view = puglNewView(app.world);
-
- puglSetClassName(app.world, "Pugl Print Events");
- puglSetBackend(app.view, puglStubBackend());
- puglSetHandle(app.view, &app);
- puglSetEventFunc(app.view, onEvent);
-
- if (puglCreateWindow(app.view, "Pugl Event Printer")) {
- return logError("Failed to create window\n");
- }
-
- puglShowWindow(app.view);
-
- while (!app.quit) {
- puglPollEvents(app.world, -1);
- puglDispatchEvents(app.world);
- }
-
- puglFreeView(app.view);
- puglFreeWorld(app.world);
-
- return 0;
-}