waveview/src/gawpixmaps.h

59 lines
1.3 KiB
C
Raw Normal View History

2022-09-24 17:47:18 -04:00
/* XPM */
2024-06-15 11:58:18 -04:00
const char *drag_no_xpm[] = {
/* width height ncolors chars_per_pixel */
"20 20 2 1",
/* colors */
" c #000000",
". c #FF0000",
/* pixels */
" ...... ",
" .......... ",
" .... .... ",
" ... ... ",
" ... ... ",
" ... ..... ",
" ... ...... ",
"... ... ...",
"... ... ...",
"... ... ...",
"... ... ...",
"... ... ...",
"... ... ...",
" ...... ... ",
" ..... ... ",
" ... ... ",
" ... ... ",
" .... .... ",
" .......... ",
" ...... "
2022-09-24 17:47:18 -04:00
};
/* XPM */
2024-06-15 11:58:18 -04:00
const char *wave_drag_ok_xpm[] = {
/* width height ncolors chars_per_pixel */
"20 20 2 1",
/* colors */
" c #000000",
". c #00FF00",
/* pixels */
" ",
" ",
" ",
" .. ",
" ..... ",
" .. ... ",
" .. ... ",
" .. ... ",
" .. .. ",
" .. . .",
" .. .. ..",
" .. .. .. ",
".. .. .. ",
".. .. . ",
". ...... ",
". .... ",
" ",
" ",
" ",
" "
2022-09-24 17:47:18 -04:00
};