mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:47:45 +00:00
LibCore: Add a way to install an event filter on a Core::Object
The event filter is consulted by Object::dispatch_event() and may decide that the event should not be delivered to the target object.
This commit is contained in:
parent
c91bb72964
commit
54c7110d9d
2 changed files with 13 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -227,6 +227,9 @@ void Object::dispatch_event(Core::Event& e, Object* stay_within)
|
|||
VERIFY(!stay_within || stay_within == this || stay_within->is_ancestor_of(*this));
|
||||
auto* target = this;
|
||||
do {
|
||||
// If there's an event filter on this target, ask if it wants to swallow this event.
|
||||
if (target->m_event_filter && !target->m_event_filter(e))
|
||||
return;
|
||||
target->event(e);
|
||||
target = target->parent();
|
||||
if (target == stay_within) {
|
||||
|
@ -262,4 +265,9 @@ void Object::register_property(const String& name, Function<JsonValue()> getter,
|
|||
m_properties.set(name, make<Property>(name, move(getter), move(setter)));
|
||||
}
|
||||
|
||||
void Object::set_event_filter(Function<bool(Core::Event&)> filter)
|
||||
{
|
||||
m_event_filter = move(filter);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue