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.
34 lines
603 B
34 lines
603 B
/* XPM */
|
|
#ifndef XPMMAIN
|
|
extern const char *add_corner_xpm[];
|
|
|
|
#else
|
|
const char * add_corner_xpm[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"16 16 7 1",
|
|
" c None",
|
|
"X c #808080",
|
|
". c #008000",
|
|
"+ c #FFFF00",
|
|
"@ c #800000",
|
|
"o c #C0C0C0",
|
|
"O c #808000",
|
|
/* pixels */
|
|
" .XX ",
|
|
" .XX ",
|
|
" XooO ",
|
|
" ooX ",
|
|
"..X ooooX ..... ",
|
|
"X.XoooooX XXXXXX",
|
|
"XX ooo++O XXXXXX",
|
|
" X OOO@ X ",
|
|
" X X ",
|
|
" X.XX ",
|
|
" .XX ",
|
|
" .XX ",
|
|
" .XX ",
|
|
" .XX ",
|
|
" .XX ",
|
|
" XX "
|
|
};
|
|
#endif
|