static unsigned int get_repeat_wait(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_repeat_wait);
   if (get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_general_unlimited_key_repeat_rate)) {
     return getvalue(v, 1);
   } else {
     return getvalue(v, 5);
   }
 }
 static unsigned int get_fixed_distance_magnification(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_fixed_distance_magnification);
   return getvalue(v, 0);
 }
 static unsigned int get_mousekey_high_speed_of_scroll(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_mousekey_high_speed_of_scroll);
   return getvalue(v, 0);
 }
 static unsigned int get_holdingkeytokey_wait(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_holdingkeytokey_wait);
   return getvalue(v, 10);
 }
 static unsigned int get_simultaneouskeypresses_pointingbutton_delay(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_simultaneouskeypresses_pointingbutton_delay);
   return getvalue(v, 5, 1000);
 }
 static unsigned int get_keyoverlaidmodifier_timeout(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_keyoverlaidmodifier_timeout);
   return getvalue(v, 0);
 }
 static unsigned int get_keyoverlaidmodifier_initial_wait(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_repeat_keyoverlaidmodifier_initial_wait);
   return getvalue(v, 200);
 }
 static unsigned int get_wait_before_and_after_a_click_event(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_wait_before_and_after_a_click_event);
   return getvalue(v, 0, 100);
 }
 static unsigned int get_repeat_consumer_wait(void) {
   int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_repeat_consumer_wait);
   return getvalue(v, 10);
 }
Exemple #10
0
 static unsigned int get_mousekey_repeat_wait_of_pointer(void) {
     int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_mousekey_repeat_wait_of_pointer);
     return getvalue(v, 0);
 }
Exemple #11
0
 static unsigned int get_ignore_bouncing_threshold_for_mice(void) {
     int v = get_essential_config(BRIDGE_ESSENTIAL_CONFIG_INDEX_parameter_ignore_bouncing_threshold_for_mice);
     return getvalue(v, 0, 1000);
 }