#include "../jnilib.h"
#include "listeners.h"
Include dependency graph for menuitem.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | MenuItem_ |
A structure for C, which describes the MenuItem. More... | |
struct | MenuItemCPP_ |
A structure for C++, which describes the MenuItem. More... | |
struct | MenuItemData |
This structure holds the data needed for the MenuItem for C and C++. More... | |
Defines | |
#define | CLS_MENUITEM "java/awt/MenuItem" |
Defines the full name of the AWT-MenuItem-Class. | |
#define | createMenuItem createMenuItemC |
Defines which function to call when createMenuItem is called. | |
#define | deleteMenuItem deleteMenuItemC |
Defines which function to call when deleteMenuItem is called. | |
Typedefs | |
typedef MenuItem_ | MenuItem |
Defines which structure is used as MenuItem. | |
typedef MenuItem_ | MenuItem_ |
A structure for C, which describes the MenuItem. | |
typedef MenuItemCPP_ | MenuItemCPP_ |
A structure for C++, which describes the MenuItem. | |
typedef MenuItemData | MenuItemData |
This structure holds the data needed for the MenuItem for C and C++. | |
Functions | |
void | createMenuItemC (MenuItem_ *menuitem) |
Function is called when working with C and calling the function createMenuItem. | |
void | createMenuItemCPP (MenuItemCPP_ *menuitem) |
Function is called when working with C++ and calling the function createMenuItem. | |
void | deleteMenuItemC (MenuItem_ *menuitem) |
Function is called when working with C and calling the function deleteMenuItem. | |
void | deleteMenuItemCPP (MenuItemCPP_ *menuitem) |
Function is called when working with C++ and calling the function deleteMenuItem. |
A MenuItem is a simple labeled menu entry. When you label a MenuItem with a "-" it will be displayed as separator.
Definition in file menuitem.h.
|
Defines the full name of the AWT-MenuItem-Class.
Definition at line 22 of file menuitem.h. |
|
Defines which function to call when createMenuItem is called.
Definition at line 34 of file menuitem.h. |
|
Defines which function to call when deleteMenuItem is called.
Definition at line 35 of file menuitem.h. |
|
Defines which structure is used as MenuItem.
Definition at line 33 of file menuitem.h. |
|
A structure for C, which describes the MenuItem.
|
|
A structure for C++, which describes the MenuItem.
|
|
This structure holds the data needed for the MenuItem for C and C++.
|
|
Function is called when working with C and calling the function createMenuItem. It initializes the MenuItem_ structure.
Definition at line 163 of file menuitem.c. |
|
Function is called when working with C++ and calling the function createMenuItem. It initializes the MenuItemCPP_ structure.
Definition at line 151 of file menuitem.c. |
|
Function is called when working with C and calling the function deleteMenuItem.
Definition at line 193 of file menuitem.c. |
|
Function is called when working with C++ and calling the function deleteMenuItem.
Definition at line 183 of file menuitem.c. |