decorations (including those for which the server-side titlebar has been
hidden) are not eligible for shading.
+*<action name="ToggleTabletMouseEmulation">*
+ Toggle mouse emulation for drawing tablets on or off.
+
*<action name="ToggleMagnify">*
Toggle the screen magnifier on or off at the last magnification level
used.
tablet specific restrictions, e.g. no support for drag-and-drop, but
also omits tablet specific features like reporting pen pressure.
+ Use the *ToggleTabletMouseEmulation* action for toggling between
+ mouse emulation on and off.
+
*<tablet><map button="" to="" />*
Pen and pad buttons behave like regular mouse buttons.With mouse
emulation set to "no", which is the default, and if not specified
ACTION_TYPE_SHADE,
ACTION_TYPE_UNSHADE,
ACTION_TYPE_TOGGLE_SHADE,
+ ACTION_TYPE_TOGGLE_TABLET_MOUSE_EMULATION,
ACTION_TYPE_TOGGLE_MAGNIFY,
ACTION_TYPE_ZOOM_IN,
ACTION_TYPE_ZOOM_OUT
"Shade",
"Unshade",
"ToggleShade",
+ "ToggleTabletMouseEmulation",
"ToggleMagnify",
"ZoomIn",
"ZoomOut",
view_set_shade(view, false);
}
break;
+ case ACTION_TYPE_TOGGLE_TABLET_MOUSE_EMULATION:
+ rc.tablet.force_mouse_emulation = !rc.tablet.force_mouse_emulation;
+ break;
case ACTION_TYPE_TOGGLE_MAGNIFY:
magnify_toggle(server);
break;