treesel.xpm 564 Bytes
Newer Older
1
/* XPM */
raburton's avatar
raburton committed
2 3 4 5
#ifndef XPMMAIN
extern const char * tree_sel_xpm[];
#else
const char *tree_sel_xpm[] = {
6
/* columns rows colors const chars-per-pixel */
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
"16 15 6 1",
"  c Gray0",
"X c #7b7b7b",
"O c Green",
"# c White",
"+ c Yellow",
"@ c None",

/* pixels */
"@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@",
"@@@@@@@@@@@@@@@@",
"@@@@X    X@@@@@@",
"@@@  OOOO  @@@@@",
"@@X +#OOOO X@@@@",
"@@ O#+OOOOO @@@@",
"@@ OOOOOOOO @@@@",
"@@ OOOOOO+O X@@@",
"@@ OOOOO++O X@@@",
"@@X OOO++O XX@@@",
"@@@  OOOO  XXX@@",
"@@@@X    XXXX@@@",
"@@@@@@@XXXXXX@@@",
"@@@@@@@@@@X@@@@@"
};
raburton's avatar
raburton committed
32
#endif
33