#include "../jnilib.h"
Include dependency graph for menu.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | Menu_ |
A structure for C, which describes the Menu. More... | |
struct | MenuCPP_ |
A structure for C++, which describes the Menu. More... | |
struct | MenuData |
This structure holds the data needed for the Menu for C and C++. More... | |
Defines | |
#define | CLS_MENU "java/awt/Menu" |
Defines the full name of the AWT-Menu-Class. | |
#define | createMenu createMenuC |
Defines which function to call when createMenu is called. | |
#define | deleteMenu deleteMenuC |
Defines which function to call when deleteMenu is called. | |
Typedefs | |
typedef Menu_ | Menu |
Defines which structure is used as Menu. | |
typedef Menu_ | Menu_ |
A structure for C, which describes the Menu. | |
typedef MenuCPP_ | MenuCPP_ |
A structure for C++, which describes the Menu. | |
typedef MenuData | MenuData |
This structure holds the data needed for the Menu for C and C++. | |
Functions | |
void | createMenuC (Menu_ *menu) |
Function is called when working with C and calling the function createMenu. | |
void | createMenuCPP (MenuCPP_ *menu) |
Function is called when working with C++ and calling the function createMenu. | |
void | deleteMenuC (Menu_ *menu) |
Function is called when working with C and calling the function deleteMenu. | |
void | deleteMenuCPP (MenuCPP_ *menu) |
Function is called when working with C++ and calling the function deleteMenu. |
A Menu can hold different MenuItems and is placed on a MenuBar.
Definition in file menu.h.
|
Defines the full name of the AWT-Menu-Class.
|
|
Defines which function to call when createMenu is called.
|
|
Defines which function to call when deleteMenu is called.
|
|
Defines which structure is used as Menu.
|
|
A structure for C, which describes the Menu.
|
|
A structure for C++, which describes the Menu.
|
|
This structure holds the data needed for the Menu for C and C++.
|
|
Function is called when working with C and calling the function createMenu. It initializes the Menu_ structure.
|
|
Function is called when working with C++ and calling the function createMenu. It initializes the MenuCPP_ structure.
|
|
Function is called when working with C and calling the function deleteMenu.
|
|
Function is called when working with C++ and calling the function deleteMenu.
|