(MouseEvent e)
| 496 | } |
| 497 | |
| 498 | public void mouseDragged (MouseEvent e) { |
| 499 | if (e.isPopupTrigger() || e.isMetaDown()) |
| 500 | return; |
| 501 | int x=e.getX(), y=e.getY(); |
| 502 | if(bDrag && x<tc.getSize().width) { |
| 503 | int w=x-iXDrag; |
| 504 | if(w<0) w=0; |
| 505 | iColWidth[iColDrag]=w; |
| 506 | columnsManuallyAdjusted = true; |
| 507 | adjustHScroll(); |
| 508 | tc.repaint(); |
| 509 | } else { |
| 510 | extendSelection(x, y); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | public void mouseReleased (MouseEvent e) { |
| 515 | showLinePos(); |
nothing calls this directly
no test coverage detected