From 0c1af2b7b36f3fbf0499f07c32e2c07a133c68f1 Mon Sep 17 00:00:00 2001 From: and3md Date: Sun, 12 Nov 2017 18:43:39 +0100 Subject: [PATCH] Add style for LogWidget. --- src/dlangui/widgets/editors.d | 5 +---- src/dlangui/widgets/styles.d | 2 ++ views/res/theme_dark.xml | 3 +++ views/res/theme_default.xml | 12 ++++++++++++ 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/dlangui/widgets/editors.d b/src/dlangui/widgets/editors.d index de246dbe..6460dc7e 100644 --- a/src/dlangui/widgets/editors.d +++ b/src/dlangui/widgets/editors.d @@ -3504,13 +3504,10 @@ class LogWidget : EditBox { this(string ID) { super(ID); + styleId = STYLE_LOG_WIDGET; _scrollLock = true; _enableScrollAfterText = false; enabled = false; - fontSize = makePointSize(9); - //fontFace = "Consolas,Lucida Console,Courier New"; - fontFace = "Menlo,Consolas,DejaVuSansMono,DejaVu Sans Mono,Lucida Sans Typewriter,Courier New,Lucida Console"; - fontFamily = FontFamily.MonoSpace; minFontSize(pointsToPixels(6)).maxFontSize(pointsToPixels(32)); // allow font zoom with Ctrl + MouseWheel onThemeChanged(); } diff --git a/src/dlangui/widgets/styles.d b/src/dlangui/widgets/styles.d index 7f138631..bd583522 100644 --- a/src/dlangui/widgets/styles.d +++ b/src/dlangui/widgets/styles.d @@ -111,6 +111,8 @@ immutable string STYLE_LIST_ITEM = "LIST_ITEM"; immutable string STYLE_EDIT_LINE = "EDIT_LINE"; /// standard style id for EditBox immutable string STYLE_EDIT_BOX = "EDIT_BOX"; +/// standard style id for LogWidget +immutable string STYLE_LOG_WIDGET = "LOG_WIDGET"; /// standard style id for lists immutable string STYLE_LIST_BOX = "LIST_BOX"; /// standard style id for StringGrid diff --git a/views/res/theme_dark.xml b/views/res/theme_dark.xml index c92ae866..38b867b0 100644 --- a/views/res/theme_dark.xml +++ b/views/res/theme_dark.xml @@ -220,6 +220,9 @@