OK, the Qtopia Overview says:
The modules removed from Qt due to their large size, speed or because they do not belong or are not necessary on an embedded device. For some of the modules, a description is provided if it is not obvious why this was left out of the Qt/Embedded offering for Qtopia.
It then lists
drag and drop among those modules like so:
UI: QTextCodec modules, drag and drop, free type fonts, extra desktop styles (i.e. Motif) were replaced by Qtopia style plugins
I conclude that drag & drop is not available in Qtopia. Can anyone confirm this?
In any case, the semi-complete QTextDrag implementation has just cost me quite a lot of time. Qtopia docs say if you're using whatever's not supposed to be available you'll get a compile error. How come, then, that PyQt compiles and produces this (qt.py)?:
class QTextDrag(QDragObject):
def __init__(self,*args):
libqtc.sipCallCtor(123,self,args)
Is this an Opie-specific libqte2 with a half-baked QDragObject?
z.