~osomon/webbrowser-app/webProcessStatus

« back to all changes in this revision

Viewing changes to src/app/webbrowser/KeyboardShortcuts.qml

  • Committer: Olivier Tilloy
  • Date: 2015-07-03 15:20:17 UTC
  • mfrom: (1002.1.78 webbrowser-app)
  • Revision ID: olivier.tilloy@canonical.com-20150703152017-p0fpy6xvjgmcxyww
Merge the latest changes from trunk and resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2015 Canonical Ltd.
 
3
 *
 
4
 * This file is part of webbrowser-app.
 
5
 *
 
6
 * webbrowser-app is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * webbrowser-app is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.0
 
20
 
 
21
Item {
 
22
    function processKey(key, modifiers) {
 
23
        for (var i = 0; i < data.length; i++) {
 
24
            var shortcut = data[i];
 
25
 
 
26
            if (!shortcut.enabled) continue
 
27
            if (key !== shortcut.key) continue
 
28
 
 
29
            if (shortcut.modifiers === Qt.NoModifier) {
 
30
                if (modifiers === Qt.NoModifier) {
 
31
                    shortcut.trigger()
 
32
                    return true
 
33
                }
 
34
            } else if ((modifiers & shortcut.modifiers) === shortcut.modifiers) {
 
35
                shortcut.trigger()
 
36
                return true
 
37
            }
 
38
        }
 
39
        return false
 
40
    }
 
41
}