Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
html.hh
Go to the documentation of this file.
1/*
2 * File: html.hh
3 *
4 * Copyright (C) 2005-2009 Jorge Arellano Cid <jcid@dillo.org>
5 * Copyright (C) 2024 Rodrigo Arias Mallo <rodarima@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13#ifndef __HTML_HH__
14#define __HTML_HH__
15
16#include "url.h" // for DilloUrl
17
18#ifdef __cplusplus
19extern "C" {
20#endif /* __cplusplus */
21
22/* Keep in sync with the length of the Tags array. It is protected by an
23 * static assert in html.cc to prevent errors) */
24#define HTML_NTAGS 93
25
26/*
27 * Exported functions
28 */
29void a_Html_load_images(void *v_html, DilloUrl *pattern);
30void a_Html_form_submit(void *v_html, void *v_form);
31void a_Html_form_reset(void *v_html, void *v_form);
32void a_Html_form_display_hiddens(void *v_html, void *v_form, bool_t display);
33
34#ifdef __cplusplus
35}
36#endif /* __cplusplus */
37
38
39#endif /* __HTML_HH__ */
unsigned char bool_t
Definition d_size.h:21
void a_Html_form_display_hiddens(void *v_html, void *v_form, bool_t display)
Used by the "Show/Hide hiddens" form menuitem.
Definition html.cc:278
void a_Html_form_submit(void *v_html, void *v_form)
Used by the "Submit form" form menuitem.
Definition html.cc:252
void a_Html_load_images(void *v_html, DilloUrl *pattern)
Used by the "Load images" page menuitem.
Definition html.cc:229
void a_Html_form_reset(void *v_html, void *v_form)
Used by the "Reset form" form menuitem.
Definition html.cc:265
Definition url.h:88
Parse and normalize all URL's inside Dillo.