Skip to content
Snippets Groups Projects
Commit 7755dd9d authored by andrey.daragan's avatar andrey.daragan
Browse files

Merge branch 'features-2872' into 'develop'

Features - 2872

See merge request !73
parents a51c9c11 e5c743de
No related branches found
No related tags found
1 merge request!73Features - 2872
Pipeline #1607 passed with stage
in 15 minutes and 8 seconds
......@@ -78,5 +78,9 @@
<file>screen/mobile/History/DapHistoryTopPanelForm.ui.qml</file>
<file>screen/DapAbstractMenuTabWidget.qml</file>
<file>screen/DapAbstractMenuTabWidgetForm.ui.qml</file>
<file>res/icons/new-wallet_icon_dark_hover.png</file>
<file>res/icons/new-wallet_icon_dark.png</file>
<file>res/icons/ic_arrow_drop_down.png</file>
<file>res/icons/ic_arrow_drop_up.png</file>
</qresource>
</RCC>
CellFrameDashboardGUI/res/icons/ic_arrow_drop_down.png

323 B

CellFrameDashboardGUI/res/icons/ic_arrow_drop_up.png

313 B

CellFrameDashboardGUI/res/icons/new-wallet_icon_dark.png

707 B

CellFrameDashboardGUI/res/icons/new-wallet_icon_dark_hover.png

702 B

......@@ -2,7 +2,8 @@ import QtQuick 2.4
import QtQuick.Controls 2.0
import "../../"
DapAbstractScreen {
DapAbstractScreen
{
id: dapdashboard
dapFrame.color: "green"
textTest.text: "Here text"
......
import QtQuick 2.4
DapDashboardTopPanelForm {
testButton.onClicked: dapServiceController.requestToService("ADD", 5)
}
import QtQuick 2.4
import QtQuick.Controls 2.0
import "qrc:/widgets"
import "../../"
DapAbstractTopPanel
{
property alias testButton: button
Button
anchors.fill: parent
// Static text "Wallet"
Label
{
id: button
anchors.fill: parent
text: "Press"
id:textHeaderWallet
text: qsTr("Wallet")
anchors.left: parent.left
anchors.leftMargin: 24 * pt
anchors.verticalCenter: parent.verticalCenter
font.family: DapMainApplicationWindow.dapFontRobotoRegular.name
font.pixelSize: 12 * pt
color: "#ACAAB5"
}
}
// Wallet selection combo box
Rectangle
{
id: frameComboBox
anchors.left: textHeaderWallet.right
anchors.verticalCenter: parent.verticalCenter
anchors.leftMargin: 30 * pt
width: 148 * pt
color: "transparent"
DapComboBox
{
id: comboboxWallet
model: ListModel{
id:сonversionList
ListElement{text:"all wallets"}
ListElement{text:"Money for children"}
ListElement{text:"Money for education"}
ListElement{text:"Money for medicine"}
}
indicatorImageNormal: "qrc:/res/icons/ic_arrow_drop_down.png"
indicatorImageActive: "qrc:/res/icons/ic_arrow_drop_up.png"
sidePaddingNormal:0 * pt
sidePaddingActive:16 * pt
topIndentActive:10 * pt
normalColorText:"#070023"
hilightColorText:"#FFFFFF"
normalColorTopText:"#FFFFFF"
hilightColorTopText:"#070023"
hilightColor: "#330F54"
normalTopColor: "#070023"
fontSizeComboBox: 14*px
widthPopupComboBoxNormal:148 * pt
widthPopupComboBoxActive:180 * pt
heightComboBoxNormal:24 * pt
heightComboBoxActive:44 * pt
bottomIntervalListElement:8 * pt
topEffect:false
x: popup.visible ? sidePaddingActive * (-1) : sidePaddingNormal
}
}
// Static wallet balance text "Wallet balance"
Label
{
id: headerWalletBalance
text: qsTr("Wallet balance")
anchors.left: frameComboBox.right
anchors.leftMargin: 70 * pt
anchors.verticalCenter: parent.verticalCenter
font.family: DapMainApplicationWindow.dapFontRobotoRegular.name
font.pixelSize: 12 * pt
color: "#ACAAB5"
}
// Dynamic wallet balance text
Label
{
id: textWalletBalance
text: "$ 3 050 745.3453289 USD"
anchors.left: headerWalletBalance.right
anchors.leftMargin: 18 * pt
anchors.verticalCenter: parent.verticalCenter
font.family: DapMainApplicationWindow.dapFontRobotoRegular.name
font.pixelSize: 16 * pt
color: "#FFFFFF"
}
/*##^## Designer {
D{i:0;autoSize:true;height:480;width:640}
// Wallet create button
DapButton
{
id: addWalletButton
textButton: "New wallet"
anchors.right: parent.right
anchors.rightMargin: 24 * pt
anchors.verticalCenter: parent.verticalCenter
normalImageButton: "qrc:/res/icons/new-wallet_icon_dark.png"
hoverImageButton: "qrc:/res/icons/new-wallet_icon_dark_hover.png"
heightButton: 24 * pt
widthButton: 120 * pt
widthImageButton: 28 * pt
heightImageButton: 28 * pt
indentImageLeftButton: 10 * pt
colorBackgroundNormal:"#070023"
colorBackgroundHover: "#D51F5D"
colorButtonTextNormal: "#FFFFFF"
colorButtonTextHover: "#FFFFFF"
indentTextRight: 20 * pt
fontSizeButton: 14 * pt
existenceImage:true
borderColorButton: "#000000"
borderWidthButton: 0
}
}
##^##*/
Subproject commit 2f385c188c017e7e5b08542e10508ff6b1bff0ba
Subproject commit 1f0a5e1d2e71ef054963bdde7e641ee5c146b2e4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment