Files
FlatLaf/flatlaf-fonts/flatlaf-fonts-roboto-mono
Karl Tauber 97018df2f9 added Error Prone (https://errorprone.info/) and fixed reported errors and warnings
- CI runs Error Prone with Java 11
- use Gradle task `errorprone` to run it on development machine
- fixes are mostly cosmetic except:
  - use Locale.ENGLISH for String.toLowerCase()
  - use explicit character encoding when reading/writing files
  - TabbedPane: wrong logic in mouse-wheel scrolling
  - SplitPane: simplified property change listener (fixes hiding field `propertyChangeListener` of superclass)
2023-05-19 22:58:12 +02:00
..

Roboto Mono font

This sub-project contains fonts from the Roboto Mono font family and bundles them into an easy-to-use and redistributable JAR.

Font home page: https://fonts.google.com/specimen/Roboto+Mono

GitHub project: https://github.com/googlefonts/RobotoMono

License: Apache License, Version 2.0

How to install?

Invoke following once (e.g. in your main() method; on AWT thread).

For lazy loading use:

FlatRobotoMonoFont.installLazy();

Or load immediately with:

FlatRobotoMonoFont.install();

How to use?

Use as application monospaced font (invoke before setting up FlatLaf):

FlatLaf.setPreferredMonospacedFontFamily( FlatRobotoMonoFont.FAMILY );

Create single fonts:

// basic styles
new Font( FlatRobotoMonoFont.FAMILY, Font.PLAIN, 12 );
new Font( FlatRobotoMonoFont.FAMILY, Font.ITALIC, 12 );
new Font( FlatRobotoMonoFont.FAMILY, Font.BOLD, 12 );
new Font( FlatRobotoMonoFont.FAMILY, Font.BOLD | Font.ITALIC, 12 );

If using lazy loading, invoke one of following before creating the font:

FontUtils.loadFontFamily( FlatRobotoMonoFont.FAMILY );

E.g.:

FontUtils.loadFontFamily( FlatRobotoMonoFont.FAMILY );
Font font = new Font( FlatRobotoMonoFont.FAMILY, Font.PLAIN, 12 );

Or use following:

Font font = FontUtils.getCompositeFont( FlatRobotoMonoFont.FAMILY, Font.PLAIN, 12 );

Download

FlatLaf Fonts binaries are available on Maven Central.

If you use Maven or Gradle, add a dependency with following coordinates to your build script:

groupId:     com.formdev
artifactId:  flatlaf-fonts-roboto-mono
version:     (see button below)

Otherwise download flatlaf-fonts-roboto-mono-<version>.jar here:

Maven Central