aboutsummaryrefslogtreecommitdiff
path: root/test/test_utils.h
AgeCommit message (Collapse)Author
2020-04-04Fix mismatched printf parameter warningDavid Robillard
Compilers are allowed to choose signed or unsigned for enums, and apparently gcc and c++ make different choices.
2020-03-31Add format attribute to logError()David Robillard
2020-03-31Fix mismatched printf parameter typesDavid Robillard
2020-03-17Use clearer names for pointer eventsDavid Robillard
These old "notify" names are a smell from X11 which is a bit strange and inconsistent here, since nearly everything is a "notification" of sorts. I think the new names here are much more clear since they are consistent with the keyboard focus events.
2020-03-16Add timer eventsDavid Robillard
2020-03-15Unify event loop functions as puglUpdate()David Robillard
The previous separation between polling and dispatching was a lie, especially on MacOS where it is impossible to only poll for events without dispatching anything. Providing such an API is misleading, and problematic in various other ways. So, merge them into a single puglUpdate() function which can do the right thing on all platforms. This also adds the behaviour of actually processing all events in the given time interval, which is almost always what clients actually want to do when using a positive timeout (naively doing this before caused terrible input lag).
2020-03-09Add PuglEventClient and puglSendEvent()David Robillard
This event makes it possible to send an arbitrary event to a view, which is useful for many things. In particular, this method of communication with views will wake up the event loop, unlike hacks in applications that share data in some other way.
2020-03-09Add create, destroy, map, and unmap eventsDavid Robillard
These can be used to do things when a view is created or destroyed, in particular set up the GL context in a more controlled way. Map and unmap events are also added for when views are shown and hidden so application can react to this as well. Towards the deprecation of puglEnterContext() and puglLeaveContext(), which are prone to abuse. squash! Remove client event stuff
2020-03-08Enable double buffering by defaultDavid Robillard
2020-03-08Add vsync command line options to demosDavid Robillard
2020-03-08Split graphical utilities out from test_utils.hDavid Robillard
2020-03-08Print when unknown events are received in testsDavid Robillard
2020-03-01Cleanup: Adjust some code to be more clang-format friendlyDavid Robillard
2020-03-01Cleanup: Shorten event printing codeDavid Robillard
2019-12-09Fix use of incorrect union elementDavid Robillard
2019-11-18Add test utility function for logging errorsDavid Robillard
2019-11-18Add error checking option to test programsDavid Robillard
2019-11-03Add verbose option to test programs to print all eventsDavid Robillard
2019-09-07Add OpenGL 3 test programDavid Robillard
2019-09-03Factor out parsing test optionsDavid Robillard
2019-09-03Make pugl_test use a nested view and test focus and movementDavid Robillard
2019-09-03Move puglGetTime() to PuglWorldDavid Robillard
2019-08-02Test: Factor out FPS printerDavid Robillard
2019-07-24Unify key and character fields and separate text eventsDavid Robillard
Only one field is necessary to store any kind of key, including special keys, since PuglKey occupies a reserved Unicode region. This is generally much simpler to deal with since there is only one value to dispatch on. Text events are separated from key events (like Windows but unlike MacOS or X11) because it is not possible to derive text events from key press events when they occur on Windows. Since merging the two has been the source of some confusion, this approach has some advantages anyway, even though it introduces the need to handle another event type. In the process, text input has been almost completely rewritten. I have tested this with a compose key on X11 and dead keys on Windows and MacOS and everything seems to work correctly, though there may (as always) still be issues with more exotic input methods.
2019-07-24Rename PuglEventKey::utf8 to "string" with char typeDavid Robillard
This matches Gtk and is generally less annoying to work with.
2019-07-23Test: Move some generic code to a separate headerDavid Robillard