(Graphics g, int width, int height)
| 149 | } |
| 150 | |
| 151 | public void drawCursor(Graphics g, int width, int height){ |
| 152 | int x=xBorder+(xCursor*imgWidth); |
| 153 | |
| 154 | g.setColor(getColorBGnd()); |
| 155 | g.fillRect(0,0,width, height); |
| 156 | |
| 157 | g.translate(x,0); |
| 158 | super.drawCursor(g, imgWidth, lineHeight); |
| 159 | g.translate(-x,0); |
| 160 | } |
| 161 | |
| 162 | |
| 163 | public void pageLeft(){ |
nothing calls this directly
no test coverage detected