Introduction to OOP: Chapter 19 : A Case Study: The LAF [next] [previous] [audio] [real] [text]

Event Driven Execution

All event driven programs have the same global execution behavior:

program main;
begin
	initialize application;
	while not finished do 
		begin
			if user has done something interesting
				respond to it
		end;
	clean up application;
end
Intro OOP, Chapter 19, Slide 3