mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Add additional information to tooltips in object selector
This commit is contained in:
parent
4f0c24fecb
commit
0ed4931056
1 changed files with 47 additions and 7 deletions
|
@ -14,7 +14,7 @@ Button
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: UM.Theme.getSize("action_button").height
|
height: UM.Theme.getSize("action_button").height
|
||||||
leftPadding: UM.Theme.getSize("thin_margin").width
|
leftPadding: UM.Theme.getSize("thin_margin").width
|
||||||
rightPadding: UM.Theme.getSize("default_lining").width
|
rightPadding: perObjectSettingsInfo.visible ? UM.Theme.getSize("default_lining").width : UM.Theme.getSize("thin_margin").width
|
||||||
checkable: true
|
checkable: true
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
|
|
||||||
|
@ -87,10 +87,44 @@ Button
|
||||||
UM.Controller.setActiveTool("PerObjectSettingsTool")
|
UM.Controller.setActiveTool("PerObjectSettingsTool")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
property string tooltipText:
|
||||||
|
{
|
||||||
|
var result = "";
|
||||||
|
if (!visible)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
if (meshType != "")
|
||||||
|
{
|
||||||
|
result += "<br>";
|
||||||
|
switch (meshType) {
|
||||||
|
case "support_mesh":
|
||||||
|
result += catalog.i18nc("@label", "Is printed as support.");
|
||||||
|
break;
|
||||||
|
case "cutting_mesh":
|
||||||
|
result += catalog.i18nc("@label", "Other models overlapping with this model are modified.");
|
||||||
|
break;
|
||||||
|
case "infill_mesh":
|
||||||
|
result += catalog.i18nc("@label", "Infill overlapping with this model is modified.");
|
||||||
|
break;
|
||||||
|
case "anti_overhang_mesh":
|
||||||
|
result += catalog.i18nc("@label", "Overlaps with this model are not supported.");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (perObjectSettingsCount != "")
|
||||||
|
{
|
||||||
|
result += "<br>" + catalog.i18ncp(
|
||||||
|
"@label", "Overrides %1 setting.", "Overrides %1 settings.", perObjectSettingsCount
|
||||||
|
).arg(perObjectSettingsCount);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
contentItem: Item
|
contentItem: Item
|
||||||
{
|
{
|
||||||
height: parent.height
|
height: parent.height
|
||||||
width: childrenRect.width
|
width: meshTypeIcon.width + perObjectSettingsCountLabel.width + UM.Theme.getSize("narrow_margin").width
|
||||||
|
|
||||||
Cura.NotificationIcon
|
Cura.NotificationIcon
|
||||||
{
|
{
|
||||||
|
@ -107,6 +141,7 @@ Button
|
||||||
|
|
||||||
UM.RecolorImage
|
UM.RecolorImage
|
||||||
{
|
{
|
||||||
|
id: meshTypeIcon
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
right: perObjectSettingsCountLabel.left
|
right: perObjectSettingsCountLabel.left
|
||||||
|
@ -121,12 +156,12 @@ Button
|
||||||
{
|
{
|
||||||
switch (meshType) {
|
switch (meshType) {
|
||||||
case "support_mesh":
|
case "support_mesh":
|
||||||
return UM.Theme.getIcon("pos_print_as_support")
|
return UM.Theme.getIcon("pos_print_as_support");
|
||||||
case "cutting_mesh":
|
case "cutting_mesh":
|
||||||
case "infill_mesh":
|
case "infill_mesh":
|
||||||
return UM.Theme.getIcon("pos_modify_overlaps")
|
return UM.Theme.getIcon("pos_modify_overlaps");
|
||||||
case "anti_overhang_mesh":
|
case "anti_overhang_mesh":
|
||||||
return UM.Theme.getIcon("pos_modify_dont_support_overlap")
|
return UM.Theme.getIcon("pos_modify_dont_support_overlap");
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
@ -149,8 +184,13 @@ Button
|
||||||
Cura.ToolTip
|
Cura.ToolTip
|
||||||
{
|
{
|
||||||
id: tooltip
|
id: tooltip
|
||||||
tooltipText: objectItemButton.text
|
tooltipText: objectItemButton.text + perObjectSettingsInfo.tooltipText
|
||||||
visible: objectItemButton.hovered && buttonTextMetrics.elidedText != buttonText.text
|
visible: objectItemButton.hovered && (buttonTextMetrics.elidedText != buttonText.text || perObjectSettingsInfo.visible)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UM.I18nCatalog
|
||||||
|
{
|
||||||
|
id: catalog
|
||||||
|
name: "cura"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue