aboutsummaryrefslogtreecommitdiffstats
path: root/examples/pugl_management_demo.c
AgeCommit message (Collapse)AuthorFilesLines
11 daysUse angle brackets for library includes and clean up include pathsDavid Robillard1-2/+2
11 daysMove test utilities to a separate subprojectDavid Robillard1-1/+1
Towards sorting out sloppy include directories, and avoiding upward-relative paths in includes. A subproject seems like overkill, but this is the only way I can think of that makes for a clean local dependency that doesn't rely on anything non-standard or trigger any linters.
12 daysFully parenthesize mathematical expressionsDavid Robillard1-6/+8
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-1/+1
For consistency with event types (since "obscure" is opposite "expose") and the upcoming puglObscureRegion().
2025-01-23Draw position, size, and scale in pugl_management_demoDavid Robillard1-3/+21
2023-05-03Fix implicit sign conversionsDavid Robillard1-1/+1
2023-01-14Windows: Add PUGL_DARK_FRAME hintDavid Robillard1-4/+7
This allows dark applications to visually integrate more nicely in Windows 10. A little thing, but it really goes a long way to make programs not look out of place and half-baked.
2023-01-14Add general string hint interfaceDavid Robillard1-3/+3
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-2/+2
This is the standard behaviour for applications.
2023-01-08Add support for raising windowsDavid Robillard1-2/+2
2023-01-07Add support for special view types and stylesDavid Robillard1-0/+262