This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Bounds-Related Classes
Containers
Controls-Related Classes
Core Library
Engine-Related Classes
Node-Related Classes
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
Rendering-Related Classes
Utility Classes
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

WidgetEditLine Class

Interface for widget editline handling. See also UnigineScript analog.

To use this class, include the UnigineWidgetEditLine.h file.

WidgetEditLine Class

Members


WidgetEditLine (const Ptr<Gui> & gui, const char * str = 0)

Constructor. Creates a text field.

Arguments

  • const Ptr<Gui> & gui - GUI, to which the text field will belong.
  • const char * str - Initial value. This is an optional parameter.

int getValidator ()

Returns the validator associated with the text field. The default is VALIDATOR_ANY.

Return value

One of the Gui:: Enumeration with VALIDATOR_* prefixes.

void setValidator (int validator)

Sets a validator for the text filed contents.

Arguments

  • int validator - One of the Gui:: Enumeration with VALIDATOR_* prefixes.

int getCapacity ()

Returns the maximum length of a string entered into the text field.

Return value

Maximum number of characters. The default is 1024.

int isEditable ()

Returns a value indicating if the contents of the text field can be edited. The default is 1.

Return value

Positive number if the text field contents can be edited; otherwise, 0.

void setCapacity (int capacity)

Sets a maximum length of a string entered into the text field. The default is 1024.

Arguments

  • int capacity - Maximum number of characters.

int getSelection ()

Returns a position, from which the selection starts.

Return value

Position, from which the selection starts.

void setPassword (int password)

Turns the widget into a generic text field or into a password field. The default is 0.

Arguments

  • int password - Positive number to make the widget a password field, 0 to make it a generic text field.

void setCursor (int cursor)

Sets a cursor position in the text field.

Arguments

  • int cursor - Cursor position. The provided value will be saturated in the range from 0 to text field capacity.

Ptr<WidgetEditLine> create (const Ptr<Widget> & widget)

WidgetEditLine constructor.

Arguments

  • const Ptr<Widget> & widget - Widget smart pointer.

Return value

int type ()

WidgetEditLine type.

Return value

WidgetEditLine type identifier.

void clearSelectionText ()

Deletes currently selected text.

void setText (const char * text)

Sets a text for the text field.

Arguments

  • const char * text - Text string.

int isPassword ()

Returns a value indicating if the text field is a password field (all entered characters show up as dots).

Return value

Positive number if the widget is a password field; otherwise, 0. The default is 0.

const char * getText ()

Returns the current contents of the text field.

Return value

Text string.

void setBackground (int background)

Sets a value indicating if a background texture should be rendered for the text field. The default is 1.

Arguments

  • int background - Positive number to render a background texture, 0 not to render.

void setEditable (int editable)

Sets a value indicating if the contents of the text field can be edited. The default is 1.

Arguments

  • int editable - Positive number to make the text field editable, 0 to make it read-only.

int getCursor ()

Returns the current cursor position in the text field.

Return value

Cursor position.

int getBackground ()

Returns a value indicating if a background texture is rendered for the text field.

Return value

Positive number if a background texture is rendered; otherwise, 0. The default is 1.

void setSelection (int selection)

Sets a position, from which a new selection will start.

Arguments

  • int selection - Position, from which the selection will start.

String getSelectionText ()

Returns currently selected text.

Return value

Currently selected text.
Last update: 2017-07-03
Build: ()