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.

DCanvas.java 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.DShadow;
  8. /**
  9. *
  10. * @author Hoofdgebruiker
  11. */
  12. public interface DCanvas {
  13. void pushBounds(DIRectangle bounds);
  14. void popBounds();
  15. void pushOffset(int x, int y);
  16. void popOffset();
  17. DIRectangle getBounds();
  18. DUIContext getContext();
  19. void drawText(DFont font, int color, float x, float y, String text);
  20. /**
  21. * Strokes a given path.
  22. *
  23. * @param path path to be stroked
  24. * @param transform path transform
  25. * @param color path color
  26. * @param lineWidth path line width
  27. */
  28. void strokePath(DPath path, DTransform2D transform, int color, float lineWidth);
  29. /**
  30. * Fills a given path.
  31. *
  32. * @param path path to be filled
  33. * @param transform
  34. * @param color
  35. */
  36. void fillPath(DPath path, DTransform2D transform, int color);
  37. /**
  38. * Draws the shadow for a given path.
  39. *
  40. * @param path
  41. * @param transform
  42. * @param shadow
  43. */
  44. void shadowPath(DPath path, DTransform2D transform, DShadow shadow);
  45. /**
  46. * Fills a rectangle.
  47. *
  48. * @param x
  49. * @param y
  50. * @param width
  51. * @param height
  52. * @param color
  53. */
  54. void fillRectangle(int x, int y, int width, int height, int color);
  55. }