MCPcopy Create free account
hub / github.com/Card-Forge/forge / CheckBoxIcon

Class CheckBoxIcon

forge-gui-mobile/src/forge/toolbox/FCheckBox.java:40–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38 }
39
40 private class CheckBoxIcon implements FImage {
41 @Override
42 public float getWidth() {
43 return FCheckBox.this.getHeight();
44 }
45
46 @Override
47 public float getHeight() {
48 return FCheckBox.this.getHeight();
49 }
50
51 @Override
52 public void draw(Graphics g, float x, float y, float w, float h) {
53 drawCheckBox(g, isSelected(), x, y, w, h);
54 }
55 }
56
57 @Override
58 public void draw(Graphics g) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected