Presenter

This example illustrates how the Internet Foundation Classes may be used to easily create animated presentations. The Timer class is used to automate scrolling, cross-fading, and other animating of text. The ContainerView class is used together with the Border class to implement a variety of frame styles.

We subclass InternalWindow to create PresentationWindow, which contains our subclass of ContainerView, called PresentationView as well as some buttons and a slider used to control the animation. PresentationView implements the DrawingSequenceOwner interface in order to handle the drawing of animated border images and background images. It also accepts DragViews dropped onto it which contain file names. The files are read in, parsed into individual lines, and stored in a vector for the subclass to display.

There are three subclasses of PresentationView which animate their text in various ways, CinemaView, MarqueeView, and PortalView. Each has been preloaded with one of the files, but you may change the text by dragging a different file from the file icons on the background "desktop".

Some platforms may not be able to run more than one or two of the presentations at a time without slowing down. Also, the graphics look best using at least 16-bit (65k) color settings.

This example primarily illustrates the use of the following classes and concepts:

Secondarily, it also illustrates:

The sources: