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.

DInputField.java 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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.SimpleLiveObject;
  11. import org.openzen.drawablegui.style.DDimension;
  12. import org.openzen.drawablegui.style.DStyleClass;
  13. import org.openzen.drawablegui.style.DStylePath;
  14. /**
  15. *
  16. * @author Hoofdgebruiker
  17. */
  18. public class DInputField implements DComponent {
  19. public final LiveString value;
  20. private final ListenerHandle<LiveString.Listener> valueListener;
  21. private final DStyleClass styleClass;
  22. private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
  23. private DIRectangle bounds = DIRectangle.EMPTY;
  24. private final DDimension preferredWidth;
  25. private DUIContext context;
  26. private DInputFieldStyle style;
  27. private DFontMetrics fontMetrics;
  28. private int cursorFrom = -1;
  29. private int cursorTo = -1;
  30. private boolean cursorBlink = true;
  31. private DTimerHandle blinkTimer;
  32. public DInputField(DStyleClass styleClass, LiveString value, DDimension preferredWidth) {
  33. this.styleClass = styleClass;
  34. this.value = value;
  35. this.preferredWidth = preferredWidth;
  36. valueListener = value.addListener((oldValue, newValue) -> handleValueUpdated(newValue));
  37. cursorFrom = 0;
  38. cursorTo = value.getValue().length();
  39. }
  40. @Override
  41. public void close() {
  42. valueListener.close();
  43. blinkTimer.close();
  44. }
  45. @Override
  46. public void setContext(DStylePath parent, DUIContext context) {
  47. this.context = context;
  48. DStylePath path = parent.getChild("input", styleClass);
  49. style = new DInputFieldStyle(context.getStylesheets().get(context, path));
  50. fontMetrics = context.getFontMetrics(style.font);
  51. dimensionPreferences.setValue(new DDimensionPreferences(
  52. preferredWidth.evalInt(context) + style.paddingLeft + style.paddingRight + 2 * style.borderWidth,
  53. fontMetrics.getAscent() + fontMetrics.getDescent() + style.paddingTop + style.paddingBottom + 2 * style.borderWidth));
  54. if (blinkTimer != null)
  55. blinkTimer.close();
  56. blinkTimer = context.setTimer(300, this::blink);
  57. }
  58. private void blink() {
  59. cursorBlink = !cursorBlink;
  60. context.repaint(bounds);
  61. }
  62. @Override
  63. public LiveObject<DDimensionPreferences> getDimensionPreferences() {
  64. return dimensionPreferences;
  65. }
  66. @Override
  67. public DIRectangle getBounds() {
  68. return bounds;
  69. }
  70. @Override
  71. public int getBaselineY() {
  72. return style.borderWidth + style.paddingTop + fontMetrics.getAscent();
  73. }
  74. @Override
  75. public void setBounds(DIRectangle bounds) {
  76. this.bounds = bounds;
  77. }
  78. @Override
  79. public void paint(DCanvas canvas) {
  80. canvas.fillRectangle(bounds.x, bounds.y, bounds.width, bounds.height, style.backgroundColor);
  81. if (style.borderWidth > 0) {
  82. canvas.strokePath(
  83. DPath.rectangle(bounds.x, bounds.y, bounds.width - style.borderWidth, bounds.height - style.borderWidth),
  84. DTransform2D.IDENTITY,
  85. style.borderColor,
  86. style.borderWidth);
  87. }
  88. int cursorXFrom = fontMetrics.getWidth(value.getValue(), 0, Math.min(cursorFrom, cursorTo));
  89. int cursorXTo = fontMetrics.getWidth(value.getValue(), 0, Math.max(cursorFrom, cursorTo));
  90. if (cursorFrom != cursorTo) {
  91. canvas.fillRectangle(
  92. bounds.x + style.paddingLeft + cursorXFrom,
  93. bounds.y + style.paddingTop,
  94. cursorXTo - cursorXFrom,
  95. fontMetrics.getAscent() + fontMetrics.getDescent(),
  96. style.selectionColor);
  97. }
  98. canvas.drawText(style.font, style.color, bounds.x + style.paddingLeft + style.borderWidth, bounds.y + style.paddingBottom + style.borderWidth + fontMetrics.getAscent(), value.getValue());
  99. if (cursorBlink) {
  100. canvas.fillRectangle(
  101. bounds.x + style.paddingLeft + cursorXTo,
  102. bounds.y + style.paddingTop,
  103. style.cursorWidth,
  104. fontMetrics.getAscent() + fontMetrics.getDescent(),
  105. style.cursorColor);
  106. }
  107. }
  108. @Override
  109. public void onMouseClick(DMouseEvent e) {
  110. context.getWindow().focus(this);
  111. }
  112. @Override
  113. public void onKeyPressed(DKeyEvent e) {
  114. boolean shift = e.has(DKeyEvent.SHIFT);
  115. switch (e.keyCode) {
  116. case UP:
  117. setCursor(0, 0);
  118. break;
  119. case DOWN:
  120. setCursor(value.getValue().length(), value.getValue().length());
  121. break;
  122. case LEFT: {
  123. int to = Math.max(0, cursorTo - 1);
  124. setCursor(shift ? cursorFrom : to, to);
  125. break;
  126. }
  127. case RIGHT: {
  128. int to = Math.min(value.getValue().length(), cursorTo + 1);
  129. setCursor(shift ? cursorFrom : to, to);
  130. break;
  131. }
  132. case DELETE:
  133. delete();
  134. break;
  135. case BACKSPACE:
  136. backspace();
  137. break;
  138. case ENTER:
  139. enter();
  140. break;
  141. default:
  142. if (e.character == DKeyEvent.CHAR_UNDEFINED)
  143. return;
  144. insert(Character.toString(e.character));
  145. break;
  146. }
  147. }
  148. private void setCursor(int from, int to) {
  149. cursorFrom = from;
  150. cursorTo = to;
  151. context.repaint(bounds);
  152. }
  153. private void handleValueUpdated(String newValue) {
  154. context.repaint(bounds);
  155. }
  156. private void backspace() {
  157. if (cursorFrom == 0 && cursorTo == 0)
  158. return;
  159. if (cursorFrom == cursorTo) {
  160. value.setValue(value.getValue().substring(0, cursorFrom - 1) + value.getValue().substring(cursorFrom));
  161. setCursor(cursorFrom - 1, cursorTo - 1);
  162. } else {
  163. int from = Math.min(cursorFrom, cursorTo);
  164. int to = Math.max(cursorFrom, cursorTo);
  165. setCursor(from, from);
  166. value.setValue(value.getValue().substring(0, from) + value.getValue().substring(to));
  167. }
  168. }
  169. private void delete() {
  170. if (cursorFrom == 0 && cursorTo == 0)
  171. return;
  172. if (cursorFrom == cursorTo) {
  173. if (cursorFrom < value.getValue().length()) {
  174. value.setValue(value.getValue().substring(0, cursorFrom) + value.getValue().substring(cursorFrom + 1));
  175. }
  176. } else {
  177. int from = Math.min(cursorFrom, cursorTo);
  178. int to = Math.max(cursorFrom, cursorTo);
  179. setCursor(from, from);
  180. value.setValue(value.getValue().substring(0, from) + value.getValue().substring(to));
  181. }
  182. }
  183. private void insert(String value) {
  184. int from = Math.min(cursorFrom, cursorTo);
  185. int to = Math.max(cursorFrom, cursorTo);
  186. this.value.setValue(this.value.getValue().substring(0, from) + value + this.value.getValue().substring(to));
  187. setCursor(from + value.length(), from + value.length());
  188. }
  189. private void enter() {
  190. }
  191. }