* Enables/disables text wordwrapping. When enabled, rows can * take up multiple lines of the list, otherwise every row * is restricted to one line. * @param wrap Wordwrapping setting. */
| 492 | * @param wrap Wordwrapping setting. |
| 493 | */ |
| 494 | void TextList::setWordWrap(bool wrap) |
| 495 | { |
| 496 | if (wrap != _wrap) |
| 497 | { |
| 498 | _wrap = wrap; |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | /** |
| 503 | * Enables/disables high contrast color. Mostly used for |