NextPrevUpTopContentsIndex

raise-interface

Function
Summary

Raises the interface containing a specified pane to the front of the screen.

Package

capi

Signature

raise-interface pane

Description

The function raise-interface 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)))
 
(capi:apply-in-pane-process 
 pane 'capi:lower-interface pane)
 
(capi:apply-in-pane-process 
 pane 'capi:raise-interface pane)
See also

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


LispWorks CAPI Reference Manual - 25 Jul 2006

NextPrevUpTopContentsIndex