ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DSimpleTooltipComponent.java 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package org.openzen.drawablegui;
  7. import org.openzen.drawablegui.draw.DDrawSurface;
  8. import org.openzen.drawablegui.draw.DDrawnRectangle;
  9. import org.openzen.drawablegui.draw.DDrawnText;
  10. import org.openzen.drawablegui.listeners.ListenerHandle;
  11. import org.openzen.drawablegui.live.LiveObject;
  12. import org.openzen.drawablegui.live.LiveString;
  13. import org.openzen.drawablegui.live.MutableLiveObject;
  14. import org.openzen.drawablegui.style.DStyleClass;
  15. import org.openzen.drawablegui.style.DStylePath;
  16. /**
  17. *
  18. * @author Hoofdgebruiker
  19. */
  20. public class DSimpleTooltipComponent implements DComponent {
  21. private final DStyleClass styleClass;
  22. private final LiveString tooltip;
  23. private final MutableLiveObject<DSizing> sizing = DSizing.create();
  24. private final ListenerHandle<LiveString.Listener> tooltipListener;
  25. private DDrawSurface surface;
  26. private int z;
  27. private DIRectangle bounds;
  28. private DFontMetrics fontMetrics;
  29. private DSimpleTooltipStyle style;
  30. private DDrawnRectangle background;
  31. private DDrawnText text;
  32. public DSimpleTooltipComponent(DStyleClass styleClass, LiveString tooltip) {
  33. this.styleClass = styleClass;
  34. this.tooltip = tooltip;
  35. tooltipListener = tooltip.addListener(this::onTooltipChanged);
  36. }
  37. private void onTooltipChanged(String oldValue, String newValue) {
  38. if (surface == null || bounds == null)
  39. return;
  40. calculateSize();
  41. bounds = new DIRectangle(
  42. bounds.x,
  43. bounds.y,
  44. style.border.getPaddingLeft() + fontMetrics.getWidth(tooltip.getValue()) + style.border.getPaddingRight(),
  45. style.border.getPaddingTop() + fontMetrics.getAscent() + fontMetrics.getDescent() + style.border.getPaddingBottom());
  46. if (text != null)
  47. text.close();
  48. text = surface.drawText(
  49. z,
  50. style.font,
  51. style.textColor,
  52. bounds.x + style.border.getPaddingLeft(),
  53. bounds.y + style.border.getPaddingTop() + fontMetrics.getAscent(),
  54. newValue);
  55. }
  56. @Override
  57. public void setBounds(DIRectangle bounds) {
  58. this.bounds = bounds;
  59. style.border.update(surface, z + 1, bounds);
  60. if (background != null)
  61. background.close();
  62. background = surface.fillRect(z, bounds, style.backgroundColor);
  63. text.setPosition(
  64. bounds.x + style.border.getPaddingLeft(),
  65. bounds.y + style.border.getPaddingTop() + fontMetrics.getAscent());
  66. }
  67. @Override
  68. public DIRectangle getBounds() {
  69. return bounds;
  70. }
  71. @Override
  72. public int getBaselineY() {
  73. return style.border.getPaddingTop() + fontMetrics.getAscent();
  74. }
  75. @Override
  76. public LiveObject<DSizing> getSizing() {
  77. return sizing;
  78. }
  79. @Override
  80. public void mount(DStylePath parent, int z, DDrawSurface surface) {
  81. this.surface = surface;
  82. this.z = z;
  83. DStylePath path = parent.getChild("tooltip", styleClass);
  84. style = new DSimpleTooltipStyle(surface.getStylesheet(path));
  85. fontMetrics = surface.getFontMetrics(style.font);
  86. calculateSize();
  87. if (text != null)
  88. text.close();
  89. text = surface.drawText(z + 1, style.font, style.textColor, 0, 0, tooltip.getValue());
  90. }
  91. @Override
  92. public void unmount() {
  93. if (background != null)
  94. background.close();
  95. if (text != null)
  96. text.close();
  97. }
  98. @Override
  99. public void close() {
  100. tooltipListener.close();
  101. unmount();
  102. }
  103. private void calculateSize() {
  104. sizing.setValue(new DSizing(
  105. style.border.getPaddingLeft() + fontMetrics.getWidth(tooltip.getValue()) + style.border.getPaddingRight(),
  106. style.border.getPaddingTop() + fontMetrics.getAscent() + fontMetrics.getDescent() + style.border.getPaddingBottom()));
  107. }
  108. }