Next Previous Up Top Contents Index

9.4 DUIM-Frames Module

<frame-mapped-event>

Sealed instantiable class

Summary

The class of events that indicate a frame has been mapped.

Superclasses

<frame-event>

Init-keywords

None.

Library

duim-frames

Module

duim-frames

Description

The class of events that indicate a frame has been mapped, that is, displayed on screen. An instance of this class is distributed whenever a frame is mapped.

Operations

None.

Example

The following example defines a method that can inform you when an instance of a class of frame you have defined is mapped.

define method handle-event
    (frame :: <my-frame>, 
     event :: <frame-mapped-event>) => ()
  notify-user
    (format-to-string("Frame %= mapped", frame))
end method handle-event;

See also

<frame-unmapped-event>, page 821


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index