home *** CD-ROM | disk | FTP | other *** search
/ FreeWare Collection 2 / FreeSoftwareCollection2pd199x-jp.img / rom / rom.h < prev    next >
Text File  |  1990-06-14  |  2KB  |  50 lines

  1. /********** rom.h **********/
  2.  
  3. /* width and length of images */
  4. #define W_GEAR_ICON 32
  5. #define L_GEAR_ICON 32
  6. #define W_TOP_LINE 260
  7. #define L_TOP_LINE 1
  8. #define W_KEYBOARD 260
  9. #define L_KEYBOARD 120
  10. #define W_WINDOW 260
  11. #define L_WINDOW 22
  12. #define W_KANJI_BUTTON 112
  13. #define L_KANJI_BUTTON 21
  14. #define W_SIZE_BUTTON 24
  15. #define L_SIZE_BUTTON 19
  16. #define W_SHADOW_V 6
  17. #define L_SHADOW_V 142
  18. #define W_SHADOW_H 254
  19. #define L_SHADOW_H 6
  20. #define W_CALCULATOR 128
  21. #define L_CALCULATOR 143
  22. #define W_BUTTON 16
  23. #define L_BUTTON 16
  24. #define W_OPENING 263
  25. #define L_OPENING 115
  26. #define W_SYS_ICON 32
  27. #define L_SYS_ICON 32
  28.  
  29. /* icons */
  30. void ROM_putGearIcon(char *work, char *para, int sw, int n, int x, int y);
  31. void ROM_putSysIcon(char *work, char *para, int sw, int n, int x, int y);
  32.  
  33. /* buttons */
  34. void ROM_putButton(char *work, char *para, int n, int x, int y);
  35.  
  36. /* software keyboard */
  37. void ROM_putTopLine(char *work, char *para, int x, int y);
  38. void ROM_putKeyboard(char *work, char *para, int n, int x, int y);
  39. void ROM_putWindow(char *work, char *para, int x, int y);
  40. void ROM_putShadowV(char *work, char *para, int x, int y);
  41. void ROM_putShadowH(char *work, char *para, int x, int y);
  42. void ROM_putSizeButton(char *work, char *para, int n, int x, int y);
  43. void ROM_putKanjiButton(char *work, char *para, int n, int x, int y);
  44.  
  45. /* calculator */
  46. void ROM_putCalculator(char *work, char *para, int x, int y);
  47.  
  48. /* opening */
  49. void ROM_putOpening(char *work, char *para, int x, int y);
  50.