aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/cpp
AgeCommit message (Collapse)AuthorFilesLines
2022-05-28Fix View::acceptOffer parameter typeDavid Robillard1-1/+1
2022-05-23Add rich clipboard supportDavid Robillard1-1/+43
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-21Add a uniform API for setting size hintsDavid Robillard1-21/+12
This collapses many functions into one, which makes the API more easily extensible and reduces code size.
2022-05-21Rename PUGL_UNSUPPORTED_TYPE to be more genericDavid Robillard1-2/+2
2022-05-20MacOS: Build examples as application bundlesDavid Robillard1-0/+5
This is required on MacOS to make the examples usable. When run as bare programs, they don't show up as normal windows or receive keyboard input.
2022-04-23Fix IWYU warningsDavid Robillard1-3/+3
I suspect that using the same configuration across both C and C++ is starting to wear a bit thin, but this will do for now.
2021-12-17Pass const references where appropriateDavid Robillard1-3/+3
2021-12-17Remove redundant virtual qualifierDavid Robillard1-1/+1
2021-12-17Adopt REUSE machine-readable licensing standardDavid Robillard7-75/+16
See https://reuse.software/ for details.
2021-12-17Suppress new warnings in clang-tidy 13David Robillard1-1/+1
2021-12-16Rename puglSetTransientFor to puglSetTransientParentDavid Robillard1-3/+3
2021-08-28Suppress new clang-tidy warningsDavid Robillard1-0/+1
2021-05-28Remove static downcasts in C++ bindingsDavid Robillard2-31/+28
2021-05-28Split up meson build definitions moreDavid Robillard2-0/+19
2021-05-25Rename event structs in a more readable styleDavid Robillard1-46/+46
Aside from reading more naturally, this avoids clashes with types that are not events, like PuglEventFlags. This is also more consistent with the C++ bindings, where "EventExpose" would be quite strange, for example. Apologies for the noise. Aliases to the old names will be preserved in the deprecated API like other things for a short while.
2021-05-24Add fancy constructor for C++ events and wrap puglSendEvent()David Robillard2-0/+16
2021-05-24Consistently refer to C++ as "cpp" and fix installationDavid Robillard6-0/+1063