#include "../jnilib.h"
Include dependency graph for label.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | Label_ |
A structure for C, which describes the Label. More... | |
struct | LabelCPP_ |
A structure for C++, which describes the Label. More... | |
struct | LabelData |
This structure holds the data needed for the Label for C and C++. More... | |
Defines | |
#define | CLS_LABEL "java/awt/Label" |
Defines the full name of the AWT-Label-Class. | |
#define | createLabel createLabelC |
Defines which function to call when createLabel is called. | |
#define | deleteLabel deleteLabelC |
Defines which function to call when deleteLabel is called. | |
Typedefs | |
typedef Label_ | Label |
Defines which structure is used as Label. | |
typedef Label_ | Label_ |
A structure for C, which describes the Label. | |
typedef LabelCPP_ | LabelCPP_ |
A structure for C++, which describes the Label. | |
typedef LabelData | LabelData |
This structure holds the data needed for the Label for C and C++. | |
Functions | |
void | createLabelC (Label_ *label) |
Function is called when working with C and calling the function createLabel. | |
void | createLabelCPP (LabelCPP_ *label) |
Function is called when working with C++ and calling the function createLabel. | |
void | deleteLabelC (Label_ *label) |
Function is called when working with C and calling the function deleteLabel. | |
void | deleteLabelCPP (LabelCPP_ *label) |
Function is called when working with C++ and calling the function deleteLabel. |
A Label is a control element, which displays a single line of text. The text can only be changed by the application.
Definition in file label.h.
|
Defines the full name of the AWT-Label-Class.
|
|
Defines which function to call when createLabel is called.
|
|
Defines which function to call when deleteLabel is called.
|
|
Defines which structure is used as Label.
|
|
A structure for C, which describes the Label.
|
|
A structure for C++, which describes the Label.
|
|
This structure holds the data needed for the Label for C and C++.
|
|
Function is called when working with C and calling the function createLabel. It initializes the Label_ structure.
|
|
Function is called when working with C++ and calling the function createLabel. It initializes the LabelCPP_ structure.
|
|
Function is called when working with C and calling the function deleteLabel.
|
|
Function is called when working with C++ and calling the function deleteLabel.
|