X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scl.ui%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fui%2Feditor2%2FSCLPresentationReconciler.java;h=7a937f8a31a68053a6db27bee4c24697098469d4;hp=b74e35fb29d2da65ced075b24ff40b0204d0a9c2;hb=29bf3f64e43ed153670dfeee6dd4b553d1543016;hpb=1653df0843d89e68b8e476bda2133e781a667c04 diff --git a/bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor2/SCLPresentationReconciler.java b/bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor2/SCLPresentationReconciler.java index b74e35fb2..7a937f8a3 100644 --- a/bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor2/SCLPresentationReconciler.java +++ b/bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor2/SCLPresentationReconciler.java @@ -1,6 +1,7 @@ package org.simantics.scl.ui.editor2; import org.eclipse.jface.resource.FontDescriptor; +import org.eclipse.jface.resource.FontRegistry; import org.eclipse.jface.resource.ResourceManager; import org.eclipse.jface.text.IDocument; import org.eclipse.jface.text.TextAttribute; @@ -17,11 +18,16 @@ import org.eclipse.jface.text.rules.WordRule; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.RGB; +import org.eclipse.ui.PlatformUI; import org.simantics.scl.ui.info.SCLInfo; public class SCLPresentationReconciler extends PresentationReconciler { - private static final FontDescriptor FONT_NORMAL = FontDescriptor.createFrom("Consolas", 10, SWT.NORMAL); //$NON-NLS-1$ - private static final FontDescriptor FONT_BOLD = FontDescriptor.createFrom("Consolas", 10, SWT.BOLD); //$NON-NLS-1$ + + + private final FontRegistry fontRegistry = PlatformUI.getWorkbench().getThemeManager().getCurrentTheme().getFontRegistry(); + + private final FontDescriptor FONT_NORMAL = FontDescriptor.createFrom( fontRegistry.getFontData("org.simantics.scl.editorfont") ); + private final FontDescriptor FONT_BOLD = FONT_NORMAL.setStyle(SWT.BOLD); public SCLPresentationReconciler(ResourceManager resourceManager) { Font font = resourceManager.createFont(FONT_NORMAL); @@ -52,8 +58,8 @@ public class SCLPresentationReconciler extends PresentationReconciler { setDamager(dr, IDocument.DEFAULT_CONTENT_TYPE); } } - - private static ITokenScanner getSclTokenScanner(ResourceManager resourceManager) { + + private ITokenScanner getSclTokenScanner(ResourceManager resourceManager) { RuleBasedScanner scanner = new RuleBasedScanner(); Token defaultToken = new Token(