2022-08-10 08:27:45 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
StatusInput {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property int linkType
|
2022-12-05 14:21:20 +00:00
|
|
|
property string icon
|
2022-08-10 08:27:45 +00:00
|
|
|
|
2023-03-08 01:56:41 +00:00
|
|
|
leftPadding: Style.current.padding
|
|
|
|
input.clearable: true
|
2022-08-16 17:22:19 +00:00
|
|
|
|
2023-03-08 01:56:41 +00:00
|
|
|
placeholderText: ProfileUtils.linkTypeToDescription(linkType)
|
2022-08-11 11:55:08 +00:00
|
|
|
input.asset {
|
2022-12-05 14:21:20 +00:00
|
|
|
name: root.icon
|
2023-03-08 01:56:41 +00:00
|
|
|
color: ProfileUtils.linkTypeColor(root.linkType)
|
2022-08-10 08:27:45 +00:00
|
|
|
width: 20
|
|
|
|
height: 20
|
|
|
|
}
|
|
|
|
}
|