It should be trivial to emulate a relative mouse in software, though. In fact, I'll bet the touchscreen driver does exactly that.
A Python example:
lastAbsX = lastAbsY = 0
def relFromAbs(absCoords):
(absX, absY) = absCoords
relX = lastAbsX - absX
relY = lastAbsY - absY...