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
38 static HtmlElement *begin();
39 static HtmlElement *last();
41 static const char *selected(
bool isSelected);
42 static const char *checked(
bool isChecked);
46 explicit HtmlElement(HtmlSection section = HTML_SECTION_FORM);
47 virtual ~HtmlElement();
49 virtual bool handleResponse(
const char *key,
const char *value);
50 virtual void onProcessingEnd();
54 static HtmlElement *firstPtr;
55 HtmlElement *nextPtr =
nullptr;
Definition web_sender.h:26