LispWorks IDE User Guide > 17 The Inspector > 17.5 Operating upon objects and items > 17.5.4 Manipulation operations

NextPrevUpTopContentsIndex

17.5.4.1 Example

This example takes you through the process of creating an object, examining its contents, and then modifying the object.

  1. Create a button as follows:
  2. (setq button1 (make-instance 'capi:button))
  3. Choose Values > Inspect in the Listener to inspect the button in the Inspector.
  4. In the Listener, use the CAPI accessor button-enabled to find out whether button1 is enabled.
  5. (capi:button-enabled button1)

    This returns t . So we see buttons are enabled by default. The next step is to destructively modify button1 so that it is not enabled, but first we will make the Inspector display a little simpler.

  6. Choose LispWorks > Preferences... and select Inspector in the list on the left side of the Preferences dialog. You can now change the current package of Inspector tools.
  7. In the Package box, replace the default package name with CAPI and click OK .
  8. This changes the process package of the Inspector to the CAPI package, and the package name disappears from all the slots listed. This makes the display a lot easier to read.

  9. In the Inspector, type enabled into the Filter box.
  10. Button objects have a large number of slots, and so it is easier to filter out the slots that you do not want to see than to search through the whole list. After applying the filter, only one slot is listed.

  11. Select the slot enabled .
  12. Choose Slots > Set...
  13. A dialog appears into which you can type a new value for the slot enabled .

    Figure 17.5 Entering a new slot value

  14. Note that previously entered forms are available via a dropdown in this dialog. Enter nil (or select it from the history) and click on OK .
  15. The attributes and values area shows the new value of the enabled slot.

  16. Click on the
  17. button. This removes the filter and displays all the slots once again.
  18. To confirm that the change happened, type the following in the Listener. You should be able to recall the last command using Alt+P or History > Previous .
  19. (capi:button-enabled button1)

    This now returns nil , as expected.

    The next part of this example shows you how you can modify the slots of an object by pasting in the contents of the clipboard. This example shows you how to modify the text and font of button1 .

  20. Type the following into the Listener and then press Return :
  21. "Hello World!"
  22. Choose Values > Copy to copy the string to the clipboard.
  23. Select the TEXT slot of button1 in the Inspector.
  24. Choose Slots > Paste to paste the "Hello World!" string into the text slot of button1 .
  25. This sets the text slot of button1 to the string.

  26. Enter the following into the Listener and press Return :
  27. (let ((font (capi:simple-pane-font button1)))
      (if font 
          (gp:find-best-font 
           button1 
           (apply 'gp:make-font-description 
                  (append (list :size 30) 
                          (gp:font-description-attributes 
                           (gp:font-description 
                            (capi:simple-pane-font button1))))))
        (gp:make-font-description :size 30)))

    This form simply calculates a large font object suitable for the button object.

  28. Choose Values > Copy to copy the font to the clipboard.
  29. Select the FONT slot of button1 in the Inspector.
  30. Choose Slots > Paste to paste the font into the font slot of button1 .
  31. Confirm the effect of these changes by displaying the button object. To do this, choose Object > Listen .
  32. This transfers the button object back into the Listener. As feedback, the string representation of the object is printed in the Listener above the current prompt. The object is automatically transferred to the * variable so that it can be operated on.

  33. In the Listener, type the following:
(capi:contain *)

This displays a window containing the button object. Note that the text now reads "Hello World!", as you would expect, and that the font size is larger than the default size size for buttons. Note further that you cannot click on the button; it is not enabled. This is because you modified the setting of the enabled slot in the earlier part of this example.


LispWorks IDE User Guide (Macintosh version) - 22 Dec 2009

NextPrevUpTopContentsIndex