Allows setting max lines and max line length, enables DeepL, adds user setup bridge

This commit is contained in:
Guillaume Tâche
2024-08-20 21:31:10 +02:00
parent 273a6e996f
commit 44c317f207
49 changed files with 752 additions and 298 deletions

View File

@@ -64,4 +64,12 @@ public interface ParametersModel {
* @param fontSize The new font size
*/
void setFontSize(int fontSize);
int maxLineLength();
void setMaxLineLength(int maxLineLength);
int maxLines();
void setMaxLines(int maxLines);
}