CharlesSkelton / studio

Studio for kdb+ / Rapid execution environment for q
Apache License 2.0
94 stars 61 forks source link

Font #17

Closed heshriti closed 4 years ago

heshriti commented 4 years ago

Hi Charles.

Is it possible to customize the font type/size in the editor ?

CharlesSkelton commented 4 years ago

if my memory serves me correctly, in $HOME/.studioforkdb/studio.properties there are 2 font related entries font.size=14 font.name=Monospaced

these cannot be changed directly from within studio. First exit studio, and then use an editor such as vi to change them to your liking. You can list available java fonts via

$ cat ListJavaFonts.java import java.awt.GraphicsEnvironment; public class ListJavaFonts{ public static void main(String[] args){ String fonts[]=GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames(); for(int i=0;i<fonts.length;i++) System.out.println(fonts[i]); } } $ javac ListJavaFonts.java $ java -cp . ListJavaFonts

heshriti commented 4 years ago

Is it possible to change the table view fonts? Specifically, I'd like to set the font family where zero are "slashed" or "open", as opposed to "dotted zeroes" which is what I have now.

I tried to change the Config. Java: as follows:

String name = p.getProperty("font.name", "Inconsolata"); int size = Integer.parseInt(p.getProperty("font.size","14"));

That didn't really change the table view font.

heshriti commented 4 years ago

Ok, Got it.

It is actually in the other file: src/studio/core/Studio.java

UIManager.put("Table.font",new javax.swing.plaf.FontUIResource("Inconsolata",Font.PLAIN,UIManager.getFont("Table.font").getSize()));

Not sure I like it though.. But at least it's possible to customize.

Thank you..