home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Palettes / Clocks / Inspectors.subproj / SoundWell.h < prev    next >
Text File  |  1992-12-09  |  1KB  |  43 lines

  1. //------------------------------------------------------------------------------------------------
  2. //
  3. //    SoundWell
  4. //    
  5. //    Inherits From:    Control
  6. //
  7. //    Declared In:    SoundWell.h
  8. //
  9. //    Class Description
  10. //    
  11. //        SoundWell supports dropping of any file from which a Sound
  12. //        instance may be created.
  13. //
  14. //
  15. //    Disclaimer
  16. //
  17. //        You may freely copy, distribute and reuse this software and its
  18. //        associated documentation. I disclaim any warranty of any kind, 
  19. //        expressed or implied, as to its fitness for any particular use.
  20. //
  21. //------------------------------------------------------------------------------------------------
  22. #import <appkit/appkit.h>
  23.  
  24. @interface SoundWell : Control
  25. {
  26.     id    sound;
  27. }
  28.  
  29.  
  30. //------------------------------------------------------------------------------------------------
  31. //    Accessing Sound
  32. //------------------------------------------------------------------------------------------------
  33. - sound: aSound;
  34. - sound;
  35.  
  36.  
  37. //------------------------------------------------------------------------------------------------
  38. //    Action Methods
  39. //------------------------------------------------------------------------------------------------
  40. - play: sender;
  41.  
  42.  
  43. @end