page.ch

Declarations

Public Only
Publicstruct HtmlPage
struct HtmlPage
Publicfunction append_html
func append_html(self : &HtmlPage, value : *char, len : size_t) : void
Publicfunction append_html_char_ptr
func append_html_char_ptr(self : &HtmlPage, value : *char) : void
Publicfunction append_html_char
func append_html_char(self : &HtmlPage, value : char) : void
Publicfunction append_html_integer
func append_html_integer(self : &HtmlPage, value : i64) : void
Publicfunction append_html_uinteger
func append_html_uinteger(self : &HtmlPage, value : u64) : void
Publicfunction append_html_float
func append_html_float(self : &HtmlPage, value : float) : void
Publicfunction append_html_double
func append_html_double(self : &HtmlPage, value : double) : void
Publicfunction append_head
func append_head(self : &HtmlPage, value : *char, len : size_t) : void
Publicfunction append_head_char_ptr
func append_head_char_ptr(self : &HtmlPage, value : *char) : void
Publicfunction append_head_char
func append_head_char(self : &HtmlPage, value : char) : void
Publicfunction append_head_integer
func append_head_integer(self : &HtmlPage, value : i64) : void
Publicfunction append_head_uinteger
func append_head_uinteger(self : &HtmlPage, value : u64) : void
Publicfunction append_head_float
func append_head_float(self : &HtmlPage, value : float) : void
Publicfunction append_head_double
func append_head_double(self : &HtmlPage, value : double) : void
Publicfunction append_css
func append_css(self : &HtmlPage, value : *char, len : size_t) : void
Publicfunction require_css_hash
func require_css_hash(self : &HtmlPage, hash : size_t) : bool
Publicfunction set_css_hash
func set_css_hash(self : &HtmlPage, hash : size_t) : void
Publicfunction require_component
func require_component(self : &HtmlPage, hash : size_t) : bool
Publicfunction set_component_hash
func set_component_hash(self : &HtmlPage, hash : size_t) : void
Publicfunction require_random_css_hash
func require_random_css_hash(self : &HtmlPage, hash : size_t) : bool
Publicfunction set_random_css_hash
func set_random_css_hash(self : &HtmlPage, hash : size_t) : void
Publicfunction append_css_char_ptr
func append_css_char_ptr(self : &HtmlPage, value : *char) : void
Publicfunction append_css_char
func append_css_char(self : &HtmlPage, value : char) : void
Publicfunction append_css_integer
func append_css_integer(self : &HtmlPage, value : i64) : void
Publicfunction append_css_uinteger
func append_css_uinteger(self : &HtmlPage, value : u64) : void
Publicfunction append_css_float
func append_css_float(self : &HtmlPage, value : float) : void
Publicfunction append_css_double
func append_css_double(self : &HtmlPage, value : double) : void
Publicfunction append_js
func append_js(self : &HtmlPage, value : *char, len : size_t) : void
Publicfunction append_js_char_ptr
func append_js_char_ptr(self : &HtmlPage, value : *char) : void
Publicfunction append_js_char
func append_js_char(self : &HtmlPage, value : char) : void
Publicfunction append_js_integer
func append_js_integer(self : &HtmlPage, value : i64) : void
Publicfunction append_js_uinteger
func append_js_uinteger(self : &HtmlPage, value : u64) : void
Publicfunction append_js_float
func append_js_float(self : &HtmlPage, value : float) : void
Publicfunction append_js_double
func append_js_double(self : &HtmlPage, value : double) : void
Publicfunction append_head_js
func append_head_js(self : &HtmlPage, value : *char, len : size_t) : void
Publicfunction append_head_js_char_ptr
func append_head_js_char_ptr(self : &HtmlPage, value : *char) : void
Publicfunction append_head_js_char
func append_head_js_char(self : &HtmlPage, value : char) : void
Publicfunction append_head_js_integer
func append_head_js_integer(self : &HtmlPage, value : i64) : void
Publicfunction append_head_js_uinteger
func append_head_js_uinteger(self : &HtmlPage, value : u64) : void
Publicfunction append_head_js_float
func append_head_js_float(self : &HtmlPage, value : float) : void
Publicfunction append_head_js_double
func append_head_js_double(self : &HtmlPage, value : double) : void
Publicfunction toString
func toString(self : &HtmlPage) : string
Publicfunction toStringHeadOnly
func toStringHeadOnly(self : &HtmlPage) : string
Publicfunction toStringHeadJsOnly
func toStringHeadJsOnly(self : &HtmlPage) : string
Publicfunction toStringHtmlOnly
func toStringHtmlOnly(self : &HtmlPage) : string
Publicfunction toStringCssOnly
func toStringCssOnly(self : &HtmlPage) : string
Publicfunction toStringJsOnly
func toStringJsOnly(self : &HtmlPage) : string
Publicfunction appendTitle
func appendTitle(self : &HtmlPage, view : &string_view) : void
Publicfunction appendFavicon
func appendFavicon(self : &HtmlPage, type : &string_view, path : &string_view) : void
Publicfunction appendPngFavicon
func appendPngFavicon(self : &HtmlPage, path : &string_view) : void
Publicfunction appendViewportMeta
func appendViewportMeta(self : &HtmlPage) : void
Publicfunction appendCharsetUTF8Meta
func appendCharsetUTF8Meta(self : &HtmlPage) : void
Publicfunction defaultPrepare
func defaultPrepare(self : &HtmlPage) : void
Publicfunction defaultPreactSetup
func defaultPreactSetup(self : &HtmlPage) : void
Publicfunction defaultDevelopmentReactSetup
func defaultDevelopmentReactSetup(self : &HtmlPage) : void
Publicfunction defaultReactSetup
func defaultReactSetup(self : &HtmlPage) : void
Publicfunction asynchronousSolidSetup
func asynchronousSolidSetup(self : &HtmlPage) : void
Publicfunction defaultSolidSetup
func defaultSolidSetup(self : &HtmlPage) : void
Publicfunction htmlPageToString
func htmlPageToString(self : &HtmlPage, name : &string_view) : string
given name -> {name}.css, {name}_head.js, {name}.js assets are assumed to exist
Publicfunction writeToFile
func writeToFile(self : &HtmlPage, path : &string_view) : void
Publicfunction writeToDirectory
func writeToDirectory(self : &HtmlPage, path : &string_view, name : &string_view) : void
given name -> {name}.css, {name}_head.js, {name}.js assets maybe generated
function make
func make() : HtmlPage
function delete
func delete(self : *HtmlPage) : void