()
| 346 | } |
| 347 | |
| 348 | synchronized void adjustHScroll() { |
| 349 | if (iRowHeight==0) return; |
| 350 | Dimension d = tc.getSize(); |
| 351 | int w=0; |
| 352 | for (int i=0; i<iColCount; i++) |
| 353 | w+=iColWidth[i]; |
| 354 | iGridWidth=w; |
| 355 | sbHoriz.setValues(iX,d.width,0,iGridWidth); |
| 356 | iX=sbHoriz.getValue(); |
| 357 | } |
| 358 | |
| 359 | public void adjustmentValueChanged (AdjustmentEvent e) { |
| 360 | iX=sbHoriz.getValue(); |
no test coverage detected