Changeset 690 for trunk/src/corelib/kernel
- Timestamp:
- Mar 16, 2010, 12:21:22 AM (15 years ago)
- Location:
- trunk/src/corelib/kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/corelib/kernel/qcoreapplication_pm.cpp
r659 r690 93 93 received. Reimplement this function if you want to process window 94 94 messages \a msg that are not processed by Qt. If you don't want 95 the event to be processed by Qt, then return true and set \a result 96 to the value that the window procedure should return. Otherwise 97 return false. 95 the event to be processed by Qt, then return true and set \a result to the 96 value that the window procedure should return. Otherwise return false. 98 97 99 98 It is only directly addressed messages that are filtered. To … … 103 102 QAbstractEventDispatcher::instance(). 104 103 */ 105 bool QCoreApplication::pmEventFilter(QMSG * /*msg*/, MRESULT * /*r c*/)104 bool QCoreApplication::pmEventFilter(QMSG * /*msg*/, MRESULT * /*r*/) 106 105 { 107 106 return false; -
trunk/src/corelib/kernel/qeventdispatcher_pm.cpp
r666 r690 80 80 processing. Its functionality is based on PM object windows. Once an 81 81 instance of this class is created, PM window messages can be sent or posted 82 to it using send() or post() methods. Subclasses should overridethe82 to it using send() or post() methods. Subclasses should the 83 83 message() method to process sent or posted messages. The hwnd() method is 84 84 used whenever a PM window handle of this object window is necessary to be … … 215 215 216 216 \note Can be called on any thread. 217 218 219 220 221 222 223 224 217 225 */ 218 226
Note:
See TracChangeset
for help on using the changeset viewer.