* Returns the X position of a specific text column in the list. * @param column Column number. * @return X position in pixels. */
| 198 | * @return X position in pixels. |
| 199 | */ |
| 200 | int TextList::getColumnX(size_t column) const |
| 201 | { |
| 202 | return getX() + _texts[0][column]->getX(); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Returns the Y position of a specific text row in the list. |