documentation more consistent
This commit is contained in:
+13
-13
@@ -11,7 +11,7 @@
|
||||
"../wv-input.rkt"
|
||||
"../rgba.rkt"))
|
||||
|
||||
@title{wv-input}
|
||||
@title[#:tag "wv-input"]{wv-input}
|
||||
@author[@author+email["Hans Dijkema" "hans@dijkewijk.nl"]]
|
||||
|
||||
@defmodule[racket-webview/wv-input]
|
||||
@@ -22,7 +22,7 @@ This module exports a family of classes derived from @racket[wv-element%]. Each
|
||||
class represents one DOM input element and provides a typed @racket[get] method
|
||||
together with a @racket[set!] method.
|
||||
|
||||
@section{Overview}
|
||||
@section[#:tag "wv-input-overview"]{Overview}
|
||||
|
||||
All classes in this module inherit from @racket[wv-element%].
|
||||
|
||||
@@ -39,7 +39,7 @@ lower-level DOM/value API from @racketmodname[racket-webview]. Their accepted
|
||||
argument shapes and result values therefore follow the contracts of those
|
||||
lower-level functions.
|
||||
|
||||
@section{Common Structure}
|
||||
@section[#:tag "wv-input-common-structure"]{Common Structure}
|
||||
|
||||
All input wrapper classes have the same constructor shape:
|
||||
|
||||
@@ -56,7 +56,7 @@ Each class provides two public methods:
|
||||
@item{@racket[get], returning the current typed value}
|
||||
@item{@racket[set!], writing a new value through @racket[webview-set-value!]}]
|
||||
|
||||
@section{Class: wv-input/text%}
|
||||
@section[#:tag "wv-input-class-wv-input-text"]{Class: wv-input/text%}
|
||||
|
||||
@defclass[wv-input/text% wv-element% ()]{
|
||||
|
||||
@@ -89,7 +89,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/number%}
|
||||
@section[#:tag "wv-input-class-wv-input-number"]{Class: wv-input/number%}
|
||||
|
||||
@defclass[wv-input/number% wv-element% ()]{
|
||||
|
||||
@@ -122,7 +122,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/boolean%}
|
||||
@section[#:tag "wv-input-class-wv-input-boolean"]{Class: wv-input/boolean%}
|
||||
|
||||
@defclass[wv-input/boolean% wv-element% ()]{
|
||||
|
||||
@@ -155,7 +155,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/date%}
|
||||
@section[#:tag "wv-input-class-wv-input-date"]{Class: wv-input/date%}
|
||||
|
||||
@defclass[wv-input/date% wv-element% ()]{
|
||||
|
||||
@@ -188,7 +188,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/time%}
|
||||
@section[#:tag "wv-input-class-wv-input-time"]{Class: wv-input/time%}
|
||||
|
||||
@defclass[wv-input/time% wv-element% ()]{
|
||||
|
||||
@@ -221,7 +221,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/datetime%}
|
||||
@section[#:tag "wv-input-class-wv-input-datetime"]{Class: wv-input/datetime%}
|
||||
|
||||
@defclass[wv-input/datetime% wv-element% ()]{
|
||||
|
||||
@@ -254,7 +254,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/range%}
|
||||
@section[#:tag "wv-input-class-wv-input-range"]{Class: wv-input/range%}
|
||||
|
||||
@defclass[wv-input/range% wv-element% ()]{
|
||||
|
||||
@@ -287,7 +287,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/check%}
|
||||
@section[#:tag "wv-input-class-wv-input-check"]{Class: wv-input/check%}
|
||||
|
||||
@defclass[wv-input/check% wv-element% ()]{
|
||||
|
||||
@@ -320,7 +320,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/radio%}
|
||||
@section[#:tag "wv-input-class-wv-input-radio"]{Class: wv-input/radio%}
|
||||
|
||||
@defclass[wv-input/radio% wv-element% ()]{
|
||||
|
||||
@@ -353,7 +353,7 @@ Writes @racket[v] by delegating to:
|
||||
}
|
||||
}
|
||||
|
||||
@section{Class: wv-input/color%}
|
||||
@section[#:tag "wv-input-class-wv-input-color"]{Class: wv-input/color%}
|
||||
|
||||
@defclass[wv-input/color% wv-element% ()]{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user