149 m_window->handleEvents([
this,&handlers...](
auto&& event) {
150 using EventType = decltype(event);
154 static_assert(!std::disjunction_v<std::is_invocable_r<bool, Ts, EventType, bool>...>,
"Handler for handleWindowEvents can't have both an extra bool argument and a bool return type");
160 auto callIfMatchesAndReturnsBool = [&event](auto&& handler)
163 using FuncType = decltype(handler);
164 if constexpr (std::is_invocable_v<FuncType, EventType>)
166 if constexpr (std::is_same_v<std::invoke_result_t<FuncType, EventType>, bool>)
167 return std::invoke(std::forward<FuncType>(handler), std::forward<EventType>(event));
170 static_assert(std::is_same_v<std::invoke_result_t<FuncType, EventType>, void>,
"Handler for handleWindowEvents must have either 'void' or 'bool' return type");
177 const bool passEventToGui = (callIfMatchesAndReturnsBool(std::forward<Ts>(handlers)) && ...);
180 bool eventHandledByGui =
false;
182 eventHandledByGui =
handleEvent(std::forward<EventType>(event));
186 auto callIfMatchesAndReturnsVoid = [&event](
auto&& handler,
auto&&... extraArgs)
188 using FuncType =
decltype(handler);
189 if constexpr (std::is_invocable_v<FuncType, EventType,
decltype(extraArgs)...>)
191 if constexpr (std::is_same_v<std::invoke_result_t<FuncType, EventType,
decltype(extraArgs)...>,
void>)
192 std::invoke(std::forward<FuncType>(handler), std::forward<EventType>(event), std::forward<
decltype(extraArgs)>(extraArgs)...);
195 (callIfMatchesAndReturnsVoid(std::forward<Ts>(handlers)), ...);
196 (callIfMatchesAndReturnsVoid(std::forward<Ts>(handlers), eventHandledByGui), ...);