#include "textarea.h"
#include "component.h"
Include dependency graph for textarea.c:
Go to the source code of this file.
Functions | |
void | createTextArea_ (TextArea *textarea) |
Creates the TextArea by getting the Java TextArea-Class, the method ids and createing a new Java TextArea-Object. | |
void | createTextAreaC (TextArea_ *textarea) |
Function is called when working with C and calling the function createTextArea. | |
void | createTextAreaCPP (TextAreaCPP_ *textarea) |
Function is called when working with C++ and calling the function createTextArea. | |
void | deleteTextArea_ (TextArea *textarea) |
Deletes the TextArea by deleting the global references. | |
void | deleteTextAreaC (TextArea_ *textarea) |
Function is called when working with C and calling the function deleteTextArea. | |
void | deleteTextAreaCPP (TextAreaCPP_ *textarea) |
Function is called when working with C++ and calling the function deleteTextArea. | |
jint | getTextAreaColumns (TextArea *textarea) |
Gets columns of the TextArea. | |
jint | getTextAreaHeight (TextArea *textarea) |
Gets the height of the TextArea. | |
jobject | getTextAreaObject (TextArea *textarea) |
Gets the reference to the java textarea object. | |
jint | getTextAreaRows (TextArea *textarea) |
Gets rows of the TextArea. | |
char * | getTextAreaText (TextArea *textarea) |
Gets the Title of the TextArea. | |
jint | getTextAreaWidth (TextArea *textarea) |
Gets the width of the TextArea. | |
jint | getTextAreaX (TextArea *textarea) |
Gets the X-Pos of the TextArea. | |
jint | getTextAreaY (TextArea *textarea) |
Gets the Y-Pos of the TextArea. | |
void | initTextArea_ (TextArea_ *textarea) |
Initializes the TextArea_ structure by setting the function pointers. | |
void | setTextAreaColumns (TextArea *textarea, jint columns) |
Sets columns of the TextArea. | |
void | setTextAreaLocation (TextArea *textarea, jint x, jint y) |
Sets the location of the TextArea. | |
void | setTextAreaRows (TextArea *textarea, jint rows) |
Sets rows of the TextArea. | |
void | setTextAreaSize (TextArea *textarea, jint width, jint height) |
Sets Size of the TextArea. | |
void | setTextAreaText (TextArea *textarea, const char *text) |
Sets the Title of the TextArea. |
A Textarea allows you to display multiple lines of text and to interact with the user. The user can edit the text.
Definition in file textarea.c.
|
Creates the TextArea by getting the Java TextArea-Class, the method ids and createing a new Java TextArea-Object.
Definition at line 223 of file textarea.c. |
|
Function is called when working with C and calling the function createTextArea. It initializes the TextArea_ structure.
Definition at line 253 of file textarea.c. |
|
Function is called when working with C++ and calling the function createTextArea. It initializes the TextAreaCPP_ structure.
Definition at line 241 of file textarea.c. |
|
Deletes the TextArea by deleting the global references.
Definition at line 263 of file textarea.c. |
|
Function is called when working with C and calling the function deleteTextArea.
Definition at line 283 of file textarea.c. |
|
Function is called when working with C++ and calling the function deleteTextArea.
Definition at line 273 of file textarea.c. |
|
Gets columns of the TextArea.
Definition at line 154 of file textarea.c. |
|
Gets the height of the TextArea.
Definition at line 99 of file textarea.c. |
|
Gets the reference to the java textarea object.
Definition at line 25 of file textarea.c. |
|
Gets rows of the TextArea.
Definition at line 179 of file textarea.c. |
|
Gets the Title of the TextArea.
Definition at line 52 of file textarea.c. |
|
Gets the width of the TextArea.
Definition at line 85 of file textarea.c. |
|
Gets the X-Pos of the TextArea.
Definition at line 127 of file textarea.c. |
|
Gets the Y-Pos of the TextArea.
Definition at line 141 of file textarea.c. |
|
Initializes the TextArea_ structure by setting the function pointers.
Definition at line 200 of file textarea.c. |
|
Sets columns of the TextArea.
Definition at line 166 of file textarea.c. |
|
Sets the location of the TextArea.
Definition at line 113 of file textarea.c. |
|
Sets rows of the TextArea.
Definition at line 191 of file textarea.c. |
|
Sets Size of the TextArea.
Definition at line 71 of file textarea.c. |
|
Sets the Title of the TextArea.
Definition at line 37 of file textarea.c. |