home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / xfitsvew.zip / XFITSview / definecursor.h < prev    next >
Text File  |  1996-01-11  |  2KB  |  39 lines

  1. /* bitmaps for XFITSview image display cursor */
  2. /*-----------------------------------------------------------------------
  3. *  Copyright (C) 1996
  4. *  Associated Universities, Inc. Washington DC, USA.
  5. *  This program is free software; you can redistribute it and/or
  6. *  modify it under the terms of the GNU General Public License as
  7. *  published by the Free Software Foundation; either version 2 of
  8. *  the License, or (at your option) any later version.
  9. *
  10. *  This program is distributed in the hope that it will be useful,
  11. *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. *  GNU General Public License for more details.
  14. *-----------------------------------------------------------------------*/
  15.  
  16. #ifndef DEFINECURSOR_H
  17. #define DEFINECURSOR_H
  18.  
  19. #define ImageCursor_width  16
  20. #define ImageCursor_height 16
  21. #define ImageCursor_x_hot   7
  22. #define ImageCursor_y_hot   7
  23. static unsigned char ImageCursor_bits[]={
  24. /* byteswap???   0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 
  25.    0x01, 0x00, 0xf8, 0x3f, 0x04, 0x20, 0xf8, 0x3f, 0x01, 0x00,
  26.    0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80}; */
  27.    0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 
  28.    0x00, 0x01, 0x3f, 0xf8, 0x20, 0x04, 0x3f, 0xf8, 0x00, 0x01, 
  29.    0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02, 0x80, 0x02}; 
  30. static unsigned char ImageCursorMask_bits[]={
  31. /* byteswap??   0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 
  32.    0x01, 0x00, 0xf8, 0x3f, 0xfc, 0x7f, 0xf8, 0x3f, 0x01, 0x00,
  33.    0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80}; */
  34.    0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 
  35.    0x00, 0x01, 0x3f, 0xf8, 0x7f, 0xfc, 0x3f, 0xf8, 0x00, 0x01,
  36.    0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03, 0x80, 0x03};
  37.  
  38. #endif /*  DEFINECURSOR_H */
  39.