home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Appearance SDK 1.0.4 / Appearance Sample Code / Source / BevelImageAPIWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-07-16  |  743 b   |  48 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        BevelImageAPIWindow.h
  3.  
  4.     Contains:    Bevel Button fun!
  5.  
  6.     Version:    Appearance 1.0 SDK
  7.  
  8.     Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Edward Voas
  13.  
  14.         Other Contact:        7 of 9, Borg Collective
  15.  
  16.         Technology:            OS Technologies Group
  17.  
  18.     Writers:
  19.  
  20.         (edv)    Ed Voas
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <1>     9/11/97    edv        First checked in.
  25. */
  26.  
  27. #ifndef _BEVELIMAGE_H
  28. #define _BEVELIMAGE_H
  29.  
  30. #include <Icons.h>
  31. #include "BaseDialog.h"
  32.  
  33. class BevelImageAPIWindow : public BaseDialog
  34. {
  35.     public:
  36.             BevelImageAPIWindow();
  37.         virtual ~BevelImageAPIWindow();
  38.         
  39.     protected:    
  40.         void        HandleItemHit( SInt16 itemHit );
  41.     
  42.     private:
  43.         Handle        fIconSuite;
  44.         CIconHandle    fColorIcon;
  45. };
  46.  
  47. #endif // _BEVELIMAGE_H
  48.