Function
GtkAccelMapforeach
Declaration [src]
void
gtk_accel_map_foreach (
gpointer data,
GtkAccelMapForeach foreach_func
)
Description [src]
Loops over the entries in the accelerator map whose accel path
doesn’t match any of the filters added with gtk_accel_map_add_filter(),
and execute foreach_func on each. The signature of foreach_func is
that of GtkAccelMapForeach, the changed parameter indicates whether
this accelerator was changed during runtime (thus, would need
saving during an accelerator map dump).
Parameters
data-
Type:
gpointerData to be passed into
foreach_func.The argument can be NULL.The data is owned by the caller of the function. foreach_func-
Type:
GtkAccelMapForeachFunction to be executed for each accel map entry which is not filtered out.