monero-gui/MiddlePanel.qml

278 lines
11 KiB
QML
Raw Normal View History

2018-01-07 06:20:45 +01:00
// Copyright (c) 2014-2018, The Monero Project
2015-04-01 10:56:05 +02:00
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2016-10-11 17:58:58 +02:00
import QtQml 2.0
2019-04-11 03:17:29 +02:00
import QtQuick 2.9
import QtQuick.Controls 2.0
2016-10-11 17:58:58 +02:00
import QtQuick.Controls 1.4
2016-10-08 23:50:35 +02:00
import QtQuick.Layouts 1.1
import QtGraphicalEffects 1.0
import moneroComponents.Wallet 1.0
2016-10-11 17:58:58 +02:00
import "./pages"
import "./pages/settings"
2018-12-08 16:55:29 +01:00
import "./pages/merchant"
2019-04-11 03:17:29 +02:00
import "./components" as MoneroComponents
import "./components/effects/" as MoneroEffects
2014-07-07 19:08:30 +02:00
Rectangle {
id: root
2016-10-08 23:50:35 +02:00
property Item currentView
property Item previousView
2019-04-25 21:09:23 +02:00
property int minHeight: (appWindow.height > 800) ? appWindow.height : 800
property alias contentHeight: mainFlickable.contentHeight
property alias flickable: mainFlickable
2016-10-09 01:23:57 +02:00
property Transfer transferView: Transfer { }
property Receive receiveView: Receive { }
2018-12-08 16:55:29 +01:00
property Merchant merchantView: Merchant { }
property TxKey txkeyView: TxKey { }
property SharedRingDB sharedringdbView: SharedRingDB { }
property History historyView: History { }
2016-11-08 11:06:34 +01:00
property Sign signView: Sign { }
property Settings settingsView: Settings { }
property Mining miningView: Mining { }
2016-12-10 02:01:04 +01:00
property AddressBook addressBookView: AddressBook { }
2017-08-07 10:48:13 +02:00
property Keys keysView: Keys { }
property Account accountView: Account { }
2016-10-09 00:32:03 +02:00
signal paymentClicked(string address, string paymentId, string amount, int mixinCount, int priority, string description)
signal sweepUnmixableClicked()
2016-10-08 23:50:35 +02:00
signal generatePaymentIdInvoked()
2017-11-20 08:24:29 +01:00
signal getProofClicked(string txid, string address, string message);
signal checkProofClicked(string txid, string address, string message, string signature);
2016-10-08 23:50:35 +02:00
2018-12-08 16:55:29 +01:00
Rectangle {
// grey background on merchantView
visible: currentView === merchantView
color: MoneroComponents.Style.moneroGrey
anchors.fill: parent
}
2019-04-11 03:17:29 +02:00
MoneroEffects.GradientBackground {
2018-12-08 16:55:29 +01:00
visible: currentView !== merchantView
2019-04-11 03:17:29 +02:00
anchors.fill: parent
fallBackColor: MoneroComponents.Style.middlePanelBackgroundColor
initialStartColor: MoneroComponents.Style.middlePanelBackgroundGradientStart
initialStopColor: MoneroComponents.Style.middlePanelBackgroundGradientStop
blackColorStart: MoneroComponents.Style._b_middlePanelBackgroundGradientStart
blackColorStop: MoneroComponents.Style._b_middlePanelBackgroundGradientStop
whiteColorStart: MoneroComponents.Style._w_middlePanelBackgroundGradientStart
whiteColorStop: MoneroComponents.Style._w_middlePanelBackgroundGradientStop
start: Qt.point(0, 0)
end: Qt.point(height, width)
2017-11-26 00:02:43 +01:00
}
onCurrentViewChanged: {
if (previousView) {
if (typeof previousView.onPageClosed === "function") {
previousView.onPageClosed();
}
}
previousView = currentView
if (currentView) {
stackView.replace(currentView)
2016-10-04 12:15:29 +02:00
// Component.onCompleted is called before wallet is initilized
if (typeof currentView.onPageCompleted === "function") {
currentView.onPageCompleted();
}
}
}
function updateStatus(){
transferView.updateStatus();
}
2016-12-10 02:01:04 +01:00
// send from AddressBook
function sendTo(address, paymentId, description){
root.state = "Transfer";
transferView.sendTo(address, paymentId, description);
}
states: [
State {
name: "History"
PropertyChanges { target: root; currentView: historyView }
2019-05-07 07:19:40 +02:00
PropertyChanges { target: mainFlickable; contentHeight: historyView.contentHeight + 80}
}, State {
name: "Transfer"
PropertyChanges { target: root; currentView: transferView }
2019-05-07 07:19:40 +02:00
PropertyChanges { target: mainFlickable; contentHeight: transferView.transferHeight1 + transferView.transferHeight2 + 80 }
}, State {
2019-05-07 07:19:40 +02:00
name: "Receive"
PropertyChanges { target: root; currentView: receiveView }
PropertyChanges { target: mainFlickable; contentHeight: receiveView.receiveHeight + 80 }
2018-12-08 16:55:29 +01:00
}, State {
name: "Merchant"
PropertyChanges { target: root; currentView: merchantView }
2019-05-07 07:19:40 +02:00
PropertyChanges { target: mainFlickable; contentHeight: merchantView.merchantHeight + 80 }
}, State {
2019-05-07 07:19:40 +02:00
name: "TxKey"
PropertyChanges { target: root; currentView: txkeyView }
PropertyChanges { target: mainFlickable; contentHeight: txkeyView.txkeyHeight + 80 }
}, State {
2019-05-07 07:19:40 +02:00
name: "SharedRingDB"
PropertyChanges { target: root; currentView: sharedringdbView }
PropertyChanges { target: mainFlickable; contentHeight: sharedringdbView.panelHeight + 80 }
}, State {
name: "AddressBook"
2019-05-07 07:19:40 +02:00
PropertyChanges { target: root; currentView: addressBookView }
PropertyChanges { target: mainFlickable; contentHeight: addressBookView.addressbookHeight + 80 }
2016-11-08 11:06:34 +01:00
}, State {
name: "Sign"
2019-05-07 07:19:40 +02:00
PropertyChanges { target: root; currentView: signView }
PropertyChanges { target: mainFlickable; contentHeight: signView.signHeight + 80 }
}, State {
name: "Settings"
2019-05-07 07:19:40 +02:00
PropertyChanges { target: root; currentView: settingsView }
PropertyChanges { target: mainFlickable; contentHeight: settingsView.settingsHeight }
}, State {
name: "Mining"
PropertyChanges { target: root; currentView: miningView }
2019-05-07 07:19:40 +02:00
PropertyChanges { target: mainFlickable; contentHeight: miningView.miningHeight + 80 }
2017-08-07 10:48:13 +02:00
}, State {
name: "Keys"
PropertyChanges { target: root; currentView: keysView }
2019-05-07 07:19:40 +02:00
PropertyChanges { target: mainFlickable; contentHeight: keysView.keysHeight + 80}
}, State {
2019-04-16 11:09:46 +02:00
name: "Account"
PropertyChanges { target: root; currentView: accountView }
2019-05-07 07:19:40 +02:00
PropertyChanges { target: mainFlickable; contentHeight: accountView.accountHeight + 80 }
}
]
2014-07-07 19:08:30 +02:00
2016-10-08 23:50:35 +02:00
ColumnLayout {
anchors.fill: parent
2019-03-18 00:12:51 +01:00
anchors.margins: {
if(currentView === merchantView || currentView === historyView)
return 0;
2019-04-25 21:09:23 +02:00
return 20;
2019-03-18 00:12:51 +01:00
}
2019-04-25 21:09:23 +02:00
anchors.topMargin: appWindow.persistentSettings.customDecorations ? 50 : 0
2019-11-28 00:55:00 +01:00
anchors.bottomMargin: 0
2016-10-08 23:50:35 +02:00
spacing: 0
2017-04-03 18:51:55 +02:00
Flickable {
id: mainFlickable
2016-10-08 23:50:35 +02:00
Layout.fillWidth: true
Layout.fillHeight: true
2017-04-03 18:51:55 +02:00
clip: true
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
ScrollBar.vertical: ScrollBar {
2019-07-22 21:39:56 +02:00
parent: root
2018-12-10 18:48:17 +01:00
anchors.left: parent.right
2019-07-22 21:39:56 +02:00
anchors.leftMargin: -14 // 10 margin + 4 scrollbar width
2018-12-10 18:48:17 +01:00
anchors.top: parent.top
2019-07-22 21:39:56 +02:00
anchors.topMargin: persistentSettings.customDecorations ? 60 : 10
2018-12-10 18:48:17 +01:00
anchors.bottom: parent.bottom
2019-07-22 21:39:56 +02:00
anchors.bottomMargin: persistentSettings.customDecorations ? 15 : 10
onActiveChanged: if (!active && !isMac) active = true
2018-12-10 18:48:17 +01:00
}
onFlickingChanged: {
releaseFocus();
}
2017-04-03 18:51:55 +02:00
// Views container
StackView {
id: stackView
initialItem: transferView
anchors.fill:parent
clip: true // otherwise animation will affect left panel
delegate: StackViewDelegate {
pushTransition: StackViewTransition {
PropertyAnimation {
target: enterItem
property: "x"
from: 0 - target.width
to: 0
duration: 300
easing.type: Easing.OutCubic
2017-04-03 18:51:55 +02:00
}
PropertyAnimation {
target: exitItem
property: "x"
from: 0
to: target.width
duration: 300
easing.type: Easing.OutCubic
2017-04-03 18:51:55 +02:00
}
2016-12-04 16:51:42 +01:00
}
}
}
2017-04-03 18:51:55 +02:00
}// flickable
2016-10-08 23:50:35 +02:00
}
2014-07-07 19:08:30 +02:00
// border
2014-07-07 19:08:30 +02:00
Rectangle {
2019-04-11 03:17:29 +02:00
id: borderLeft
visible: middlePanel.state !== "Merchant"
anchors.top: parent.top
2014-07-07 19:08:30 +02:00
anchors.bottom: parent.bottom
anchors.left: parent.left
width: 1
2019-04-11 03:17:29 +02:00
color: MoneroComponents.Style.appWindowBorderColor
MoneroEffects.ColorTransition {
targetObj: parent
blackColor: MoneroComponents.Style._b_appWindowBorderColor
whiteColor: MoneroComponents.Style._w_appWindowBorderColor
}
}
// border shadow
Image {
source: "qrc:///images/middlePanelShadow.png"
width: 12
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: borderLeft.right
2014-07-07 19:08:30 +02:00
}
2016-10-08 23:50:35 +02:00
/* connect "payment" click */
Connections {
ignoreUnknownSignals: false
target: transferView
onPaymentClicked : {
console.log("MiddlePanel: paymentClicked")
paymentClicked(address, paymentId, amount, mixinCount, priority, description)
2016-10-08 23:50:35 +02:00
}
onSweepUnmixableClicked : {
console.log("MiddlePanel: sweepUnmixableClicked")
sweepUnmixableClicked()
}
2016-10-08 23:50:35 +02:00
}
2014-07-07 19:08:30 +02:00
}