mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-01 09:17:29 +00:00
4ee21ada05
Introduced Style.svg() Style.png() Style.emoji() and Style.icon() in Style.qml. Those should be used to set the source in Images instead of using relative paths. Usage: Image { source: Style.svg("check) .... Also moved all Singletons inside a new "utils" folder and made it a QML module, to use import utils 1.0 instead of relative paths Closes #3678
77 lines
2.2 KiB
QML
77 lines
2.2 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import utils 1.0
|
|
import "../../../../../shared"
|
|
import "../../../../../shared/status"
|
|
|
|
ModalPopup {
|
|
id: popup
|
|
|
|
//% "Ethereum explorer"
|
|
title: qsTrId("ethereum-explorer")
|
|
|
|
onClosed: {
|
|
destroy()
|
|
}
|
|
|
|
Column {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Style.current.padding
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
spacing: 0
|
|
|
|
ButtonGroup {
|
|
id: searchEnginGroup
|
|
}
|
|
|
|
StatusRadioButtonRow {
|
|
//% "None"
|
|
text: qsTrId("none")
|
|
buttonGroup: searchEnginGroup
|
|
checked: appSettings.useBrowserEthereumExplorer === Constants.browserEthereumExplorerNone
|
|
onRadioCheckedChanged: {
|
|
if (checked) {
|
|
appSettings.useBrowserEthereumExplorer = Constants.browserEthereumExplorerNone
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusRadioButtonRow {
|
|
text: "etherscan.io"
|
|
buttonGroup: searchEnginGroup
|
|
checked: appSettings.useBrowserEthereumExplorer === Constants.browserEthereumExplorerEtherscan
|
|
onRadioCheckedChanged: {
|
|
if (checked) {
|
|
appSettings.useBrowserEthereumExplorer = Constants.browserEthereumExplorerEtherscan
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusRadioButtonRow {
|
|
text: "ethplorer.io"
|
|
buttonGroup: searchEnginGroup
|
|
checked: appSettings.useBrowserEthereumExplorer === Constants.browserEthereumExplorerEthplorer
|
|
onRadioCheckedChanged: {
|
|
if (checked) {
|
|
appSettings.useBrowserEthereumExplorer = Constants.browserEthereumExplorerEthplorer
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusRadioButtonRow {
|
|
text: "blockchair.com"
|
|
buttonGroup: searchEnginGroup
|
|
checked: appSettings.useBrowserEthereumExplorer === Constants.browserEthereumExplorerBlockchair
|
|
onRadioCheckedChanged: {
|
|
if (checked) {
|
|
appSettings.useBrowserEthereumExplorer = Constants.browserEthereumExplorerBlockchair
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|