home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / apcfonts.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  959 b   |  41 lines

  1.  
  2.  
  3. #ifndef _APCFonts_H
  4. #define _APCFonts_H
  5.  
  6.  
  7. // This color definition system is designed in the spirit if GetSysColor
  8. // GetSysColor was not modified to allow for the possiblity of standard 
  9. // windows color schemes to co-exist with the AutoPC faceplace color schemes
  10.  
  11. // AutoPC System Colors
  12.  
  13. // generic defaults
  14. #define AFNT_NORMAL                    0x0000
  15. #define AFNT_LARGE                     0x0001
  16.  
  17. // power list and menu
  18. #define AFNT_TITLEBAR                  0x0002
  19.  
  20. // power list 
  21. #define AFNT_PLB_HILITE                0x0003
  22. #define AFNT_PLB_NORMAL                0x0004
  23.  
  24. // power menu
  25. #define AFNT_PMENU_HILITE              0x0005
  26. #define AFNT_PMENU_NORMAL              0x0006
  27.  
  28. // editbox
  29. #define AFNT_EDIT                      0x0007
  30. #define AFNT_EDITLABEL                 0x0008
  31.  
  32.  
  33. #define APCINVALIDFONT 0xffffffff
  34.  
  35. HRESULT APCGetSysFont(  OLE_HANDLE hFC, int nIndex, IFontDisp **ppFontDisp);
  36.  
  37. #endif
  38.  
  39.  
  40.  
  41.