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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.listeners.ListenerHandle;
  8. import org.openzen.drawablegui.live.LiveObject;
  9. import org.openzen.drawablegui.live.LiveString;
  10. import org.openzen.drawablegui.live.MutableLiveObject;
  11. import org.openzen.drawablegui.style.DStyleClass;
  12. import org.openzen.drawablegui.style.DStylePath;
  13. /**
  14. *
  15. * @author Hoofdgebruiker
  16. */
  17. public class DLabel implements DComponent {
  18. private final LiveString label;
  19. private final DStyleClass styleClass;
  20. private final MutableLiveObject<DSizing> sizing = DSizing.create();
  21. private final ListenerHandle<LiveString.Listener> labelListener;
  22. private DUIContext context;
  23. private DIRectangle bounds;
  24. private DLabelStyle style;
  25. private DFontMetrics fontMetrics;
  26. public DLabel(DStyleClass styleClass, LiveString label) {
  27. this.styleClass = styleClass;
  28. this.label = label;
  29. labelListener = label.addListener(this::onLabelChanged);
  30. }
  31. @Override
  32. public void setContext(DStylePath parent, DUIContext context) {
  33. this.context = context;
  34. DStylePath path = parent.getChild("label", styleClass);
  35. style = new DLabelStyle(context.getStylesheets().get(context, path));
  36. fontMetrics = context.getFontMetrics(style.font);
  37. calculateDimension();
  38. }
  39. @Override
  40. public LiveObject<DSizing> getSizing() {
  41. return sizing;
  42. }
  43. @Override
  44. public DIRectangle getBounds() {
  45. return bounds;
  46. }
  47. @Override
  48. public int getBaselineY() {
  49. return style.border.getPaddingTop() + fontMetrics.getAscent();
  50. }
  51. @Override
  52. public void setBounds(DIRectangle bounds) {
  53. this.bounds = bounds;
  54. }
  55. @Override
  56. public void paint(DCanvas canvas) {
  57. style.border.paint(canvas, bounds);
  58. canvas.drawText(style.font, style.color, bounds.x + style.border.getPaddingLeft(), bounds.y + style.border.getPaddingTop() + fontMetrics.getAscent(), label.getValue());
  59. }
  60. @Override
  61. public void close() {
  62. labelListener.close();
  63. }
  64. private void onLabelChanged(String oldValue, String newValue) {
  65. calculateDimension();
  66. context.repaint(bounds);
  67. }
  68. private void calculateDimension() {
  69. sizing.setValue(new DSizing(
  70. style.border.getPaddingLeft() + fontMetrics.getWidth(label.getValue()) + style.border.getPaddingRight(),
  71. style.border.getPaddingTop() + fontMetrics.getAscent() + fontMetrics.getDescent() + style.border.getPaddingTop()));
  72. }
  73. }