summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2009-05-13Add TapAndDragGesture option and gestures property.Erkin Bahceci1-50/+114
The tap-and-drag gesture is an alternative way of dragging. It is performed by tapping (touching and releasing the finger), then touching again and moving the finger on the touchpad. This gesture is enabled by default and can be disabled by setting the TapAndDragGesture option to false. The gesture already existed in synaptics and was always enabled. This commit adds an option to switch it on/off. The default behavior is tap-and-drag being enabled, that is, TapAndDragGesture is true. The "Synaptics Gestures" property is intended to hold all new gesture enabling options, like options for the upcoming multitouch gestures. Signed-off-by: Henrik Rydberg <rydberg@euromail.se> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2008-07-11Start cleaning up the documentationChristoph Brill5-866/+0
Many of the files contain redundant information. The plan is to remove most of the (maybe even all) and add the content to the man page.
2008-06-06Move the current documents to the docs folder.Christoph Brill5-0/+634
We should merge the interesting content to the manpages.
2008-06-06Start moving out the docs to an appropriate directory.Christoph Brill2-0/+461
We will provide the current documents in the docs directory. The interesting stuff should be merged into the manpages though.
2007-05-17Update the state machine diagram for locked drag timeout.Peter Osterlund1-68/+250
2006-05-07Add new parameter "SingleTapTimeout".Vaclav Kadlcik1-1/+2
This patch adds a new parameter - "SingleTapTimeout" - to control the "2A -> SINGLETAP" transition. This gives greater control of tap behavior. For exmple, it is possible to disable tap-and-drag by setting the parameter to 0.
2006-04-09Updated tap-and-drag state diagram with information aboutPeter Osterlund1-51/+54
"fast taps".
2006-04-09Added two parameters.Peter Osterlund1-123/+452
MaxDoubleTapTime makes it easier to do fast double clicks. ClickTime adds a delay between the button down and button up events generated in response to a tap event.
2006-04-09Made double clicks faster, so that they work in xmms and thePeter Osterlund1-94/+98
gtk file selector. Reported by Jean DIRAISON <diraison.jean@wanadoo.fr>.)
2006-04-09Implemented a proper state machine for tap and dragPeter Osterlund1-0/+1244
processing. This fixes several problems: * Double tap and drag now works. (Problem reported by Andrew Pimlott <andrew@pimlott.net>.) * Locked drags are handled correctly, even for button 2 and 3 tap-and-drag operations. * The [LR][TB]CornerButton and TapButton[123] parameters now work also for button values > 3. * The old code was too hard to understand.