* Sets the position of the column of arrow buttons * in the text list. * @param pos X in pixels (-1 to disable). * @param type Arrow orientation type. */
| 661 | * @param type Arrow orientation type. |
| 662 | */ |
| 663 | void TextList::setArrowColumn(int pos, ArrowOrientation type) |
| 664 | { |
| 665 | _arrowPos = pos; |
| 666 | _arrowType = type; |
| 667 | _arrowsLeftEdge = getX() + _arrowPos; |
| 668 | _arrowsRightEdge = _arrowsLeftEdge + 12 + 11; |
| 669 | } |
| 670 | |
| 671 | /** |
| 672 | * Sets a function to be called every time the left arrows are mouse clicked. |
no outgoing calls
no test coverage detected