Changeset 447 for trunk/src/gui/kernel/qdnd_p.h
- Timestamp:
- Jan 12, 2010, 12:00:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/kernel/qdnd_p.h
r438 r447 63 63 #ifdef Q_WS_MAC 64 64 # include "private/qt_mac_p.h" 65 #endif 66 67 #if defined(Q_WS_PM) 68 #include "qt_os2.h" 65 69 #endif 66 70 … … 205 209 LPDATAOBJECT currentDataObject; 206 210 #elif defined(Q_WS_PM) 207 friend class Q PMDragData;211 friend class QDragManager; 208 212 QPMDragData *d; 209 213 #endif … … 267 271 #endif 268 272 273 #ifdef Q_WS_PM 274 void init_sys(); 275 void uninit_sys(); 276 void sendDropEvent(QWidget *receiver, QEvent *event); 277 MRESULT dispatchDragAndDrop(QWidget *widget, const QMSG &qmsg); 278 bool isInDrag() const { return inDrag; } 279 #endif 280 269 281 private: 270 282 QPixmap *pm_cursor; … … 272 284 #ifdef Q_WS_QWS 273 285 Qt::DropAction currentActionForOverrideCursor; 286 #endif 287 #ifdef Q_WS_PM 288 bool inDrag; 274 289 #endif 275 290
Note:
See TracChangeset
for help on using the changeset viewer.