refactor, sixel performance
[fanfix.git] / src / jexer / backend / Screen.java
index 41c07562ed2c67089adb7591472899cc499de8de..2d9cd65459d6ed5f9740a5abad4a1825e1ba06c2 100644 (file)
@@ -395,4 +395,18 @@ public interface Screen {
      */
     public void setTitle(final String title);
 
+    /**
+     * Get the width of a character cell in pixels.
+     *
+     * @return the width in pixels of a character cell
+     */
+    public int getTextWidth();
+
+    /**
+     * Get the height of a character cell in pixels.
+     *
+     * @return the height in pixels of a character cell
+     */
+    public int getTextHeight();
+
 }