fltk/src/xutf8
Greg Ercolano 6cbde8909b xutf8 files code conformance:
o C files containing C++ "//" comments -> C style "/* */" comments
    o Converted unintended doxygen style comments to regular C comments
    o FLTK brace/indent coding standard conformance
    o Tested linux + sgi
    o Avoided mods to xutf8/lcUniConv [libiconv/FSF code]
      to avoid unwanted diffs with future updates of that lib
      as per Fabien's fltk.dev request 03/14/09.
      (Those files already compliant anyway)



git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6698 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2009-03-18 04:47:01 +00:00
..
headers Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
lcUniConv Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
utils xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
case.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
COPYING LGPL headers and svn footers compliance (STR#2085) 2009-03-13 22:43:43 +00:00
imKStoUCS.c LGPL headers and svn footers compliance (STR#2085) 2009-03-13 22:43:43 +00:00
is_right2left.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
is_spacing.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
keysym2Ucs.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
makedepend Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
Makefile Fixed mingw was broken because src/XUtf8 Makefile didn't point to proper ../../lib and ../../makeinclude paths. 2008-10-19 01:27:26 +00:00
Makefile.bak Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
README Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
stamp-h Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
stamp-h.in Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
test2.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
test.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
ucs2fontmap.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
ucs2fontmap.c.mini LGPL headers and svn footers compliance (STR#2085) 2009-03-13 22:43:43 +00:00
utf8Input.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
utf8Utils.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
utf8Wrap.c xutf8 files code conformance: 2009-03-18 04:47:01 +00:00
Ximint.h Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00
Xlibint.h Merging the UTF8 patch, consisting of O'ksi'd s original 1.1.6 patch and additions by Ian. PLEASE BE AWARE that the patch in its current incarnation is a regression in many aspects and further work is required before we can announce Unicode support. 2008-09-10 23:56:49 +00:00



supported encodings :
---------------------
iso10646-1
iso8859-1 
iso8859-2 
iso8859-3 
iso8859-4 
iso8859-5 
iso8859-6 
iso8859-7 
iso8859-8  
iso8859-9 
iso8859-10
iso8859-11
iso8859-13 
iso8859-14 
iso8859-15 
koi8-r 
koi8-u 
big5-0 
gb2312.1980-0 
jisx0201.1976-0 
jisx0208.1983-0 
jisx0212.1990-0 
ksc5601.1987-0
symbol 
dingbats


TIPS:
=====

You must add "-lXutf8" to the library list in your Makefile. 

When using "GNU autoconf" add these lines to your "configure.in" :

dnl Test to see if libXutf8 is on this machine:
XUTFLIB=
AC_CHECK_LIB(Xutf8, XUtf8IsNonSpacing, \
        AC_DEFINE(HAVE_XUTF8) XUTFLIB=" -lXutf8", ,\
        -lX11 $X_EXTRA_LIBS)
AC_SUBST(XUTFLIB)


ORIGINAL FILES :
================

The directory lcUniConv is copied from the xfree project cvs system.
(
export CVS_RSH=ssh
export CVSROOT=anoncvs@anoncvs.xfree86.org:/cvs
cvs checkout xc/lib/X11/lcUniConv
password: anoncvs
)

The file imKStoUCS.c is copied from the xfree project cvs system.
(
export CVS_RSH=ssh
export CVSROOT=anoncvs@anoncvs.xfree86.org:/cvs
cvs checkout xc/lib/X11
password: anoncvs
)