funcall-menu-item-with-window

Generic Function

Package: common-graphics

Arguments: menu menu-item stream

Funcalls the value of the menu-item with the window on which the menu was invoked (stream) as the single argument. If the window is a frame-with-single-child window, then the child pane is passed instead. Here is the definition of funcall-menu-item-with-window:

(defmethod funcall-menu-item-with-window 
             ((menu menu)(menu-item menu-item) stream)
  (funcall (value menu-item)
           (or (frame-child stream) stream)))

This function and funcall-menu-item are typical values of the on-click property of a menu.

Common Graphics and IDE documentation is described in About Common Graphics and IDE documentation in cgide.htm.

The documentation is described in introduction.htm and the index is in index.htm.

Copyright (c) 1998-2000, Franz Inc. Berkeley, CA., USA. All rights reserved.

Created 2000.10.5.