2000-07-15 19:51:35 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%% Name: tmbconv.tex
|
2004-05-04 08:27:20 +00:00
|
|
|
%% Purpose: Overview of the wxMBConv classes in wxWidgets
|
2000-07-15 19:51:35 +00:00
|
|
|
%% Author: Ove Kaaven
|
|
|
|
%% Modified by:
|
|
|
|
%% Created: 25.03.00
|
|
|
|
%% RCS-ID: $Id$
|
|
|
|
%% Copyright: (c) 2000 Ove Kaaven
|
2005-02-22 15:09:56 +00:00
|
|
|
%% Licence: wxWindows licence
|
2000-07-15 19:51:35 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
\section{wxMBConv classes overview}\label{mbconvclasses}
|
|
|
|
|
2003-11-06 15:21:40 +00:00
|
|
|
Classes: \helpref{wxMBConv}{wxmbconv}, wxMBConvLibc,
|
2000-07-15 19:51:35 +00:00
|
|
|
\helpref{wxMBConvUTF7}{wxmbconvutf7}, \helpref{wxMBConvUTF8}{wxmbconvutf8},
|
2005-03-30 15:20:02 +00:00
|
|
|
\helpref{wxCSConv}{wxcsconv},
|
2003-09-22 20:34:03 +00:00
|
|
|
\helpref{wxMBConvUTF16}{wxmbconvutf16}, \helpref{wxMBConvUTF32}{wxmbconvutf32}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2005-03-30 15:20:02 +00:00
|
|
|
The wxMBConv classes in wxWidgets enable an Unicode-aware application to
|
2000-07-15 19:51:35 +00:00
|
|
|
easily convert between Unicode and the variety of 8-bit encoding systems still
|
|
|
|
in use.
|
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{Background: The need for conversion}\label{needforconversion}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
As programs are becoming more and more globalized, and users exchange documents
|
|
|
|
across country boundaries as never before, applications increasingly need to
|
|
|
|
take into account all the different character sets in use around the world. It
|
|
|
|
is no longer enough to just depend on the default byte-sized character set that
|
|
|
|
computers have traditionally used.
|
|
|
|
|
|
|
|
A few years ago, a solution was proposed: the Unicode standard. Able to contain
|
|
|
|
the complete set of characters in use in one unified global coding system,
|
|
|
|
it would resolve the character set problems once and for all.
|
|
|
|
|
|
|
|
But it hasn't happened yet, and the migration towards Unicode has created new
|
|
|
|
challenges, resulting in "compatibility encodings" such as UTF-8. A large
|
|
|
|
number of systems out there still depends on the old 8-bit encodings, hampered
|
|
|
|
by the huge amounts of legacy code still widely deployed. Even sending
|
|
|
|
Unicode data from one Unicode-aware system to another may need encoding to an
|
|
|
|
8-bit multibyte encoding (UTF-7 or UTF-8 is typically used for this purpose), to
|
|
|
|
pass unhindered through any traditional transport channels.
|
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{Background: The wxString class}\label{conversionandwxstring}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2004-05-04 08:27:20 +00:00
|
|
|
If you have compiled wxWidgets in Unicode mode, the wxChar type will become
|
2000-07-15 19:51:35 +00:00
|
|
|
identical to wchar\_t rather than char, and a wxString stores wxChars. Hence,
|
|
|
|
all wxString manipulation in your application will then operate on Unicode
|
|
|
|
strings, and almost as easily as working with ordinary char strings (you
|
|
|
|
just need to remember to use the wxT() macro to encapsulate any string
|
|
|
|
literals).
|
|
|
|
|
|
|
|
But often, your environment doesn't want Unicode strings. You could be sending
|
|
|
|
data over a network, or processing a text file for some other application. You
|
|
|
|
need a way to quickly convert your easily-handled Unicode data to and from a
|
2005-04-08 14:34:30 +00:00
|
|
|
traditional 8-bit encoding. And this is what the wxMBConv classes do.
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{wxMBConv classes}\label{wxmbconvclasses}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
The base class for all these conversions is the wxMBConv class (which itself
|
|
|
|
implements standard libc locale conversion). Derived classes include
|
2003-09-22 20:34:03 +00:00
|
|
|
wxMBConvLibc, several different wxMBConvUTFxxx classes, and wxCSConv, which
|
|
|
|
implement different kinds of conversions. You can also derive your own class
|
|
|
|
for your own custom encoding and use it, should you need it. All you need to do
|
|
|
|
is override the MB2WC and WC2MB methods.
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{wxMBConv objects}\label{wxmbconvobjects}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2004-05-04 08:27:20 +00:00
|
|
|
Several of the wxWidgets-provided wxMBConv classes have predefined instances
|
2005-03-29 23:20:08 +00:00
|
|
|
(wxConvLibc, wxConvFileName, wxConvUTF7, wxConvUTF8, wxConvLocal). You can use
|
2003-09-22 20:34:03 +00:00
|
|
|
these predefined objects directly, or you can instantiate your own objects.
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2003-09-22 20:34:03 +00:00
|
|
|
A variable, wxConvCurrent, points to the conversion object that the user
|
|
|
|
interface is supposed to use, in the case that the user interface is not
|
|
|
|
Unicode-based (like with GTK+ 1.2). By default, it points to wxConvLibc or
|
|
|
|
wxConvLocal, depending on which works best on the current platform.
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{wxCSConv}\label{wxcsconvclass}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
The wxCSConv class is special because when it is instantiated, you can tell it
|
|
|
|
which character set it should use, which makes it meaningful to keep many
|
|
|
|
instances of them around, each with a different character set (or you can
|
|
|
|
create a wxCSConv instance on the fly).
|
|
|
|
|
|
|
|
The predefined wxCSConv instance, wxConvLocal, is preset to use the
|
|
|
|
default user character set, but you should rarely need to use it directly,
|
|
|
|
it is better to go through wxConvCurrent.
|
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{Converting strings}\label{convertingstrings}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
Once you have chosen which object you want to use to convert your text,
|
|
|
|
here is how you would use them with wxString. These examples all assume
|
2004-05-04 08:27:20 +00:00
|
|
|
that you are using a Unicode build of wxWidgets, although they will still
|
2000-07-15 19:51:35 +00:00
|
|
|
compile in a non-Unicode build (they just won't convert anything).
|
|
|
|
|
|
|
|
Example 1: Constructing a wxString from input in current encoding.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxString str(input_data, *wxConvCurrent);
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Example 2: Input in UTF-8 encoding.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxString str(input_data, wxConvUTF8);
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Example 3: Input in KOI8-R. Construction of wxCSConv instance on the fly.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxString str(input_data, wxCSConv(wxT("koi8-r")));
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Example 4: Printing a wxString to stdout in UTF-8 encoding.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
puts(str.mb_str(wxConvUTF8));
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Example 5: Printing a wxString to stdout in custom encoding.
|
|
|
|
Using preconstructed wxCSConv instance.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxCSConv cust(user_encoding);
|
|
|
|
printf("Data: %s\n", (const char*) str.mb_str(cust));
|
|
|
|
\end{verbatim}
|
|
|
|
|
2001-05-24 10:39:33 +00:00
|
|
|
Note: Since mb\_str() returns a temporary wxCharBuffer to hold the result
|
2000-07-15 19:51:35 +00:00
|
|
|
of the conversion, you need to explicitly cast it to const char* if you use
|
|
|
|
it in a vararg context (like with printf).
|
|
|
|
|
2004-09-20 11:21:04 +00:00
|
|
|
\subsection{Converting buffers}\label{convertingbuffers}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
If you have specialized needs, or just don't want to use wxString, you
|
|
|
|
can also use the conversion methods of the conversion objects directly.
|
|
|
|
This can even be useful if you need to do conversion in a non-Unicode
|
2004-05-04 08:27:20 +00:00
|
|
|
build of wxWidgets; converting a string from UTF-8 to the current
|
2000-07-15 19:51:35 +00:00
|
|
|
encoding should be possible by doing this:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxString str(wxConvUTF8.cMB2WC(input_data), *wxConvCurrent);
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Here, cMB2WC of the UTF8 object returns a wxWCharBuffer containing a Unicode
|
|
|
|
string. The wxString constructor then converts it back to an 8-bit character
|
|
|
|
set using the passed conversion object, *wxConvCurrent. (In a Unicode build
|
2004-05-04 08:27:20 +00:00
|
|
|
of wxWidgets, the constructor ignores the passed conversion object and
|
2000-07-15 19:51:35 +00:00
|
|
|
retains the Unicode data.)
|
|
|
|
|
|
|
|
This could also be done by first making a wxString of the original data:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
wxString input_str(input_data);
|
|
|
|
wxString str(input_str.wc_str(wxConvUTF8), *wxConvCurrent);
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
To print a wxChar buffer to a non-Unicode stdout:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
printf("Data: %s\n", (const char*) wxConvCurrent->cWX2MB(unicode_data));
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
If you need to do more complex processing on the converted data, you
|
|
|
|
may want to store the temporary buffer in a local variable:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
const wxWX2MBbuf tmp_buf = wxConvCurrent->cWX2MB(unicode_data);
|
|
|
|
const char *tmp_str = (const char*) tmp_buf;
|
|
|
|
printf("Data: %s\n", tmp_str);
|
|
|
|
process_data(tmp_str);
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
If a conversion had taken place in cWX2MB (i.e. in a Unicode build),
|
2001-05-24 10:39:33 +00:00
|
|
|
the buffer will be deallocated as soon as tmp\_buf goes out of scope.
|
2000-07-15 19:51:35 +00:00
|
|
|
(The macro wxWX2MBbuf reflects the correct return value of cWX2MB
|
|
|
|
(either char* or wxCharBuffer), except for the const.)
|
|
|
|
|