Event Driven Programming 101
- by JHarley1
Good Morning,
I previously asked the Q. of how Event Handlers Work (which I got a great answer for).
I would now like to understand the basics of how are events are associated with on-screen objects?
An explanation of how Events are associated with on Screen Objects:
The application registers the Event, the Event Handler and the Component with the GUI Server. When an Event is detected the GUI Server has to link an Event to a Window and then to a Component, it then consults the Event / Component Table to identify which Handler (s) to be executed.
I am having problems finding resources/papers that have mention of this process - especially of a Event / Component Table - can anyone clarify?