2016-04-29 13:05:03 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2016 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.0
|
2018-10-28 17:10:43 +00:00
|
|
|
import QtQuick.Controls 2.3
|
2016-04-29 13:05:03 +00:00
|
|
|
import QtQuick.VirtualKeyboard 2.1
|
2018-12-10 15:41:56 +00:00
|
|
|
import org.kde.kirigami 2.5 as Kirigami
|
2016-04-29 13:05:03 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: window
|
2018-10-28 17:10:43 +00:00
|
|
|
property real adjustment: 0
|
|
|
|
property real adjustmentFactor: 0.0
|
2016-04-29 13:05:03 +00:00
|
|
|
InputPanel {
|
|
|
|
id: inputPanel
|
|
|
|
objectName: "inputPanel"
|
2018-10-28 17:10:43 +00:00
|
|
|
width: parent.width - parent.width * parent.adjustmentFactor
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2016-04-29 13:05:03 +00:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
}
|
2018-12-10 15:41:56 +00:00
|
|
|
//NOTE: ToolButton for some reasons breaks the virtual keyboard loading on Plasma Mobile
|
|
|
|
Button {
|
2018-10-28 17:10:43 +00:00
|
|
|
id: resizeButton
|
2018-12-10 15:41:56 +00:00
|
|
|
visible: !Kirigami.Settings.isMobile //don't show on handheld devices
|
2018-10-28 17:10:43 +00:00
|
|
|
flat: true
|
|
|
|
display: AbstractButton.IconOnly
|
|
|
|
icon.name: "transform-scale"
|
|
|
|
icon.color: "white"
|
|
|
|
down: mouseArea.pressed
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
right: inputPanel.right
|
|
|
|
top: inputPanel.top
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: mouseArea
|
|
|
|
property real startPoint: 0
|
|
|
|
anchors.fill: parent
|
|
|
|
onPressed: {
|
|
|
|
startPoint = mouse.x;
|
|
|
|
}
|
|
|
|
onPositionChanged: {
|
|
|
|
window.adjustment -= (mouse.x - startPoint);
|
|
|
|
window.adjustmentFactor = Math.min(Math.max(window.adjustment / window.width, 0.0), 0.66);
|
|
|
|
startPoint = mouse.x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|