* Returns the Y position of a specific text row in the list. * @param row Row number. * @return Y position in pixels. */
| 208 | * @return Y position in pixels. |
| 209 | */ |
| 210 | int TextList::getRowY(size_t row) const |
| 211 | { |
| 212 | return getY() + _texts[row][0]->getY(); |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Returns the amount of text rows stored in the list. |