Next Prev Up Top Contents Index

raise-interface

Function
Summary

The raise-interface function raises the interface containing a specified pane to the front of the screen.

Signature

raise-interface pane

Description

This raises the window containing pane to the front of the screen. To push it to the back use lower-interface, and to iconify it use hide-interface.

Example
(setq pane (capi:contain
             (make-instance
              'capi:text-input-pane)
             :process nil))
 
(capi:lower-interface pane)
 
(capi:raise-interface pane)
See also

activate-pane
hide-interface
interface
lower-interface
quit-interface


LispWorks CAPI Reference Manual - 13 Mar 2003

Next Prev Up Top Contents Index