1. 22 Oct, 2020 1 commit
    • puelo's avatar
      Generate RawKeyEvents for iOS 13.4+ (#65193) · 24d39997
      puelo authored
      * Added RawKeyEvent support for iOS
      
      * Removed unused remnant
      
      * added some missing keys
      
      * Removed trailing whitespaces
      
      * commit for build
      
      * Added mapping names
      
      * Made iOS keycodes generatable and collectable
      
      * Fixed naming and formatting issues
      
      * fixed raw_keyboard_test
      24d39997
  2. 15 Sep, 2020 1 commit
    • Greg Spencer's avatar
      Fix the `character` field of the `RawKeyEvent` to hold correct data on... · 199a7c19
      Greg Spencer authored
      Fix the `character` field of the `RawKeyEvent` to hold correct data on non-Android platforms. (#65667)
      
      This fixes a problem where the character field of the RawKeyEvent was not being set at all for non-Android platforms.
      
      I also updated the key maps, and corrected a problem with the Windows key map where the backquote character wasn't correctly mapped.
      199a7c19
  3. 09 Jul, 2020 1 commit
  4. 23 Jun, 2020 1 commit
  5. 08 Apr, 2020 1 commit
  6. 13 Mar, 2020 1 commit
    • Greg Spencer's avatar
      Add C++ code generation for key maps. (#50998) · 289deef8
      Greg Spencer authored
      This adds generation of some C++ keycode maps for various platforms.
      
      This isn't meant for general use: it's so that the Flutter authors can keep the keycodes up to date with the Chromium and Android (and other) sources. It doesn't run continuously, it's only run occasionally (manually) to update the maps, because they don't change very often, and there is often manual work needed to make it function.
      
      In this PR, I added output of various .cc files that write into an engine repo situated next to the flutter repo on disk. This is a starting point for implementing platform-side handling of key events.
      289deef8
  7. 10 Mar, 2020 1 commit
  8. 09 Nov, 2019 1 commit
    • Greg Spencer's avatar
      Add macOS fn key support. (#44410) · c921c5ae
      Greg Spencer authored
      This adds support for the fn key on macOS. It adds it to the key mappings as a supplemental mapping that overwrites the one from the Chrome headers, since the chrome headers have a TODO, but no implementation of the key.
      
      Also, ignore the fn key entirely on macOS. This is because On macOS laptop keyboards, the fn key is used to generate home/end and f1-f12, but it ALSO generates a separate down/up event for the fn key itself. Other platforms hide the fn key, and just produce the key that it is combined with, so to keep it possible to write cross platform code that looks at which keys are pressed, the fn key is ignored.
      c921c5ae
  9. 17 Sep, 2019 1 commit
    • Greg Spencer's avatar
      Update keyboard maps (#40697) · 63e096b4
      Greg Spencer authored
      This updates the keyboard maps to use updated HID codes for game controller buttons (from Chrome), and to encode that GLFW "super" keys are what we call "meta" keys (i.e. Windows key or Command key).
      63e096b4
  10. 05 Jun, 2019 1 commit
    • Greg Spencer's avatar
      Game controller button support (#33868) · f0978c22
      Greg Spencer authored
      This adds support for game controller buttons. It adds some supplemental USB HID codes that aren't available from the Chromium source code, and maps those on Android to the game pad buttons that Android supports. Other platforms are not supported yet.
      f0978c22
  11. 31 May, 2019 1 commit
  12. 16 Apr, 2019 1 commit
  13. 28 Mar, 2019 1 commit
  14. 07 Feb, 2019 1 commit
    • Greg Spencer's avatar
      Add a keyboard key code generator. (#27620) · 2aad5931
      Greg Spencer authored
      This adds a keycode generator that incorporates input from the Chromium and Android source trees, as well as some local tables, to generate static constants for the LogicalKeyboardKey and PhysicalKeyboardKey classes, as well as mappings from each of the platforms we support so far (currently only Android and Fuchsia).
      
      This code generator parses the input files, generates an intermediate data structure (`key_data.json`) that is checked in, and then generates the Dart sources for these classes and some static maps that will also be checked in (but are not included in this PR).
      
      The idea is that these codes don't change often, and so we don't need to generate them on every build, but we would like to be able to update them easily in the future if new data becomes available. If the existing data disappears or becomes unusable, we can maintain the checked-in data structure by hand if necessary, and still be able to generate the code.
      
      This PR only contains the code generator, not the classes themselves. In another follow-on PR, I'll run the generator and check in the output of the generator.
      2aad5931