#include "menubar.h"
#include "component.h"
Include dependency graph for menubar.c:

Go to the source code of this file.
Functions | |
| void | addMenuBarMenu (MenuBar *menubar, Menu *menu) |
| Adds a Menu to the MenuBar. | |
| void | createMenuBar_ (MenuBar *menubar) |
| Creates the MenuBar by getting the Java MenuBar-Class, the method ids and createing a new Java MenuBar-Object. | |
| void | createMenuBarC (MenuBar_ *menubar) |
| Function is called when working with C and calling the function createMenuBar. | |
| void | createMenuBarCPP (MenuBarCPP_ *menubar) |
| Function is called when working with C++ and calling the function createMenuBar. | |
| void | deleteMenuBar_ (MenuBar *menubar) |
| Deletes the MenuBar by deleting the global references. | |
| void | deleteMenuBarC (MenuBar_ *menubar) |
| Function is called when working with C and calling the function deleteMenuBar. | |
| void | deleteMenuBarCPP (MenuBarCPP_ *menubar) |
| Function is called when working with C++ and calling the function deleteMenuBar. | |
| jint | getMenuBarMenuCount (MenuBar *menubar) |
| Gets the number of items of the MenuBar. | |
| jobject | getMenuBarObject (MenuBar *menubar) |
| Gets the reference to the java menubar object. | |
| void | initMenuBar_ (MenuBar_ *menubar) |
| Initializes the MenuBar_ structure by setting the function pointers. | |
| void | removeMenuBarMenu (MenuBar *menubar, Menu *menu) |
| Removes a Menu from the MenuBar. | |
| void | setMenuBarHelpMenu (MenuBar *menubar, Menu *menu) |
| Sets the Help Menu of the MenuBar. | |
A MenuBar is placed on a Frame and displays all its Menus.
Definition in file menubar.c.
|
||||||||||||
|
Adds a Menu to the MenuBar.
|
|
|
Creates the MenuBar by getting the Java MenuBar-Class, the method ids and createing a new Java MenuBar-Object.
|
|
|
Function is called when working with C and calling the function createMenuBar. It initializes the MenuBar_ structure.
|
|
|
Function is called when working with C++ and calling the function createMenuBar. It initializes the MenuBarCPP_ structure.
|
|
|
Deletes the MenuBar by deleting the global references.
|
|
|
Function is called when working with C and calling the function deleteMenuBar.
|
|
|
Function is called when working with C++ and calling the function deleteMenuBar.
|
|
|
Gets the number of items of the MenuBar.
|
|
|
Gets the reference to the java menubar object.
|
|
|
Initializes the MenuBar_ structure by setting the function pointers.
|
|
||||||||||||
|
Removes a Menu from the MenuBar.
|
|
||||||||||||
|
Sets the Help Menu of the MenuBar.
|
1.4.4