You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
567 B

  1. /* XPM */
  2. #ifndef XPMMAIN
  3. extern const char *undo_xpm[];
  4. #else
  5. const char *undo_xpm[] = {
  6. /* width height num_colors const chars_per_pixel */
  7. "16 16 4 1",
  8. /* colors */
  9. " c None",
  10. "X c #0000E0",
  11. "a c #808080",
  12. ". c #404040",
  13. /* pixels */
  14. " ",
  15. " ",
  16. " ",
  17. " ",
  18. " ..XXXXa ",
  19. "..X ..XX....Xa ",
  20. "..XX X.. ...XX ",
  21. "..XXX ..XX ",
  22. "..XXXX ..XX ",
  23. "..XXXXX ..XX ",
  24. "....... ..XXa ",
  25. " ..aXXX ",
  26. " ",
  27. " ",
  28. " ",
  29. " "};
  30. #endif