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.

DUIContext.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.style.DStyleSheets;
  8. /**
  9. *
  10. * @author Hoofdgebruiker
  11. */
  12. public interface DUIContext {
  13. DStyleSheets getStylesheets();
  14. float getScale();
  15. float getTextScale();
  16. void repaint(int x, int y, int width, int height);
  17. default void repaint(DIRectangle rectangle) {
  18. repaint(rectangle.x, rectangle.y, rectangle.width, rectangle.height);
  19. }
  20. void setCursor(Cursor cursor);
  21. void scrollInView(int x, int y, int width, int height);
  22. DTimerHandle setTimer(int millis, Runnable target);
  23. DClipboard getClipboard();
  24. DFontMetrics getFontMetrics(DFont font);
  25. DUIWindow getWindow();
  26. DUIWindow openDialog(int x, int y, DAnchor anchor, String title, DComponent root);
  27. DUIWindow openView(int x, int y, DAnchor anchor, DComponent root);
  28. enum Cursor {
  29. NORMAL,
  30. HAND,
  31. MOVE,
  32. TEXT,
  33. E_RESIZE,
  34. S_RESIZE,
  35. NE_RESIZE,
  36. NW_RESIZE,
  37. }
  38. }