CppCMS
|
This class is the base class for any form or form widget used in CppCMS. More...
#include <cppcms/form.h>
Public Member Functions | |
virtual void | render (form_context &context)=0 |
virtual void | load (http::context &context)=0 |
virtual bool | validate ()=0 |
virtual void | clear ()=0 |
virtual void | parent (base_form *subform)=0 |
virtual base_form * | parent ()=0 |
Additional Inherited Members | |
Public Types inherited from cppcms::form_flags | |
enum | html_type { as_html = 0, as_xhtml = 1 } |
enum | html_list_type { as_p = 0, as_table = 1, as_ul = 2, as_dl = 3, as_space = 4 } |
enum | widget_part_type { first_part = 0, second_part = 1 } |
This class is the base class for any form or form widget used in CppCMS.
It provides basic, abstract operations that every widget or form should implement.
|
pure virtual |
Clear the form from all user provided data.
Implemented in cppcms::widgets::select_base, cppcms::widgets::select_multiple, cppcms::widgets::numeric< T >, cppcms::widgets::base_widget, and cppcms::form.
|
pure virtual |
Load the form information from the provided http::context context. A user can call this function to load all information from the raw POST/GET data into the internal widget representation.
Implemented in cppcms::widgets::submit, cppcms::widgets::file, cppcms::widgets::select_base, cppcms::widgets::select_multiple, cppcms::widgets::checkbox, cppcms::widgets::numeric< T >, cppcms::widgets::base_text, and cppcms::form.
|
pure virtual |
Set the parent of this form. Used internally. You should not use it.
Implemented in cppcms::widgets::base_widget, and cppcms::form.
|
pure virtual |
Get the parent of this form. If this is the topmost form, NULL is returned.
Implemented in cppcms::widgets::base_widget, and cppcms::form.
|
pure virtual |
Render the widget to the output set in cppcms::form_context::out() according to the control flags set in cppcms::form_flags. Usually this function is called directly by the template rendering functions.
Implemented in cppcms::widgets::hidden, cppcms::widgets::base_widget, and cppcms::form.
|
pure virtual |
Validate the form according to defined rules. If all checks are OK, true is returned. If some widget or form fails, false is returned.
Implemented in cppcms::widgets::file, cppcms::widgets::select_base, cppcms::widgets::select_multiple, cppcms::widgets::regex_field, cppcms::widgets::password, cppcms::widgets::numeric< T >, cppcms::widgets::base_text, cppcms::widgets::base_widget, and cppcms::form.