package incr_dom_partial_render

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Make.ActionSource

Sourcetype t =
  1. | Sort_column_clicked of Column_id.t
    (*

    Moves the current focus in a given direction. If there is no focus it focuses the top or bottom row on moving down and up respectively.

    *)
  2. | Move_focus_row of Util.Focus_dir.t
  3. | Move_focus_col of Util.Focus_dir.t
  4. | Set_focus_row of Row_id.t option
  5. | Set_focus_col of Column_id.t option
  6. | Page_focus_row of Util.Focus_dir.t
include Sexplib0.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Comparable.S with type t := t
Sourceval compare : t -> t -> int
Sourceval sort_column_clicked : Column_id.t -> t
Sourceval move_focus_row : Util.Focus_dir.t -> t
Sourceval move_focus_col : Util.Focus_dir.t -> t
Sourceval set_focus_row : Row_id.t option -> t
Sourceval set_focus_col : Column_id.t option -> t
Sourceval page_focus_row : Util.Focus_dir.t -> t
Sourceval is_sort_column_clicked : t -> bool
Sourceval is_move_focus_row : t -> bool
Sourceval is_move_focus_col : t -> bool
Sourceval is_set_focus_row : t -> bool
Sourceval is_set_focus_col : t -> bool
Sourceval is_page_focus_row : t -> bool
Sourceval sort_column_clicked_val : t -> Column_id.t option
Sourceval move_focus_row_val : t -> Util.Focus_dir.t option
Sourceval move_focus_col_val : t -> Util.Focus_dir.t option
Sourceval set_focus_row_val : t -> Row_id.t option option
Sourceval set_focus_col_val : t -> Column_id.t option option
Sourceval page_focus_row_val : t -> Util.Focus_dir.t option
Sourcemodule Variants : sig ... end