CppCMS
|
This widget is used as base for text input fields. More...
#include <cppcms/form.h>
Public Member Functions | |
std::string | value () |
void | value (std::string v) |
void | non_empty () |
void | limits (int min, int max) |
std::pair< int, int > | limits () |
void | validate_charset (bool) |
bool | validate_charset () |
virtual bool | validate () |
virtual void | load (http::context &) |
Public Member Functions inherited from cppcms::widgets::base_widget | |
base_widget () | |
bool | set () |
bool | valid () |
std::string | id () |
std::string | name () |
locale::message | message () |
bool | has_message () |
locale::message | error_message () |
bool | has_error_message () |
locale::message | help () |
bool | has_help () |
bool | disabled () |
void | disabled (bool) |
bool | readonly () |
void | readonly (bool) |
std::string | attributes_string () |
void | set (bool) |
void | valid (bool) |
void | id (std::string) |
void | name (std::string) |
void | message (std::string) |
void | message (locale::message const &) |
void | error_message (std::string) |
void | error_message (locale::message const &) |
void | help (std::string) |
void | help (locale::message const &msg) |
void | attributes_string (std::string v) |
virtual void | render (form_context &context) |
virtual void | render_input (form_context &context)=0 |
virtual void | clear () |
virtual void | render_attributes (form_context &context) |
virtual void | parent (base_form *subform) |
virtual form * | parent () |
void | pre_load (http::context &) |
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 } |
Protected Member Functions inherited from cppcms::widgets::base_widget | |
void | auto_generate (form_context *context=0) |
This widget is used as base for text input fields.
This widget is used as the base class for other widgets that are used for text input like: text, textarea, etc.
This widget does much more than reading simple text data from the POST or GET form. It also performs charset validation.
void cppcms::widgets::base_text::limits | ( | int | min, |
int | max | ||
) |
Set the minimum and maximum limits of the text size. Note: max == -1 indicates that there is no maximum limit; min==0 indicates that there is no minimum limit.
Note: these numbers represent the length in Unicode code points (even if the encoding is not Unicode). If the character set validation is disabled, then these numbers represent the number of octets in the string.
std::pair<int,int> cppcms::widgets::base_text::limits | ( | ) |
Get the minimum and maximum size limits,
|
virtual |
Load the widget for http::context. It uses the locale given in the context to validate the text.
Implements cppcms::base_form.
void cppcms::widgets::base_text::non_empty | ( | ) |
Inform the validator that this text widget should contain some text. It is similar to limits(1,-1).
|
virtual |
Validate the widget content according to the rules and to the charset encoding.
Notes:
Reimplemented from cppcms::widgets::base_widget.
Reimplemented in cppcms::widgets::regex_field, and cppcms::widgets::password.
void cppcms::widgets::base_text::validate_charset | ( | bool | ) |
Inform the validator whether it should check the validity of the charset. The default is enabled (true).
Generally you should not use this option to disable the charset validation unless you want to load some raw data as form input, or the character set is different from the one defined in the locale.
bool cppcms::widgets::base_text::validate_charset | ( | ) |
Return true if the charset validation is enabled.
std::string cppcms::widgets::base_text::value | ( | ) |
Get the string that contains the input value of the widget.
void cppcms::widgets::base_text::value | ( | std::string | v | ) |
Set the widget content to the value v before rendering.