Generic FunctionPackage: common-graphicsToCDocOverviewCGDocRelNotesIndexPermutedIndex
Allegro CL version 6.1
Unrevised

funcall-menu-item-with-window

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.


Copyright (c) 1998-2001, Franz Inc. Berkeley, CA., USA. All rights reserved.
Documentation for Allegro CL version 6.1 update # 1. This page was not revised.
Created 2001.12.15.

ToCDocOverviewCGDocRelNotesIndexPermutedIndex
Allegro CL version 6.1
Unrevised