24#ifndef HTML_FORM_FIELDSET_HPP
25#define HTML_FORM_FIELDSET_HPP
38#include "body_builder.hpp"
39#include "html_legend.hpp"
60 void change_label(
const std::string & label) { legend.change_label(label); };
61 const std::string get_label()
const {
return legend.get_label(); };
73 virtual void bind_to_anchor(
const std::string & val)
override { update_anchor(val); };
90 std::string bounded_anchor;
92 void update_anchor(
const std::string & val);
class body_builder is the root class of object generating HTML body
Definition: body_builder.hpp:99
void adopt(body_builder *obj)
Definition: body_builder.cpp:117
void remove_css_class(const std::string &name)
remove the provided css_class name from the list of css_class names this object has been assigned to
Definition: body_builder.cpp:273
void orphan_all_children()
orphan all adopted children
Definition: body_builder.cpp:552
void add_css_class(const std::string &name)
set this object with a additional css_class (assuming it is defined in a css_library available for th...
Definition: body_builder.cpp:247
class chemin definition
Definition: chemin.hpp:51
class html_legend implements HTML legend feature
Definition: html_legend.hpp:45
class holding fields of an HTTP request (method, URI, header, cookies, and so on)
Definition: request.hpp:45