home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / include / xbmpshad.h < prev    next >
Text File  |  1997-02-23  |  1KB  |  29 lines

  1. #ifndef __OOL_XBITMAPSHADOW_H__
  2. #define __OOL_XBITMAPSHADOW_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XBitmapShadow                         */
  8. /*                       derived from: XGraphicObject                        */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xgraphob.h"
  15. #include "XPoint.h"
  16. #include "XBitmap.h"
  17.  
  18. class _export_ XBitmapShadow: public XGraphicObject
  19. {
  20.    private:
  21.       XBitmap * bmp;
  22.       BOOL HitTest( const LONG x, const LONG y);
  23.    public:
  24.       XBitmapShadow( const XBitmap*, const XPoint*);
  25.       void Draw( const XRect* );
  26. };
  27.  
  28. #endif
  29.