Home
last modified time | relevance | path

Searched refs:button_bindings (Results 1 – 11 of 11) sorted by relevance

/dports/x11/mako/mako-1.6/
H A Dconfig.c142 finish_binding(&style->button_bindings.left); in finish_style()
357 if (style->spec.button_bindings.left) { in apply_style()
358 copy_binding(&target->button_bindings.left, &style->button_bindings.left); in apply_style()
359 target->spec.button_bindings.left = true; in apply_style()
361 if (style->spec.button_bindings.middle) { in apply_style()
362 copy_binding(&target->button_bindings.middle, &style->button_bindings.middle); in apply_style()
363 target->spec.button_bindings.middle = true; in apply_style()
365 if (style->spec.button_bindings.right) { in apply_style()
366 copy_binding(&target->button_bindings.right, &style->button_bindings.right); in apply_style()
367 target->spec.button_bindings.right = true; in apply_style()
[all …]
H A Dnotification.c332 return &style->button_bindings.left; in get_button_binding()
334 return &style->button_bindings.right; in get_button_binding()
336 return &style->button_bindings.middle; in get_button_binding()
/dports/games/libmanette/libmanette-0.2.6/src/
H A Dmanette-mapping.c30 GArray *button_bindings; member
67 g_clear_pointer (&self->button_bindings, g_array_unref);
503 append_binding (self->button_bindings, &binding); in set_from_mapping_string()
551 self->button_bindings = g_array_new (FALSE, TRUE, sizeof (GArray *)); in manette_mapping_new()
552 g_array_set_clear_func (self->button_bindings, (GDestroyNotify) g_array_try_free); in manette_mapping_new()
576 type_array = self->button_bindings; in manette_mapping_get_bindings()
652 if (bindings_array_has_destination_input (self->button_bindings, type, code)) in manette_mapping_has_destination_input()
/dports/x11/mako/mako-1.6/include/
H A Dconfig.h49 } button_bindings; member
97 } button_bindings; member
/dports/x11-toolkits/lesstif/lesstif-0.95.2/clients/Motif-2.1/mwm/
H A Dmwmparse.y258 binding: button_bindings
263 button_bindings: BUTTONS_TOK string
267 if (strcmp($2, pscr->button_bindings) == 0)
272 else if (strcmp($2, pscr->button_bindings) == 0) {
H A Dmwmparse.c1831 if (strcmp((yyvsp[(2) - (2)].string), pscr->button_bindings) == 0)
1836 else if (strcmp((yyvsp[(2) - (2)].string), pscr->button_bindings) == 0) {
H A Dmwm.h629 String button_bindings; member
H A Dresources.c440 sizeof(String), Offset(button_bindings),
/dports/audio/ardour6/Ardour-6.8.0/gtk2_ardour/
H A Deditor.cc357 , button_bindings (0) in Editor()
837 button_bindings = new Bindings ("editor-mouse"); in Editor()
842 button_bindings->load_operation (**i); in Editor()
867 delete button_bindings; in ~Editor()
2548 if (button_bindings) { in get_state()
2550 button_bindings->save (*bb); in get_state()
H A Deditor_mouse.cc1465 return button_bindings->activate (b, Gtkmm2ext::Bindings::Press); in button_press_dispatch()
1474 return button_bindings->activate (b, Gtkmm2ext::Bindings::Release); in button_release_dispatch()
H A Deditor.h1226 Gtkmm2ext::Bindings* button_bindings; variable