From 32733abab8546b708cab59a4df09f92eb3214f73 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 22 May 2022 20:24:05 -0400 Subject: Add region parameter to puglAcceptOffer() --- bindings/cpp/include/pugl/pugl.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'bindings/cpp/include/pugl') diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp index e374efc..b7f9fcf 100644 --- a/bindings/cpp/include/pugl/pugl.hpp +++ b/bindings/cpp/include/pugl/pugl.hpp @@ -660,10 +660,16 @@ public: @param typeIndex The index of the type that the view will accept. This is the `typeIndex` argument to the call of puglGetClipboardType() that returned the accepted type. + + @param region The region of the view that will accept the data. This may + be used by the system to avoid sending redundant events. */ - Status acceptOffer(const DataOfferEvent& offer, const uint32_t typeIndex) + Status acceptOffer(const DataOfferEvent& offer, + const uint32_t typeIndex, + const Rect& region) { - return static_cast(puglAcceptOffer(cobj(), &offer, typeIndex)); + return static_cast( + puglAcceptOffer(cobj(), &offer, typeIndex, region)); } /// @copydoc puglSetViewStyle -- cgit v1.2.1