QtEventDispatching: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
(Fix link) |
||
Line 5: | Line 5: | ||
= Qt Event Dispatching = | = Qt Event Dispatching = | ||
This Qt Quarterly article [http://doc.qt. | This Qt Quarterly article [http://doc.qt.io/archives/qq/qq11-events.html Another Look at Events] maybe suitable for this topic. | ||
But from [[QtTimers]] we can see that: | But from [[QtTimers]] we can see that: | ||
Line 11: | Line 11: | ||
* As noted in '''QtEventProcessing''' , Qt creates a hidden window with a callback function to process events. | * As noted in '''QtEventProcessing''' , Qt creates a hidden window with a callback function to process events. | ||
However, [http://doc. | However, [http://doc.qt.io/archives/qq/qq11-events.html Another Look at Event] only provide general infomation about Qt Event System. | ||
* The Origins of Events | * The Origins of Events |
Revision as of 17:15, 22 December 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
Qt Event Dispatching
This Qt Quarterly article Another Look at Events maybe suitable for this topic.
But from QtTimers we can see that:
- QtEventProcessing should provide an overview of how platform events are processed by Qt
- As noted in QtEventProcessing , Qt creates a hidden window with a callback function to process events.
However, Another Look at Event only provide general infomation about Qt Event System.
- The Origins of Events
- Synthetic Events
- Custom Event Types
- Event Handling and Filtering
- Accept or Ignore?