EventModifier.h 432 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/UIEvents/UIEvent.h>
  8. namespace Web::UIEvents {
  9. // https://w3c.github.io/uievents/#event-modifier-initializers
  10. struct EventModifierInit : public UIEventInit {
  11. bool ctrl_key { false };
  12. bool shift_key { false };
  13. bool alt_key { false };
  14. bool meta_key { false };
  15. };
  16. }