Selects all the lines in this TextPanel.
()
| 957 | |
| 958 | /** Selects all the lines in this TextPanel. */ |
| 959 | public void selectAll() { |
| 960 | if (selStart==0 && selEnd==iRowCount-1) { |
| 961 | resetSelection(); |
| 962 | IJ.showStatus(""); |
| 963 | return; |
| 964 | } |
| 965 | selStart = 0; |
| 966 | selEnd = iRowCount-1; |
| 967 | selOrigin = 0; |
| 968 | tc.repaint(); |
| 969 | selLine=-1; |
| 970 | showLinePos(); |
| 971 | } |
| 972 | |
| 973 | /** Clears the selection, if any. */ |
| 974 | public void resetSelection() { |
no test coverage detected