Mercurial > mplayer.hg
annotate gui/mplayer/pixmaps/delsub.xpm @ 32734:cc58a1e919d9
Allow character in the font description file to be in UTF-8.
A character defined in the font description file can be either
an ASCII character, any character in the range of 0x80 to 0xFF
or - to avoid character set problems, and that is recommended -
a character in UTF-8 encoding now.
Non-ASCII characters will be stored in the nonASCIIidx array.
The indices 0..127 of this array correspond to the indices
128..255 of the Fnt array.
(This also settles the "Translate messages shown in the GUI window(s)
from UTF-8" issue.)
author | ib |
---|---|
date | Thu, 27 Jan 2011 18:04:19 +0000 |
parents | 09c3ce60f369 |
children |
rev | line source |
---|---|
23077 | 1 /* XPM */ |
25715
09c3ce60f369
Make xpm arrays really const (I missed that they are not strings but
reimar
parents:
23077
diff
changeset
|
2 static const char * const delsub_xpm[] = { |
23077 | 3 "16 16 3 1", |
4 " c None", | |
5 ". c #CD0909", | |
6 "+ c #000000", | |
7 " ", | |
8 " ", | |
9 ". .", | |
10 " .. .. ", | |
11 " ++. + + +.+ ", | |
12 "+ .. + . + ", | |
13 "+ +. ..+ + ", | |
14 " ++ + ..+ +++ ", | |
15 " + + . . + + ", | |
16 " + .. +.. + ", | |
17 "+++ . +++ +.+ ", | |
18 " . .. ", | |
19 " .. .", | |
20 ". ", | |
21 " ", | |
22 " "}; |