#include "../jnilib.h"
#include "listeners.h"
Include dependency graph for button.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| struct | Button_ |
| A structure for C, which describes the Button. More... | |
| struct | ButtonCPP_ |
| A structure for C++, which describes the Button. More... | |
| struct | ButtonData |
| This structure holds the data needed for the Button for C and C++. More... | |
Defines | |
| #define | CLS_BUTTON "java/awt/Button" |
| Defines the full name of the AWT-Button-Class. | |
| #define | createButton createButtonC |
| Defines which function to call when createButton is called. | |
| #define | deleteButton deleteButtonC |
| Defines which function to call when deleteButton is called. | |
Typedefs | |
| typedef Button_ | Button |
| Defines which structure is used as Button. | |
| typedef Button_ | Button_ |
| A structure for C, which describes the Button. | |
| typedef ButtonCPP_ | ButtonCPP_ |
| A structure for C++, which describes the Button. | |
| typedef ButtonData | ButtonData |
| This structure holds the data needed for the Button for C and C++. | |
Functions | |
| void | createButtonC (Button_ *button) |
| Function is called when working with C and calling the function createButton. | |
| void | createButtonCPP (ButtonCPP_ *button) |
| Function is called when working with C++ and calling the function createButton. | |
| void | deleteButtonC (Button_ *button) |
| Function is called when working with C and calling the function deleteButton. | |
| void | deleteButtonCPP (ButtonCPP_ *button) |
| Function is called when working with C++ and calling the function deleteButton. | |
A Button is a simple control element with a label. You can push it to cause an event and the application to perform an action.
Definition in file button.h.
|
|
Defines the full name of the AWT-Button-Class.
|
|
|
Defines which function to call when createButton is called.
|
|
|
Defines which function to call when deleteButton is called.
|
|
|
Defines which structure is used as Button.
|
|
|
A structure for C, which describes the Button.
|
|
|
A structure for C++, which describes the Button.
|
|
|
This structure holds the data needed for the Button for C and C++.
|
|
|
Function is called when working with C and calling the function createButton. It initializes the Button_ structure.
|
|
|
Function is called when working with C++ and calling the function createButton. It initializes the ButtonCPP_ structure.
|
|
|
Function is called when working with C and calling the function deleteButton.
|
|
|
Function is called when working with C++ and calling the function deleteButton.
|
1.4.4