How to add hovering description (tooltip) on ACT created objects in Mechanical toolbar?

Member, Moderator, Employee Posts: 248
50 Answers 100 Comments Second Anniversary 25 Likes
✭✭✭✭

How to add hovering description (tooltip) on ACT created objects in Mechanical toolbar as shown below.

Answers

  • Member, Moderator, Employee Posts: 248
    50 Answers 100 Comments Second Anniversary 25 Likes
    ✭✭✭✭

    We first need to add "gettooltips" callback under Interface in the xml file.

    1. <interface context="Mechanical">
    2. <callbacks>
    3. <oninit>init</oninit>
    4. <gettooltips>getToolTips</gettooltips>
    5. </callbacks>
    6. <toolbar name="Extensions" caption="Extensions">
    7. <entry name="tbexample" icon="icon">
    8. <callbacks>
    9. <!-- This Python function is called when clicked -->
    10. <onclick>tbexampleclicked</onclick>
    11. </callbacks>
    12. </entry>
    13. <entry name="tbexample2" icon="icon">
    14. <callbacks>
    15. <!-- This Python function is called when clicked -->
    16. <onclick>tbexampleclicked</onclick>
    17. </callbacks>
    18. </entry>
    19. <separator></separator>
    20. <entry name="tbexample3" icon="icon">
    21. <callbacks>
    22. <!-- This Python function is called when clicked -->
    23. <onclick>tbexampleclicked</onclick>
    24. </callbacks>
    25. </entry>
    26. <entry name="tbexample4" icon="icon">
    27. <callbacks>
    28. <!-- This Python function is called when clicked -->
    29. <onclick>tbexampleclicked</onclick>
    30. </callbacks>
    31. </entry>
    32. </toolbar>
    33. </interface>

    Then we need to create a dictionary of act entry name vs description as shown below in the python file.

    1. toolTips = {
    2. "tbexample":"This is a tooltip for first button.", "tbexample2":"Tooltip for second button.",
    3. "tbexample3":"Tooltip for third button."
    4. }

    Then we need to create the function "getToolTips" defined in the xml under the defined callback, in the python file.

    1. def getToolTips(name):
    2. if name in toolTips.keys(): return toolTips[name]
    3. return name

    Full text of .py file, to reconstruct this example.

    1. clr.AddReference("Ans.UI.Toolkit.Base")
    2. clr.AddReference("Ans.UI.Toolkit")
    3. from Ansys.UI.Toolkit import *
    4.  
    5. def init(context):
    6. ExtAPI.Log.WriteMessage("Init ACT example...")
    7.  
    8. def tbexampleclicked(analysis):
    9. MessageBox.Show("ACT example is a success!")
    10.  
    11. #-----------------------------------------------------------------------
    12. # Create Tooltips Dictionary
    13. #-----------------------------------------------------------------------
    14. toolTips = {
    15. "tbexample":"This is a tooltip for first button.", "tbexample2":"Tooltip for second button.",
    16. "tbexample3":"Tooltip for third button."
    17. }
    18.  
    19. #---------------------------------------------------------------------------------------------------------------
    20. # Tooltips
    21. #---------------------------------------------------------------------------------------------------------------
    22. def getToolTips(name):
    23. if name in toolTips.keys(): return toolTips[name]
    24. return name

Welcome!

It looks like you're new here. Sign in or register to get started.