mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-11 05:14:34 +00:00
processing splash - mobile redesign
This commit is contained in:
parent
30fde8d7fd
commit
31675f4c16
1 changed files with 12 additions and 3 deletions
|
@ -31,10 +31,11 @@ import QtQuick.Window 2.1
|
||||||
import QtQuick.Controls 1.4
|
import QtQuick.Controls 1.4
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts 1.1
|
||||||
|
|
||||||
Window {
|
Rectangle {
|
||||||
id: root
|
id: root
|
||||||
modality: Qt.ApplicationModal
|
color: "white"
|
||||||
flags: Qt.Window
|
visible: false
|
||||||
|
z:11
|
||||||
property alias messageText: messageTitle.text
|
property alias messageText: messageTitle.text
|
||||||
property alias heightProgressText : heightProgress.text
|
property alias heightProgressText : heightProgress.text
|
||||||
|
|
||||||
|
@ -42,6 +43,14 @@ Window {
|
||||||
height: 100 * scaleRatio
|
height: 100 * scaleRatio
|
||||||
opacity: 0.7
|
opacity: 0.7
|
||||||
|
|
||||||
|
function show() {
|
||||||
|
root.visible = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function close() {
|
||||||
|
root.visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: rootLayout
|
id: rootLayout
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue