print.xpm 552 Bytes
Newer Older
1
/* XPM */
2
#ifndef XPMMAIN
3
extern const char *print_button[];
4 5

#else
6 7
const char *print_button[] = {
/* columns rows colors const chars-per-pixel */
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
"16 15 5 1",
"  c None",
". c Black",
"X c Gray100",
"o c #808000",
"O c Yellow",
/* pixels */
"                ",
"     .........  ",
"    .XXXXXXXX.  ",
"    .X.....X.   ",
"   .XXXXXXXX.   ",
"   .X.....X.... ",
"  .XXXXXXXX. . .",
" .......... . ..",
".          . . .",
".............  .",
".      ooo  . . ",
".      OOO  ... ",
"............. . ",
" .         . .  ",
"  ...........   "
};
#endif