home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / sys / next / programm / 5188 < prev    next >
Encoding:
Text File  |  1992-07-22  |  1.6 KB  |  46 lines

  1. Newsgroups: comp.sys.next.programmer
  2. Path: sparky!uunet!decwrl!csus.edu!news
  3. From: eps@futon.SFSU.EDU (Eric P. Scott)
  4. Subject: Re: Does SoundView class exist in 2.1?
  5. Message-ID: <1992Jul23.054852.11368@csus.edu>
  6. Sender: news@csus.edu
  7. Reply-To: eps@cs.sfsu.edu
  8. Organization: San Francisco State University
  9. References: <1992Jul22.212148.26961@aio.jsc.nasa.gov>
  10. Date: Thu, 23 Jul 1992 05:48:52 GMT
  11. Lines: 33
  12.  
  13. In article <1992Jul22.212148.26961@aio.jsc.nasa.gov>
  14.     bill@epnxt.jsc.nasa.gov writes:
  15. >According to my docs, there is a SoundView class located at
  16. >View:Responder:Object.   I have ver 2.1 of the operating system and do not  
  17. >find that class in IB.  Was it taken out?
  18.  
  19. IB's class browser initially shows common classes and public
  20. AppKit classes.  SoundView is part of SoundKit.
  21.  
  22. Click on View.  Select Subclass from the Operations pulldown
  23. menu, then type SoundView and press Return.
  24.  
  25. If you double-click on the .h icon IB will message Edit to open
  26. the interface file--and it *will* find it.  You can also use
  27. CustomView to instantiate SoundViews.
  28.  
  29. Note that IB won't have parsed the interface definition, so you
  30. won't be able to connect directly to the "reduction" or "sound"
  31. ids.
  32.  
  33. If this disturbs you, there are two workarounds:
  34.  
  35.     (1) Attempt Save As... to /usr/include/soundkit/UNTITLED
  36.         [This SHOULD fail for lack of permissions!]
  37.       -or-
  38.     (2) Create a symlink from /usr/include/soundkit/SoundView.h
  39.         into your project directory (or home directory if you
  40.         haven't created a project directory yet).
  41.  
  42.     THEN Parse will work.  (If you used (2), you can remove the
  43.     symlink now.)
  44.  
  45.                     -=EPS=-
  46.