diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | data/graphics/gui/sansserif8.png | bin | 1261 -> 2134 bytes | |||
-rw-r--r-- | src/gui/gui.cpp | 16 |
3 files changed, 19 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2008-11-04 Bjørn Lindeijer <bjorn@lindeijer.nl> + + * src/gui/gui.cpp, data/graphics/gui/sansserif8.png: Applied more + changes by vargavind, adding the complete ISO-8859-15 character set to + the sans-serif font. + 2008-11-01 Fate <fate.tmw@googlemail.com> * src/gui/skill.cpp (class SkillGuiTableModel): Report unmapped diff --git a/data/graphics/gui/sansserif8.png b/data/graphics/gui/sansserif8.png Binary files differindex 7eae7a1b..a4738548 100644 --- a/data/graphics/gui/sansserif8.png +++ b/data/graphics/gui/sansserif8.png diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index b9997d3a..12f19460 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -103,11 +103,21 @@ Gui::Gui(Graphics *graphics): Window::setWindowContainer(guiTop); setTop(guiTop); - // Set global font + // Set global font (based on ISO-8859-15) try { mGuiFont = new gcn::ImageFont("graphics/gui/sansserif8.png", - " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[" - "\\]^_`abcdefghijklmnopqrstuvwxyz{|}~|áÁéÉßøèÈ" + " !\"#$%&'()*+,-./" + "0123456789:;<=>?" + "@ABCDEFGHIJKLMNO" + "PQRSTUVWXYZ[\\]^_" + "`abcdefghijklmno" + "pqrstuvwxyz{|}~|" + " ¡¢£¤¥¦§¨©ª«¬®¯" + "°±²³´µ¶·¸¹º»¼½¾¿" + "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ" + "ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß" + "àáâãäåæçèéêëìíîï" + "ðñòóôõö÷øùúûüýþÿ" ); } catch (gcn::Exception e) |