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

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

Go to the source code of this file.
Data Structures | |
| struct | Panel_ |
| A structure for C, which describes the Panel. More... | |
| struct | PanelCPP_ |
| A structure for C++, which describes the Panel. More... | |
| struct | PanelData |
| This structure holds the data needed for the Panel for C and C++. More... | |
Defines | |
| #define | CLS_PANEL "java/awt/Panel" |
| Defines the full name of the Panel-Class. | |
| #define | createPanel createPanelC |
| Defines which function to call when createPanel is called. | |
| #define | deletePanel deletePanelC |
| Defines which function to call when deletePanel is called. | |
Typedefs | |
| typedef Panel_ | Panel |
| Defines which structure is used as Panel. | |
| typedef Panel_ | Panel_ |
| A structure for C, which describes the Panel. | |
| typedef PanelCPP_ | PanelCPP_ |
| A structure for C++, which describes the Panel. | |
| typedef PanelData | PanelData |
| This structure holds the data needed for the Panel for C and C++. | |
Functions | |
| void | createPanelC (Panel_ *panel) |
| Function is called when working with C and calling the function createPanel. | |
| void | createPanelCPP (PanelCPP_ *panel) |
| Function is called when working with C++ and calling the function createPanel. | |
| void | deletePanelC (Panel_ *panel) |
| Function is called when working with C and calling the function deletePanel. | |
| void | deletePanelCPP (PanelCPP_ *panel) |
| Function is called when working with C++ and calling the function deletePanel. | |
A Panel is a container where you can place control elements. A Panel has the FlowLayout as standard LayoutManager.
Definition in file panel.h.
|
|
Defines the full name of the Panel-Class.
|
|
|
Defines which function to call when createPanel is called.
|
|
|
Defines which function to call when deletePanel is called.
|
|
|
Defines which structure is used as Panel.
|
|
|
A structure for C, which describes the Panel.
|
|
|
A structure for C++, which describes the Panel.
|
|
|
This structure holds the data needed for the Panel for C and C++.
|
|
|
Function is called when working with C and calling the function createPanel. It initializes the Panel_ structure.
|
|
|
Function is called when working with C++ and calling the function createPanel. It initializes the PanelCPP_ structure.
|
|
|
Function is called when working with C and calling the function deletePanel.
|
|
|
Function is called when working with C++ and calling the function deletePanel.
|
1.4.4