19#ifndef SRC_SUPLA_NETWORK_HTML_ELEMENT_H_
20#define SRC_SUPLA_NETWORK_HTML_ELEMENT_H_
28 HTML_SECTION_DEVICE_INFO,
30 HTML_SECTION_PROTOCOL,
31 HTML_SECTION_BETA_FORM,
32 HTML_SECTION_BUTTON_BEFORE,
33 HTML_SECTION_BUTTON_AFTER,
39 static HtmlElement *begin();
40 static HtmlElement *last();
42 static const char *selected(
bool isSelected);
43 static const char *checked(
bool isChecked);
47 explicit HtmlElement(HtmlSection section = HTML_SECTION_FORM);
48 virtual ~HtmlElement();
50 virtual bool handleResponse(
const char *key,
const char *value);
51 virtual void onProcessingEnd();
55 static HtmlElement *firstPtr;
56 HtmlElement *nextPtr =
nullptr;
Definition web_sender.h:28