|
@ -13,6 +13,11 @@ Column |
|
|
property string context |
|
|
property string context |
|
|
Layout.fillWidth: true |
|
|
Layout.fillWidth: true |
|
|
spacing: 0 |
|
|
spacing: 0 |
|
|
|
|
|
|
|
|
|
|
|
DebuggerPaneStyle { |
|
|
|
|
|
id: dbgStyle |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
Repeater |
|
|
Repeater |
|
|
{ |
|
|
{ |
|
|
id: repeater |
|
|
id: repeater |
|
@ -29,6 +34,9 @@ Column |
|
|
id: typeLabel |
|
|
id: typeLabel |
|
|
text: modelData.type.name |
|
|
text: modelData.type.name |
|
|
anchors.verticalCenter: parent.verticalCenter |
|
|
anchors.verticalCenter: parent.verticalCenter |
|
|
|
|
|
font.family: dbgStyle.general.basicFont |
|
|
|
|
|
color: dbgStyle.general.basicColor |
|
|
|
|
|
font.pointSize: dbgStyle.general.basicFontSize |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
DefaultLabel { |
|
|
DefaultLabel { |
|
@ -36,6 +44,9 @@ Column |
|
|
id: nameLabel |
|
|
id: nameLabel |
|
|
text: modelData.name |
|
|
text: modelData.name |
|
|
anchors.verticalCenter: parent.verticalCenter |
|
|
anchors.verticalCenter: parent.verticalCenter |
|
|
|
|
|
font.family: dbgStyle.general.basicFont |
|
|
|
|
|
color: dbgStyle.general.basicColor |
|
|
|
|
|
font.pointSize: dbgStyle.general.basicFontSize |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
DefaultLabel { |
|
|
DefaultLabel { |
|
@ -43,7 +54,11 @@ Column |
|
|
id: equalLabel |
|
|
id: equalLabel |
|
|
text: "=" |
|
|
text: "=" |
|
|
anchors.verticalCenter: parent.verticalCenter |
|
|
anchors.verticalCenter: parent.verticalCenter |
|
|
|
|
|
font.family: dbgStyle.general.basicFont |
|
|
|
|
|
color: dbgStyle.general.basicColor |
|
|
|
|
|
font.pointSize: dbgStyle.general.basicFontSize |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Loader |
|
|
Loader |
|
|
{ |
|
|
{ |
|
|
id: typeLoader |
|
|
id: typeLoader |
|
|