import QtQuick 2.13

import utils 1.0


StyledText {
    property bool expanded: false
    property int maxWidth: 0
    property int oldWidth
    id: addressComponent
    text: "0x9ce0056c5fc6bb9459a4dcfa35eaad8c1fee5ce9"
    font.pixelSize: 13
    font.family: Style.current.fontHexRegular.name
    elide: Text.ElideMiddle
    color: Style.current.secondaryText

    MouseArea {
        width: parent.width
        height: parent.height
        cursorShape: Qt.PointingHandCursor
        onClicked: {
            if (addressComponent.expanded) {
                addressComponent.width = addressComponent.oldWidth
                this.width = addressComponent.width
            } else {
                addressComponent.oldWidth = addressComponent.width
                addressComponent.width = addressComponent.maxWidth > 0 ?
                            Math.min(addressComponent.implicitWidth, addressComponent.maxWidth) :
                            addressComponent.implicitWidth
                this.width = addressComponent.width
            }
            addressComponent.expanded = !addressComponent.expanded
        }
    }
}

/*##^##
Designer {
    D{i:0;formeditorColor:"#ffffff"}
}
##^##*/