2 * Copyright (C) 2015 Canonical Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18import Utils 0.1 // For EdgeBarrierSettings
26 // Value range is [0.0, 1.0]
27 readonly property real progress: Math.min(Math.max(0.0, _accumulatedPush / EdgeBarrierSettings.pushThreshold), 1.0)
29 // Emitted when progress reaches 1.0
30 // Should trigger the action associated with this edge
33 onPressed: mouse.accepted = false;
35 function push(amount) {
36 if (!root._containsMouse) {
37 console.warn("pushing right edge without mouse actually being at right edge!")
41 if (_accumulatedPush === EdgeBarrierSettings.pushThreshold) {
46 if (_accumulatedPush + amount > EdgeBarrierSettings.pushThreshold) {
47 _accumulatedPush = EdgeBarrierSettings.pushThreshold;
49 _accumulatedPush += amount;
52 if (_accumulatedPush === EdgeBarrierSettings.pushThreshold) {
64 // to be overwritten by tests
65 property bool _containsMouse: root.containsMouse
66 on_ContainsMouseChanged: {
67 if (!_containsMouse) {
73 property real _accumulatedPush: 0