mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Fix showing formatted tooltip when exiting reset-value-icon
CURA-1278
This commit is contained in:
parent
95e633f16c
commit
14a8b8a1a4
1 changed files with 35 additions and 30 deletions
|
@ -22,6 +22,38 @@ Item {
|
||||||
signal showTooltip(string text);
|
signal showTooltip(string text);
|
||||||
signal hideTooltip();
|
signal hideTooltip();
|
||||||
|
|
||||||
|
property string tooltipText:
|
||||||
|
{
|
||||||
|
var affects = settingDefinitionsModel.getRequiredBy(definition.key, "value")
|
||||||
|
var affected_by = settingDefinitionsModel.getRequires(definition.key, "value")
|
||||||
|
|
||||||
|
var affected_by_list = ""
|
||||||
|
for(var i in affected_by)
|
||||||
|
{
|
||||||
|
affected_by_list += "<li>%1</li>\n".arg(affected_by[i].label)
|
||||||
|
}
|
||||||
|
|
||||||
|
var affects_list = ""
|
||||||
|
for(var i in affects)
|
||||||
|
{
|
||||||
|
affects_list += "<li>%1</li>\n".arg(affects[i].label)
|
||||||
|
}
|
||||||
|
|
||||||
|
var tooltip = "<b>%1</b>\n<p>%2</p>".arg(definition.label).arg(definition.description)
|
||||||
|
|
||||||
|
if(affects_list != "")
|
||||||
|
{
|
||||||
|
tooltip += "<br/><b>%1</b>\n<ul>\n%2</ul>".arg(catalog.i18nc("@label", "Affects")).arg(affects_list)
|
||||||
|
}
|
||||||
|
|
||||||
|
if(affected_by_list != "")
|
||||||
|
{
|
||||||
|
tooltip += "<br/><b>%1</b>\n<ul>\n%2</ul>".arg(catalog.i18nc("@label", "Affected By")).arg(affected_by_list)
|
||||||
|
}
|
||||||
|
|
||||||
|
return tooltip
|
||||||
|
}
|
||||||
|
|
||||||
MouseArea
|
MouseArea
|
||||||
{
|
{
|
||||||
id: mouse;
|
id: mouse;
|
||||||
|
@ -52,34 +84,7 @@ Item {
|
||||||
|
|
||||||
onTriggered:
|
onTriggered:
|
||||||
{
|
{
|
||||||
var affects = settingDefinitionsModel.getRequiredBy(definition.key, "value")
|
base.showTooltip(base.tooltipText);
|
||||||
var affected_by = settingDefinitionsModel.getRequires(definition.key, "value")
|
|
||||||
|
|
||||||
var affected_by_list = ""
|
|
||||||
for(var i in affected_by)
|
|
||||||
{
|
|
||||||
affected_by_list += "<li>%1</li>\n".arg(affected_by[i].label)
|
|
||||||
}
|
|
||||||
|
|
||||||
var affects_list = ""
|
|
||||||
for(var i in affects)
|
|
||||||
{
|
|
||||||
affects_list += "<li>%1</li>\n".arg(affects[i].label)
|
|
||||||
}
|
|
||||||
|
|
||||||
var tooltip = "<b>%1</b><br/>\n<p>%2</p>".arg(definition.label).arg(definition.description)
|
|
||||||
|
|
||||||
if(affects_list != "")
|
|
||||||
{
|
|
||||||
tooltip += "<br/><b>%1</b><br/>\n<ul>\n%2</ul>".arg(catalog.i18nc("@label", "Affects")).arg(affects_list)
|
|
||||||
}
|
|
||||||
|
|
||||||
if(affected_by_list != "")
|
|
||||||
{
|
|
||||||
tooltip += "<br/><b>%1</b><br/>\n<ul>\n%2</ul>".arg(catalog.i18nc("@label", "Affected By")).arg(affected_by_list)
|
|
||||||
}
|
|
||||||
|
|
||||||
base.showTooltip(tooltip);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,7 +142,7 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
onEntered: { hoverTimer.stop(); base.showTooltip(catalog.i18nc("@label", "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile.")) }
|
onEntered: { hoverTimer.stop(); base.showTooltip(catalog.i18nc("@label", "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile.")) }
|
||||||
onExited: base.showTooltip(definition.description);
|
onExited: base.showTooltip(base.tooltipText);
|
||||||
}
|
}
|
||||||
|
|
||||||
UM.SimpleButton
|
UM.SimpleButton
|
||||||
|
@ -164,7 +169,7 @@ Item {
|
||||||
iconSource: UM.Theme.getIcon("notice");
|
iconSource: UM.Theme.getIcon("notice");
|
||||||
|
|
||||||
onEntered: { hoverTimer.stop(); base.showTooltip(catalog.i18nc("@label", "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value.")) }
|
onEntered: { hoverTimer.stop(); base.showTooltip(catalog.i18nc("@label", "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value.")) }
|
||||||
onExited: base.showTooltip(definition.description);
|
onExited: base.showTooltip(base.tooltipText);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue