README 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //
  2. // $Id: README 8008 2010-12-11 14:39:07Z AlbrechtS $
  3. //
  4. // Miscellaneous files for developers:
  5. //
  6. Developer files for testing UTF-8 character sets and functions:
  7. ================================================================================
  8. Open these files in test/editor and compare the contents.
  9. Test scrolling, move the cursor over the "special" characters (> U+007F),
  10. watch cursor movement, drawing artefacts, etc..
  11. CAUTION: Do not 'cat' these files unless you know what you're doing.
  12. Especially the cp1252* files can contain control characters that may freeze
  13. your screen (xterm etc.).
  14. Detailed file description:
  15. The "native" encoded files contain 8-bit characters with binary values that
  16. can be seen at the top and left borders, resp. (add both). They should look
  17. like the image file (cp1252.png) on Windows only (if the current codepage is
  18. "Western, CP 1252", a superset of ISO-8859-1). They will look different with
  19. other codepages or on Linux, Unix, or Mac OS X. Use these files with FLTK 1.1
  20. or an editor with the corresponding codepage or locale.
  21. The UTF-8 encoded files should be usable with FLTK 1.3, FLTK 2, or FLTK 3
  22. (future). They contain UTF-8 encoded characters at the table positions,
  23. where the corresponding ISO-8859-1, Windows copepage 1252, or Mac OS Roman
  24. characters would be. They should look identical as the image file (cp1252.png)
  25. or MacRoman_utf-8.png, resp., on all UTF-8 capable systems.
  26. The files with names iso-8859-1_* contain only the ISO-8859-1 subset, i.e.
  27. the colums with character codes 0x80 - 0x9F (U+0080 - U+009F) are empty.
  28. Mac OS Roman is the Apple Mac native character set before it became Unicode
  29. by default (OS X). The corresponding files are ordered as they would appear
  30. with the native character set / encoding.
  31. The *.html files contain a character encoding meta tag, so that they should
  32. be viewable with all standard browsers. They can be used for cut'n'paste and
  33. drag'n'drop tests from a 'native' application (browser) to FLTK, e.g.
  34. test/editor or test/input.
  35. Special Notes:
  36. 0x22 (U+0022: "quotation mark") is doubled intentionally. This has been
  37. done for better results in test/editor, because otherwise the rest of the
  38. file would be shown in blue color (as a comment).
  39. 0x98 (U+02DC: "small tilde") may not display correctly on Windows systems.
  40. I saw the same effect with other Windows editors as well. The following
  41. characters may be displayed "shifted left" by one position. Seems to work
  42. correctly on Linux (with UTF-8 encoding).
  43. Mac OS Roman: 0xF0 (U+F8FF: "Apple logo") may not be printable, depending
  44. on installed fonts on other systems.
  45. There may currently be drawing artefacts when moving the cursor forwards
  46. and/or backwards over some "special" characters.
  47. References:
  48. http://unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT
  49. http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1252.TXT
  50. http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/ROMAN.TXT
  51. http://en.wikipedia.org/wiki/Mac_OS_Roman
  52. Files:
  53. The first two files are images of how it should look:
  54. cp1252.png full Windows Codepage 1252 (Western)
  55. MacRoman_utf-8.png full Mac OS Roman character set (w/o Apple logo)
  56. The following four files contain the full Windows Codepage 1252:
  57. cp1252.txt native (Windows) encoding, suitable for FLTK 1.1
  58. cp1252_utf-8.txt UTF-8 encoding, suitable for FLTK 1.3 and greater
  59. cp1252.html native (Windows) encoding, use with any browser
  60. cp1252_utf-8.html UTF-8 encoding, use with any browser
  61. The following two files contain only the ISO-8859-1 subset:
  62. iso-8859-1.txt native (Windows) encoding, suitable for FLTK 1.1
  63. iso-8859-1_utf-8.txt UTF-8 encoding, suitable for FLTK 1.3 and greater
  64. The following file contains the full Mac OS Roman character set:
  65. MacRoman_utf-8.txt UTF-8 encoding, suitable for FLTK 1.3 and greater
  66. (use cp1252.txt with FLTK 1.1 on Mac OS instead)
  67. Other developer support files:
  68. ================================================================================
  69. doxystar.cxx Use this to reformat doxygen comments (test only).
  70. Compile with: g++ -o doxystar doxystar.cxx
  71. Usage: cat file | doxystar
  72. DO NOT USE this for current code development!
  73. It is intended for testing of future code reformatting !
  74. //
  75. // End of $Id: README 8008 2010-12-11 14:39:07Z AlbrechtS $.
  76. //