mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
Problem: Motif requires non-const char pointer for XPM data shared with GTK (Tony Mechelynck, after v9.1.0432) Solution: Cast non-const to const char pointer for GTK (Drew Vogel). closes: #14834 Signed-off-by: Drew Vogel <dvogel@github> Signed-off-by: Christian Brabandt <cb@256bit.org>
59 lines
2.6 KiB
C
59 lines
2.6 KiB
C
/* XPM */
|
|
static char * vim48x48[] = {
|
|
"48 48 8 1",
|
|
" c None",
|
|
". c #000000",
|
|
"+ c #000084",
|
|
"@ c #008200",
|
|
"# c #00FF00",
|
|
"$ c #848284",
|
|
"& c #C6C3C6",
|
|
"* c #FFFFFF",
|
|
" .. ",
|
|
" .##. ",
|
|
" .#@@#. ",
|
|
" ...............#@@@@#. ............... ",
|
|
" .***************.@@@@@#. .***************. ",
|
|
" .**&&&&&&&&&&&&&&$.@@@@@#.**&&&&&&&&&&&&&&$.",
|
|
" .*&&&&&&&&&&&&&&&$.@@@@@@.*&&&&&&&&&&&&&&&$.",
|
|
" .*$&&&&&&&&&&&&&&$.@@@@@@.*$&&&&&&&&&&&&&&$.",
|
|
" .$$$&&&&&&&&&$$$.@@@@@@@@.$$$&&&&&&&&&&&$$.",
|
|
" ..*&&&&&&&&&$$.@@@@@@@@@@..*&&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@@@@@@@.**&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@@@@@@.**&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@@@@@.**&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@@@@.**&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@@@.**&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@@.**&&&&&&&&&$$. ",
|
|
" .*&&&&&&&&&$$.@@@@.**&&&&&&&&&$$.. ",
|
|
" ..*&&&&&&&&&$$.@@@.**&&&&&&&&&$$.@#. ",
|
|
" .#.*&&&&&&&&&$$.@@.**&&&&&&&&&$$.@@@#. ",
|
|
" .#@.*&&&&&&&&&$$.@.**&&&&&&&&&$$.@@@@@#. ",
|
|
" .#@@.*&&&&&&&&&$$..**&&&&&&&&&$$.@@@@@@@#. ",
|
|
" .#@@@.*&&&&&&&&&$$.**&&&&&&&&&$$.@@@@@@@@@#. ",
|
|
" .#@@@@.*&&&&&&&&&$$**&&&&&&&&&$$.@@@@@@@@@@@#. ",
|
|
".#+@@@@.*&&&&&&&&&$$*&&&&&&&&&$$.@@@@@@@@@@@@@#.",
|
|
" .++@@@.*&&&&&&&&&$*&&&&&&&&&$$.@@@@@@@@@@@@@++.",
|
|
" .++@@.*&&&&&&&&&$&&&&&&&&&$$.@@@@@@@@@@@@@++. ",
|
|
" .++@.*&&&&&&&&&&&&&&&&&&$$.@@@@@@@@@@@@@++. ",
|
|
" .++.*&&&&&&&&&&&&&&&&....@@@@@@@@@@@@@++. ",
|
|
" .+.*&&&&&&&&&&&&&&&.&&&.@@@@@@@@@@@@+++ ",
|
|
" ..*&&&&&&&&&&&&&&&.&&&.@@@@@@@@@@@++. ",
|
|
" .*&&&&&&&&&&&&&&&.&&&.@@@@@@@@@@++. ",
|
|
" .*&&&&&&&&&&&&&&$$...@@@@@@@@@@++. ",
|
|
" .*&&&&&&&&&&&&&$$...@@....@@....+.... ",
|
|
" .*&&&&&&&&&&&&$$..&&..&&&&..&&&&..&&&. ",
|
|
" .*&&&&&&&&&&&$$..&&&.@.&&&&&&&&&&&&&&&. ",
|
|
" .*&&&&&&&&&&$$.@.&&&.@.&&&&&&&&&&&&&&&. ",
|
|
" .*&&&&&&&&&$$.@@.&&.@@.&&....&&....&&. ",
|
|
" .*&&&&&&&&$$.@@.&&&.@.&&&.+.&&&. .&&&. ",
|
|
" .*&&&&&&&$$.@@@.&&.@@.&&.++.&&. .&&. ",
|
|
" .*&&&&&&$$.@@@.&&&.@.&&&.+.&&&. .&&&. ",
|
|
" .*&&&&&$$.++@@.&&.@@.&&.. .&&. .&&. ",
|
|
" .*&&&&$$. .++.&&&.@.&&&. .&&&. .&&&. ",
|
|
" .$$$$$. .+.&&&&..&&&&..&&&&..&&&&. ",
|
|
" ..... .+....@+.... .... .... ",
|
|
" .++@@++. ",
|
|
" .++++. ",
|
|
" .++. ",
|
|
" .. "};
|