* @brief Returns the list of available line ending options. */
| 249 | * @brief Returns the list of available line ending options. |
| 250 | */ |
| 251 | QStringList Console::Handler::lineEndings() const |
| 252 | { |
| 253 | QStringList list; |
| 254 | list.append(tr("No Line Ending")); |
| 255 | list.append(tr("New Line")); |
| 256 | list.append(tr("Carriage Return")); |
| 257 | list.append(tr("CR + NL")); |
| 258 | return list; |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * @brief Returns the list of available console display modes. |