Next Previous Up Top Contents Index

9.4 DUIM-Frames Module

raise-frame

Generic function

Summary

Raises the specified frame to the top of the stack of visible windows.

Signature

raise-frame frame => ()

Arguments

frame
An instance of type <frame>.

Values

None

Library

duim-frames

Module

duim-frames

Description

Raises frame to the top of the stack of visible windows. After calling this function, frame will appear above any occluding windows that may be on the screen.

Example

The following example creates and displays a simple frame, then lowers and raises it. You should run this code in the interactor, pressing the RETURN key at the points indicated.

define variable *frame* = 
   make(<simple-frame>, title: "A frame", 
        layout: make(<button>));RETURN
start-frame(*frame*);RETURN
lower-frame(*frame*);RETURN
raise-frame(*frame*);RETURN

See also

deiconify-frame, page 744

destroy-frame, page 744

exit-frame, page 785

iconify-frame, page 823

lower-frame, page 825


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index