Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Editor
type 'a editor = {
editor_div : Js_of_ocaml.Dom_html.divElement Js_of_ocaml.Js.t;
editor : ('a editor * 'a option) Ace_types.editor Js_of_ocaml.Js.t;
mutable marks : int list;
}
val ace : unit -> Ace_types.ace Js_of_ocaml.Js.t
val edit :
Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t ->
'a Ace_types.editor Js_of_ocaml.Js.t
val create_position : int -> int -> Ace_types.position Js_of_ocaml.Js.t
val greater_position :
< column : < get : 'res.. > Js_of_ocaml.Js.gen_prop
; row : < get : 'res0.. > Js_of_ocaml.Js.gen_prop.. >
Js_of_ocaml.Js.t ->
< column : < get : 'res.. > Js_of_ocaml.Js.gen_prop
; row : < get : 'res0.. > Js_of_ocaml.Js.gen_prop.. >
Js_of_ocaml.Js.t ->
bool
val create_range :
Ace_types.position Js_of_ocaml.Js.t ->
Ace_types.position Js_of_ocaml.Js.t ->
Ace_types.range Js_of_ocaml.Js.t
val read_position :
< column : < get : 'res.. > Js_of_ocaml.Js.gen_prop
; row : < get : 'res0.. > Js_of_ocaml.Js.gen_prop.. >
Js_of_ocaml.Js.t ->
'res0 * 'res
val read_range :
< end_ :
< get :
< column : < get : 'res.. > Js_of_ocaml.Js.gen_prop
; row : < get : 'res0.. > Js_of_ocaml.Js.gen_prop.. >
Js_of_ocaml.Js.t.. >
Js_of_ocaml.Js.gen_prop
; start :
< get :
< column : < get : 'res1.. > Js_of_ocaml.Js.gen_prop
; row : < get : 'res2.. > Js_of_ocaml.Js.gen_prop.. >
Js_of_ocaml.Js.t.. >
Js_of_ocaml.Js.gen_prop.. >
Js_of_ocaml.Js.t ->
('res2 * 'res1) * ('res0 * 'res)
val get_contents :
?range:Ace_types.range Js_of_ocaml.Js.t ->
'a editor ->
string
val set_contents : 'a editor -> string -> unit
val get_selection_range : 'a editor -> Ace_types.range Js_of_ocaml.Js.t
val get_selection : 'a editor -> string
val get_line : 'a editor -> int -> string
val create_editor : Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t -> 'a editor
val get_custom_data : 'a editor -> 'a
val set_custom_data : 'a editor -> 'a -> unit
val set_mode : 'a editor -> string -> unit
val set_theme : 'a editor -> string -> unit
module Mark_type : sig ... end
include module type of struct include Mark_type end
val string_of_make_type : mark_type -> string
type range = Ace_types.range Js_of_ocaml.Js.t
val range : 'a -> 'b -> 'c -> 'd -> range
val set_background_color : 'a editor -> string -> unit
val add_class : 'a editor -> string -> unit
val remove_class : 'a editor -> string -> unit
val clear_marks : 'a editor -> unit
val record_event_handler : 'a editor -> string -> (unit -> unit) -> unit
val focus : 'a editor -> unit
val resize : 'a editor -> bool -> unit
val show_keybindings : 'a editor -> unit
Mode
type token = Ace_types.token Js_of_ocaml.Js.t
val token : type_:string -> string -> Ace_types.token Js_of_ocaml.Js.t
type doc = Ace_types.document Js_of_ocaml.Js.t
type 'state helpers = {
initial_state : unit -> 'state;
get_next_line_indent : 'state -> line:string -> tab:string -> string;
get_line_tokens : string -> 'state -> int -> doc -> 'state * token list;
check_outdent : ('state -> string -> string -> bool) option;
auto_outdent : ('state ->
Ace_types.document Js_of_ocaml.Js.t ->
int ->
unit)
option;
}
val create_js_line_tokens :
('t122 * Ace_types.token Js_of_ocaml.Js.t list) ->
't122 Ace_types.line_tokens Js_of_ocaml.Js.t
val define_mode : string -> 'a helpers -> 'b
val set_font_size : 'a editor -> int -> unit
val set_tab_size : 'a editor -> int -> unit
val get_state : 'a editor -> int -> < .. > Js_of_ocaml.Js.t
val get_last : 'a editor -> Ace_types.position Js_of_ocaml.Js.t
val document : 'a editor -> Ace_types.document Js_of_ocaml.Js.t
val replace :
< replace :
't152 ->
Js_of_ocaml.Js.js_string Js_of_ocaml.Js.t ->
'res Js_of_ocaml.Js.meth.. >
Js_of_ocaml.Js.t ->
't152 ->
string ->
'res
val delete :
< replace :
't155 ->
Js_of_ocaml.Js.js_string Js_of_ocaml.Js.t ->
'res Js_of_ocaml.Js.meth.. >
Js_of_ocaml.Js.t ->
't155 ->
'res
val remove : 'a editor -> unit