aboutsummaryrefslogtreecommitdiffstats
path: root/examples/pugl_clipboard_demo.c
AgeCommit message (Collapse)AuthorFilesLines
2025-02-06Fully parenthesize mathematical expressionsDavid Robillard1-2/+2
Well, on X11 where I'm running clang-tidy anyway, there may be some stragglers in the other platform implementations. Appeases the readability-math-missing-parentheses check added in clang-tidy 19.
2025-01-23Rename puglPostRedisplay() to puglObscureView()David Robillard1-2/+2
For consistency with event types (since "obscure" is opposite "expose") and the upcoming puglObscureRegion().
2023-01-14Add general string hint interfaceDavid Robillard1-2/+2
This replaces the window title and class name APIs with a more general one that can be easily extended to other things, like icon names, more detailed application hints, and so on.
2023-01-11Raise the initial display of example windowsDavid Robillard1-1/+1
This is the standard behaviour for applications.
2023-01-08Prepare OpenGL context flags for OpenGL ES supportDavid Robillard1-1/+1
2023-01-08Add support for raising windowsDavid Robillard1-1/+1
2022-05-23Add rich clipboard supportDavid Robillard1-4/+46
This implements a more powerful protocol for working with clipboards, which supports datatype negotiation, and fixes various issues by mapping more directly to how things work on X11.
2022-05-22Factor out pugl_clipboard_demo example programDavid Robillard1-0/+210
This is a simpler example than pugl_embed_demo that demonstrates clipboard functionality without the complexity of embedded views.