Skip to content
Snippets Groups Projects
Commit 888b34fa authored by alja's avatar alja Committed by Sergey Linev
Browse files

Add custom tooltip for StraightLineSets

parent 9eada365
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,12 @@ sap.ui.define(['rootui5/eve7/lib/EveManager'], function(EveManager) { ...@@ -34,6 +34,12 @@ sap.ui.define(['rootui5/eve7/lib/EveManager'], function(EveManager) {
EveElemControl.prototype.separateDraw = false; EveElemControl.prototype.separateDraw = false;
EveElemControl.prototype.getTooltipText = function(intersect)
{
let el = this.obj3d.eve_el;
return el.fTitle || el.fName || "";
}
EveElemControl.prototype.elementHighlighted = function(indx) EveElemControl.prototype.elementHighlighted = function(indx)
{ {
// default is simple selection, we ignore the indx // default is simple selection, we ignore the indx
...@@ -697,6 +703,13 @@ sap.ui.define(['rootui5/eve7/lib/EveManager'], function(EveManager) { ...@@ -697,6 +703,13 @@ sap.ui.define(['rootui5/eve7/lib/EveManager'], function(EveManager) {
} }
} }
StraightLineSetControl.prototype.getTooltipText = function(intersect)
{
var t = this.obj3d.eve_el.fTitle || this.obj3d.eve_el.fName || "";
var idx = this.extractIndex(intersect);
return t + " idx=" + idx;
}
StraightLineSetControl.prototype.elementSelected = function(indx) StraightLineSetControl.prototype.elementSelected = function(indx)
{ {
this.invokeSceneMethod("processElementSelected", indx); this.invokeSceneMethod("processElementSelected", indx);
......
...@@ -443,7 +443,7 @@ sap.ui.define([ ...@@ -443,7 +443,7 @@ sap.ui.define([
this.highlighted_scene = c.obj3d.scene; this.highlighted_scene = c.obj3d.scene;
if (c.obj3d && c.obj3d.eve_el) if (c.obj3d && c.obj3d.eve_el)
this.ttip_text.innerHTML = c.obj3d.eve_el.fTitle || c.obj3d.eve_el.fName || ""; this.ttip_text.innerHTML = c.getTooltipText(intersect);
else else
this.ttip_text.innerHTML = ""; this.ttip_text.innerHTML = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment