mirror of https://github.com/buggins/dlangui.git
Add style for LogWidget.
This commit is contained in:
parent
413fd9a753
commit
0c1af2b7b3
|
@ -3504,13 +3504,10 @@ class LogWidget : EditBox {
|
||||||
|
|
||||||
this(string ID) {
|
this(string ID) {
|
||||||
super(ID);
|
super(ID);
|
||||||
|
styleId = STYLE_LOG_WIDGET;
|
||||||
_scrollLock = true;
|
_scrollLock = true;
|
||||||
_enableScrollAfterText = false;
|
_enableScrollAfterText = false;
|
||||||
enabled = 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
|
minFontSize(pointsToPixels(6)).maxFontSize(pointsToPixels(32)); // allow font zoom with Ctrl + MouseWheel
|
||||||
onThemeChanged();
|
onThemeChanged();
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,6 +111,8 @@ immutable string STYLE_LIST_ITEM = "LIST_ITEM";
|
||||||
immutable string STYLE_EDIT_LINE = "EDIT_LINE";
|
immutable string STYLE_EDIT_LINE = "EDIT_LINE";
|
||||||
/// standard style id for EditBox
|
/// standard style id for EditBox
|
||||||
immutable string STYLE_EDIT_BOX = "EDIT_BOX";
|
immutable string STYLE_EDIT_BOX = "EDIT_BOX";
|
||||||
|
/// standard style id for LogWidget
|
||||||
|
immutable string STYLE_LOG_WIDGET = "LOG_WIDGET";
|
||||||
/// standard style id for lists
|
/// standard style id for lists
|
||||||
immutable string STYLE_LIST_BOX = "LIST_BOX";
|
immutable string STYLE_LIST_BOX = "LIST_BOX";
|
||||||
/// standard style id for StringGrid
|
/// standard style id for StringGrid
|
||||||
|
|
|
@ -220,6 +220,9 @@
|
||||||
<style id="EDIT_BOX"
|
<style id="EDIT_BOX"
|
||||||
backgroundImageId="editbox_background_dark"
|
backgroundImageId="editbox_background_dark"
|
||||||
/>
|
/>
|
||||||
|
<style id="LOG_WIDGET"
|
||||||
|
backgroundImageId="editbox_background_dark"
|
||||||
|
/>
|
||||||
<style id="LIST_BOX"
|
<style id="LIST_BOX"
|
||||||
backgroundImageId="editbox_background_dark"
|
backgroundImageId="editbox_background_dark"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -317,6 +317,18 @@
|
||||||
layoutWidth="FILL_PARENT"
|
layoutWidth="FILL_PARENT"
|
||||||
layoutHeight="FILL_PARENT"
|
layoutHeight="FILL_PARENT"
|
||||||
/>
|
/>
|
||||||
|
<style id="LOG_WIDGET"
|
||||||
|
fontFace="Menlo,Consolas,DejaVuSansMono,DejaVu Sans Mono,Lucida Sans Typewriter,Courier New,Lucida Console"
|
||||||
|
fontSize="9pt"
|
||||||
|
fontFamily="MonoSpace"
|
||||||
|
backgroundImageId="editbox_background"
|
||||||
|
padding="2,2,2,2"
|
||||||
|
margins="2,2,2,2"
|
||||||
|
minWidth="100"
|
||||||
|
minHeight="60"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="FILL_PARENT"
|
||||||
|
/>
|
||||||
<style id="LIST_BOX"
|
<style id="LIST_BOX"
|
||||||
backgroundImageId="editbox_background"
|
backgroundImageId="editbox_background"
|
||||||
padding="2,2,2,2"
|
padding="2,2,2,2"
|
||||||
|
|
Loading…
Reference in New Issue