mirror of https://github.com/buggins/dlangide.git
apply ui font changes
This commit is contained in:
parent
8fffaa9e09
commit
a318577f97
|
@ -1354,6 +1354,22 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
FontManager.minAnitialiasedFontSize = settings.minAntialiasedFontSize;
|
FontManager.minAnitialiasedFontSize = settings.minAntialiasedFontSize;
|
||||||
Platform.instance.uiLanguage = settings.uiLanguage;
|
Platform.instance.uiLanguage = settings.uiLanguage;
|
||||||
Platform.instance.uiTheme = settings.uiTheme;
|
Platform.instance.uiTheme = settings.uiTheme;
|
||||||
|
bool needUpdateTheme = false;
|
||||||
|
string oldFontFace = currentTheme.fontFace;
|
||||||
|
string newFontFace = settings.uiFontFace;
|
||||||
|
if (newFontFace == "Default")
|
||||||
|
newFontFace = "Helvetica Neue,Verdana,Arial,DejaVu Sans,Liberation Sans,Helvetica,Roboto,Droid Sans";
|
||||||
|
int oldFontSize = currentTheme.fontSize;
|
||||||
|
if (oldFontFace != newFontFace) {
|
||||||
|
currentTheme.fontFace = newFontFace;
|
||||||
|
needUpdateTheme = true;
|
||||||
|
}
|
||||||
|
if (oldFontSize != settings.uiFontSize) {
|
||||||
|
currentTheme.fontSize = settings.uiFontSize;
|
||||||
|
needUpdateTheme = true;
|
||||||
|
}
|
||||||
|
if (needUpdateTheme)
|
||||||
|
Platform.instance.onThemeChanged();
|
||||||
requestLayout();
|
requestLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -126,6 +126,16 @@ class IDESettings : SettingsFile {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// UI font face
|
||||||
|
@property string uiFontFace() {
|
||||||
|
return uiSettings.getString("uiFontFace", "Default");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// UI font size
|
||||||
|
@property int uiFontSize() {
|
||||||
|
return pointsToPixels(cast(int)uiSettings.getInteger("uiFontSize", 10));
|
||||||
|
}
|
||||||
|
|
||||||
/// text editor setting, true if need to insert spaces instead of tabs
|
/// text editor setting, true if need to insert spaces instead of tabs
|
||||||
@property bool useSpacesForTabs() {
|
@property bool useSpacesForTabs() {
|
||||||
return editorSettings.getBoolean("useSpacesForTabs", true);
|
return editorSettings.getBoolean("useSpacesForTabs", true);
|
||||||
|
|
Loading…
Reference in New Issue