#include "textfield.h"
#include "component.h"
Include dependency graph for textfield.c:

Go to the source code of this file.
| Functions | |
| void | createTextField_ (TextField *textfield) | 
| Creates the TextField by getting the Java TextField-Class, the method ids and createing a new Java TextField-Object. | |
| void | createTextFieldC (TextField_ *textfield) | 
| Function is called when working with C and calling the function createTextField. | |
| void | createTextFieldCPP (TextFieldCPP_ *textfield) | 
| Function is called when working with C++ and calling the function createTextField. | |
| void | deleteTextField_ (TextField *textfield) | 
| Deletes the TextField by deleting the global references. | |
| void | deleteTextFieldC (TextField_ *textfield) | 
| Function is called when working with C and calling the function deleteTextField. | |
| void | deleteTextFieldCPP (TextFieldCPP_ *textfield) | 
| Function is called when working with C++ and calling the function deleteTextField. | |
| jint | getTextFieldColumns (TextField *textfield) | 
| Gets columns of the TextField. | |
| jint | getTextFieldHeight (TextField *textfield) | 
| Gets the height of the TextField. | |
| jobject | getTextFieldObject (TextField *textfield) | 
| Gets the reference to the java textfield object. | |
| char * | getTextFieldText (TextField *textfield) | 
| Gets the Title of the TextField. | |
| jint | getTextFieldWidth (TextField *textfield) | 
| Gets the width of the TextField. | |
| jint | getTextFieldX (TextField *textfield) | 
| Gets the X-Pos of the TextField. | |
| jint | getTextFieldY (TextField *textfield) | 
| Gets the Y-Pos of the TextField. | |
| void | initTextField_ (TextField_ *textfield) | 
| Initializes the TextField_ structure by setting the function pointers. | |
| void | setTextFieldColumns (TextField *textfield, jint columns) | 
| Sets columns of the TextField. | |
| void | setTextFieldLocation (TextField *textfield, jint x, jint y) | 
| Sets the location of the TextField. | |
| void | setTextFieldSize (TextField *textfield, jint width, jint height) | 
| Sets Size of the TextField. | |
| void | setTextFieldText (TextField *textfield, const char *text) | 
| Sets the Title of the TextField. | |
A Textfield allows you to display a single line of text and to interact with the user. The user can edit the text.
Definition in file textfield.c.
| 
 | 
| Creates the TextField by getting the Java TextField-Class, the method ids and createing a new Java TextField-Object. 
 
 Definition at line 196 of file textfield.c. | 
| 
 | 
| Function is called when working with C and calling the function createTextField. It initializes the TextField_ structure. 
 
 Definition at line 224 of file textfield.c. | 
| 
 | 
| Function is called when working with C++ and calling the function createTextField. It initializes the TextFieldCPP_ structure. 
 
 Definition at line 212 of file textfield.c. | 
| 
 | 
| Deletes the TextField by deleting the global references. 
 
 Definition at line 234 of file textfield.c. | 
| 
 | 
| Function is called when working with C and calling the function deleteTextField. 
 
 Definition at line 254 of file textfield.c. | 
| 
 | 
| Function is called when working with C++ and calling the function deleteTextField. 
 
 Definition at line 244 of file textfield.c. | 
| 
 | 
| Gets columns of the TextField. 
 
 
 
 Definition at line 154 of file textfield.c. | 
| 
 | 
| Gets the height of the TextField. 
 
 
 Definition at line 99 of file textfield.c. | 
| 
 | 
| Gets the reference to the java textfield object. 
 
 
 Definition at line 25 of file textfield.c. | 
| 
 | 
| Gets the Title of the TextField. 
 
 
 Definition at line 52 of file textfield.c. | 
| 
 | 
| Gets the width of the TextField. 
 
 
 Definition at line 85 of file textfield.c. | 
| 
 | 
| Gets the X-Pos of the TextField. 
 
 
 Definition at line 127 of file textfield.c. | 
| 
 | 
| Gets the Y-Pos of the TextField. 
 
 
 Definition at line 141 of file textfield.c. | 
| 
 | 
| Initializes the TextField_ structure by setting the function pointers. 
 
 Definition at line 175 of file textfield.c. | 
| 
 | ||||||||||||
| Sets columns of the TextField. 
 
 Definition at line 166 of file textfield.c. | 
| 
 | ||||||||||||||||
| Sets the location of the TextField. 
 
 Definition at line 113 of file textfield.c. | 
| 
 | ||||||||||||||||
| Sets Size of the TextField. 
 
 Definition at line 71 of file textfield.c. | 
| 
 | ||||||||||||
| Sets the Title of the TextField. 
 
 Definition at line 37 of file textfield.c. | 
 1.4.4
 1.4.4