diff options
Diffstat (limited to 'Libraries/LibWeb/Page/Page.h')
-rw-r--r-- | Libraries/LibWeb/Page/Page.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibWeb/Page/Page.h b/Libraries/LibWeb/Page/Page.h index a0bf0b635f..7becdef055 100644 --- a/Libraries/LibWeb/Page/Page.h +++ b/Libraries/LibWeb/Page/Page.h @@ -29,6 +29,7 @@ #include <AK/Noncopyable.h> #include <AK/OwnPtr.h> #include <AK/RefPtr.h> +#include <Kernel/API/KeyCode.h> #include <LibGUI/Window.h> #include <LibGfx/Forward.h> #include <LibGfx/Palette.h> @@ -58,6 +59,8 @@ public: bool handle_mousedown(const Gfx::IntPoint&, unsigned button, unsigned modifiers); bool handle_mousemove(const Gfx::IntPoint&, unsigned buttons, unsigned modifiers); + bool handle_keydown(KeyCode, unsigned modifiers, u32 code_point); + Gfx::Palette palette() const; private: |