#include "checkboxgroup.h"
Include dependency graph for checkboxgroup.c:
Go to the source code of this file.
Functions | |
void | createCheckBoxGroup_ (CheckBoxGroup *checkboxgroup) |
Creates the CheckBoxGroup by getting the Java CheckBoxGroup-Class, the method ids and createing a new Java CheckBoxGroup-Object. | |
void | createCheckBoxGroupC (CheckBoxGroup_ *checkboxgroup) |
Function is called when working with C and calling the function createCheckBoxGroup. | |
void | createCheckBoxGroupCPP (CheckBoxGroupCPP_ *checkboxgroup) |
Function is called when working with C++ and calling the function createCheckBoxGroup. | |
void | deleteCheckBoxGroup_ (CheckBoxGroup *checkboxgroup) |
Deletes the CheckBoxGroup by deleting the global references. | |
void | deleteCheckBoxGroupC (CheckBoxGroup_ *checkboxgroup) |
Function is called when working with C and calling the function deleteCheckBoxGroup. | |
void | deleteCheckBoxGroupCPP (CheckBoxGroupCPP_ *checkboxgroup) |
Function is called when working with C++ and calling the function deleteCheckBoxGroup. | |
void | initCheckBoxGroup_ (CheckBoxGroup_ *checkboxgroup) |
Initializes the CheckBoxGroup_ structure by setting the function pointers. | |
void | setCheckBoxGroupSelectedCheckBox (CheckBoxGroup *checkboxgroup, CheckBox *checkbox) |
Sets a checkbox as selected in the CheckBoxGroup. |
A Checkboxgroup groups Checkboxes. Only one of these Checkboxes can be selected at a time.
Definition in file checkboxgroup.c.
|
Creates the CheckBoxGroup by getting the Java CheckBoxGroup-Class, the method ids and createing a new Java CheckBoxGroup-Object.
Definition at line 42 of file checkboxgroup.c. |
|
Function is called when working with C and calling the function createCheckBoxGroup. It initializes the CheckBoxGroup_ structure.
Definition at line 67 of file checkboxgroup.c. |
|
Function is called when working with C++ and calling the function createCheckBoxGroup. It initializes the CheckBoxGroupCPP_ structure.
Definition at line 55 of file checkboxgroup.c. |
|
Deletes the CheckBoxGroup by deleting the global references.
Definition at line 77 of file checkboxgroup.c. |
|
Function is called when working with C and calling the function deleteCheckBoxGroup.
Definition at line 97 of file checkboxgroup.c. |
|
Function is called when working with C++ and calling the function deleteCheckBoxGroup.
Definition at line 87 of file checkboxgroup.c. |
|
Initializes the CheckBoxGroup_ structure by setting the function pointers.
Definition at line 32 of file checkboxgroup.c. |
|
Sets a checkbox as selected in the CheckBoxGroup.
Definition at line 23 of file checkboxgroup.c. |