CicmWrapper
Beta 0.4
A wrapper for Pure Data
|
Data Structures | |
struct | t_epopup |
The popup structure. More... | |
Functions | |
t_epopup * | epopupmenu_create (t_eobj *x, t_symbol *name) |
The t_epopup creation function. More... | |
void | epopupmenu_setfont (t_epopup *popup, t_efont *font) |
Sets the font of a t_epopup. More... | |
void | epopupmenu_additem (t_epopup *popup, int itemid, const char *text, char checked, char disabled) |
Adds a new item in the popup list. More... | |
void | epopupmenu_addseperator (t_epopup *popup) |
Adds a new seprator in the popup list. More... | |
void | epopupmenu_popup (t_epopup *popup, t_pt pos) |
Shows the popup on the screen. More... | |
The t_epopup part.
This part refers to the methods and structures that can be used by all the t_epopup structures.
struct t_epopup |
void epopupmenu_additem | ( | t_epopup * | popup, |
int | itemid, | ||
const char * | text, | ||
char | checked, | ||
char | disabled | ||
) |
Adds a new item in the popup list.
popup | The t_epopup pointer. |
itemid | The id of the item. |
text | The text of the item. |
checked | If the item is marked as checked or not. |
disabled | If the item is marked as disabled or not. |
void epopupmenu_addseperator | ( | t_epopup * | popup | ) |
Adds a new seprator in the popup list.
popup | The t_epopup pointer. |