Next Prev Up Top Contents Index

image-pinboard-object

Class
Summary

An image pinboard object is a pinboard object that displays itself as a generic image.

Superclasses

pinboard-object
titled-object

Slots

image

The generic image to be displayed.

Accessors

image-pinboard-object-image

Description

The image argument to image-pinboard-object should either be a generic image itself, or the name of a file containing a generic image that is in a directory in your image search path. The image displayed in the object can be changed dynamically using the writer function

(setf image-pinboard-object-image)
Example
(setf image (capi:contain
             (make-instance
              'capi:image-pinboard-object
              :image "new-lispworks-logo")
             :process nil))
(setf (capi:image-pinboard-object-image image)
      "diamond1")
(setf (capi:image-pinboard-object-image image)
      "new-lispworks-logo")
(capi:contain (make-instance
               'capi:image-pinboard-object
          :image "new-lispworks-logo"
          :title "New LispWorks Logo"
          :title-adjust :right
          :title-position :bottom))
See also

pinboard-layout


LispWorks CAPI Reference Manual - 14 Dec 2001

Next Prev Up Top Contents Index