Generic FunctionPackage: cgToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version

pixmap

Arguments: object

Returns (or sets with setf) the pixmap that will be displayed for a picture-button or static-picture control or for an individual button of a multi-picture-button.

pixmap is also used by Inspect dialogs window to provide visual identifiers of objects. In the IDE, the inspector uses the pixmap returned by this generic function to point out objects of various types in its drop-down history list. The inspector may be customized to show additional pixmaps for other types of objects by defining pixmap methods. For example, the following method would cause the radio-button pixmap to be displayed thereafter in the inspector's history list for any symbol in the list.

(defmethod pixmap ((object symbol))
  (find-pixmap 'radio-button))

pixmap is a property of the button-info, picture-button, and static-picture classes.


Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page was not revised from the 10.0 page.
Created 2019.8.20.

ToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 10.1
Unrevised from 10.0 to 10.1.
10.0 version