= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
In memory based API with no external requirements
type point = Import.int * Style.t
include S
with type ctx = point Import.array Import.array
and type style = Style.t
type ctx = point Import.array Import.array
drawing context
type style = Style.t
underlying style type
val rows : ctx -> Import.int
val cols : ctx -> Import.int
val clear : ctx -> Import.unit
clear display
val fill : ctx:ctx -> style:style -> bounds:rect -> Import.char -> Import.unit
fill bounds
with char
given style
val draw_int :
ctx:ctx ->
style:style ->
bounds:rect ->
r:Import.int ->
c:Import.int ->
Import.int ->
Import.unit
draw int (representing unicode value)
val draw_piece :
ctx:ctx ->
style:style ->
bounds:rect ->
r:Import.int ->
c:Import.int ->
piece ->
Import.unit
draw piece
val draw_char :
ctx:ctx ->
style:style ->
bounds:rect ->
r:Import.int ->
c:Import.int ->
Import.char ->
Import.unit
draw char
val draw_string :
ctx:ctx ->
style:style ->
bounds:rect ->
r:Import.int ->
c:Import.int ->
Import.string ->
Import.unit
draw string (nothing fancy - horizontal, no breaks)
val draw_box :
ctx:ctx ->
style:style ->
bounds:rect ->
Import.string ->
Import.unit
draw box outline with label
val get :
ctx:ctx ->
bounds:rect ->
r:Import.int ->
c:Import.int ->
Import.int * Style.t
get value and style at point
val inv : ctx:ctx -> bounds:rect -> r:Import.int -> c:Import.int -> Import.unit
invert fg and bg at point
val bold :
ctx:ctx ->
bounds:rect ->
r:Import.int ->
c:Import.int ->
Import.unit
set bold on point
val init : rows:Import.int -> cols:Import.int -> ctx