(Graphics g, boolean isChecked, float x, float y, float w, float h)
| 60 | } |
| 61 | |
| 62 | public static void drawCheckBox(Graphics g, boolean isChecked, float x, float y, float w, float h) { |
| 63 | drawCheckBox(g, getBoxColor(), getCheckColor(), isChecked, x, y, w, h); |
| 64 | } |
| 65 | public static void drawCheckBox(Graphics g, FSkinColor boxColor, FSkinColor checkColor, boolean isChecked, float x, float y, float w, float h) { |
| 66 | g.drawRect(Utils.scale(1), boxColor, x, y, w, h); |
| 67 | if (isChecked) { |
no test coverage detected