home *** CD-ROM | disk | FTP | other *** search
- //------------------------------------------------------------------------------------------------
- //
- // SoundWell
- //
- // Inherits From: Control
- //
- // Declared In: SoundWell.h
- //
- // Class Description
- //
- // SoundWell supports dropping of any file from which a Sound
- // instance may be created.
- //
- //
- // Disclaimer
- //
- // You may freely copy, distribute and reuse this software and its
- // associated documentation. I disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- //
- //------------------------------------------------------------------------------------------------
- #import <appkit/appkit.h>
-
- @interface SoundWell : Control
- {
- id sound;
- }
-
-
- //------------------------------------------------------------------------------------------------
- // Accessing Sound
- //------------------------------------------------------------------------------------------------
- - sound: aSound;
- - sound;
-
-
- //------------------------------------------------------------------------------------------------
- // Action Methods
- //------------------------------------------------------------------------------------------------
- - play: sender;
-
-
- @end