1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/*
* Copyright (C) 2016 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.15
import QtQml 2.15
import AccountsService 0.1
import GlobalShortcut 1.0
import QMenuModel 1.0
import QtMir.Application 0.1
QtObject {
id: root
// to be set from outside
property var focusedSurface: null
property GlobalShortcut shortcutNext: GlobalShortcut {
shortcut: Qt.MetaModifier|Qt.Key_Space
onTriggered: root.nextKeymap()
active: root.keymapCount > 1
}
property GlobalShortcut shortcutPrevious: GlobalShortcut {
shortcut: Qt.MetaModifier|Qt.ShiftModifier|Qt.Key_Space
onTriggered: root.previousKeymap()
active: root.keymapCount > 1
}
readonly property var keymaps: AccountsService.keymaps
readonly property int keymapCount: keymaps.length
// default keymap, either the one remembered by the indicator, or the 1st one selected by user
property int currentKeymapIndex: actionGroup.currentAction.valid ? actionGroup.currentAction.state : 0
readonly property string currentKeymap: keymaps[currentKeymapIndex]
function nextKeymap() {
var nextIndex = 0;
if (currentKeymapIndex !== -1 && currentKeymapIndex < keymapCount - 1) {
nextIndex = currentKeymapIndex + 1;
}
currentKeymapIndex = nextIndex;
if (actionGroup.currentAction.valid) {
actionGroup.currentAction.updateState(currentKeymapIndex);
}
}
function previousKeymap() {
var prevIndex = keymapCount - 1;
if (currentKeymapIndex > 0) {
prevIndex = currentKeymapIndex - 1;
}
currentKeymapIndex = prevIndex;
if (actionGroup.currentAction.valid) {
actionGroup.currentAction.updateState(currentKeymapIndex);
}
}
property Binding surfaceKeymapBinding: Binding { // NB: needed mainly for xmir & libertine apps
target: root.focusedSurface
property: "keymap"
value: root.currentKeymap
restoreMode: Binding.RestoreBinding
}
property Binding lomiriKeymapBinding: Binding {
target: Mir
property: "currentKeymap"
value: root.currentKeymap
restoreMode: Binding.RestoreBinding
}
// indicator
property QDBusActionGroup actionGroup: QDBusActionGroup {
busType: DBus.SessionBus
busName: "org.ayatana.indicator.keyboard"
objectPath: "/org/ayatana/indicator/keyboard"
property variant currentAction: action("current") // the one that's checked by the indicator
property variant activeAction: action("active") // the one that we clicked
Component.onCompleted: actionGroup.start();
}
readonly property int activeActionState: actionGroup.activeAction.valid ? actionGroup.activeAction.state : -1
onActiveActionStateChanged: {
if (activeActionState != -1) {
currentKeymapIndex = activeActionState;
}
}
}
|