#include "../jnilib.h"
#include "listeners.h"
Include dependency graph for choice.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | Choice_ |
A structure for C, which describes the Choice. More... | |
struct | ChoiceCPP_ |
A structure for C++, which describes the Choice. More... | |
struct | ChoiceData |
This structure holds the data needed for the Choice for C and C++. More... | |
Defines | |
#define | CLS_CHOICE "java/awt/Choice" |
Defines the full name of the AWT-Choice-Class. | |
#define | createChoice createChoiceC |
Defines which function to call when createChoice is called. | |
#define | deleteChoice deleteChoiceC |
Defines which function to call when deleteChoice is called. | |
Typedefs | |
typedef Choice_ | Choice |
Defines which structure is used as Choice. | |
typedef Choice_ | Choice_ |
A structure for C, which describes the Choice. | |
typedef ChoiceCPP_ | ChoiceCPP_ |
A structure for C++, which describes the Choice. | |
typedef ChoiceData | ChoiceData |
This structure holds the data needed for the Choice for C and C++. | |
Functions | |
void | createChoiceC (Choice_ *choice) |
Function is called when working with C and calling the function createChoice. | |
void | createChoiceCPP (ChoiceCPP_ *choice) |
Function is called when working with C++ and calling the function createChoice. | |
void | deleteChoiceC (Choice_ *choice) |
Function is called when working with C and calling the function deleteChoice. | |
void | deleteChoiceCPP (ChoiceCPP_ *choice) |
Function is called when working with C++ and calling the function deleteChoice. |
A Choice represents a popup-menu of values. You can choose only one of these values which will be displayed permanently.
Definition in file choice.h.
|
Defines the full name of the AWT-Choice-Class.
|
|
Defines which function to call when createChoice is called.
|
|
Defines which function to call when deleteChoice is called.
|
|
Defines which structure is used as Choice.
|
|
A structure for C, which describes the Choice.
|
|
A structure for C++, which describes the Choice.
|
|
This structure holds the data needed for the Choice for C and C++.
|
|
Function is called when working with C and calling the function createChoice. It initializes the Choice_ structure.
|
|
Function is called when working with C++ and calling the function createChoice. It initializes the ChoiceCPP_ structure.
|
|
Function is called when working with C and calling the function deleteChoice.
|
|
Function is called when working with C++ and calling the function deleteChoice.
|