Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sergey-dryabzhinsky/qt-webkit-kiosk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.99.10
Choose a base ref
...
head repository: sergey-dryabzhinsky/qt-webkit-kiosk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 8 files changed
  • 3 contributors

Commits on Oct 5, 2020

  1. Make it ready for next dev version

    Sergey Dryabzhinsky committed Oct 5, 2020
    Copy the full SHA
    48d2080 View commit details
  2. Updated doc/README.* files

    Sergey Dryabzhinsky committed Oct 5, 2020
    Copy the full SHA
    00ec402 View commit details

Commits on Nov 9, 2021

  1. mainwindow.cpp: pass up and down keys to the view

    Pass the up and down arrows to the view so that javascript can see the
    event.
    HED-jzignego committed Nov 9, 2021
    Copy the full SHA
    6b6c16e View commit details

Commits on Nov 10, 2021

  1. Merge pull request #35 from therealjumbo/pass-arrows-to-page

    mainwindow.cpp: pass up and down keys to the view
    sergey-dryabzhinsky authored Nov 10, 2021
    Copy the full SHA
    1084f41 View commit details

Commits on Jan 20, 2022

  1. mainwindow.cpp: implement keyReleaseEvent

    Implement the keyReleaseEvent in the subclass in order to receive the
    keyReleaseEvents. Then in that function, pass the event to the view.
    Then the javascript engine can see the key releases happening.
    HED-jzignego committed Jan 20, 2022
    Copy the full SHA
    5c7500b View commit details

Commits on Jan 24, 2022

  1. mainwindow.cpp: only pass event to view if not in focus

    Since both MainWindow and the view have the StrongFocus policy, if the
    view has the focus then the view is already receiving the keyPressEvent
    and the keyReleaseEvent from the Qt Engine, in that case the MainWindow
    shouldn't send the keyPressEvent or the keyReleaseEvent to the view,
    since MainWindow does that, then the view gets a double report of that
    event. However if the view does not have focus, and if the MainWindow
    does, it should send the event to the view, including in the case where
    hotkeys are disabled in the MainWindow.
    
    In addition to that view == view->page()->view() so we don't need to set
    StrongFocus policy for both of those views since they are in fact the
    same.
    HED-jzignego committed Jan 24, 2022
    Copy the full SHA
    9295bc9 View commit details
  2. doc/README.md: add build instructions

    Also add two build artifacts to .gitignore
    HED-jzignego committed Jan 24, 2022
    Copy the full SHA
    0335ad1 View commit details

Commits on Feb 1, 2022

  1. Copy the full SHA
    aec2245 View commit details
Loading