12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- extern char *safe_strdup (const char *)
- struct widget_xft_data
- typedef struct _widget_instance
- {
- Widget widget
- Widget parent
- Boolean pop_up_p
- struct widget_xft_data *xft_data
- int nr_xft_data
- struct _widget_info* info
- struct _widget_instance* next
- } widget_instance
- typedef struct _widget_info
- {
- char* type
- char* name
- LWLIB_ID id
- widget_value* val
- Boolean busy;
- lw_callback pre_activate_cb
- lw_callback selection_cb
- lw_callback post_activate_cb
- lw_callback highlight_cb
- struct _widget_instance* instances;
- struct _widget_info* next
- } widget_info
- typedef Widget (*widget_creation_function) (widget_instance *instance);
- typedef struct _widget_creation_entry
- {
- char* type
- widget_creation_function function
- } widget_creation_entry
- void
- lw_internal_update_other_instances (Widget, XtPointer, XtPointer)
- widget_value*
- lw_get_widget_value_for_widget (widget_instance *, Widget)
- widget_info *lw_get_widget_info (LWLIB_ID);
- widget_instance * lw_get_widget_instance (Widget)
|