@library{wxbase}
@category{FIXME}
- @see wxMBConvUTF8, @ref overview_mbconvclasses "wxMBConv classes overview"
+ @see wxMBConvUTF8, @ref overview_mbconv "wxMBConv classes overview"
*/
class wxMBConvUTF7 : public wxMBConv
{
@library{wxbase}
@category{FIXME}
- @see wxMBConvUTF7, @ref overview_mbconvclasses "wxMBConv classes overview"
+ @see wxMBConvUTF7, @ref overview_mbconv "wxMBConv classes overview"
*/
class wxMBConvUTF8 : public wxMBConv
{
@library{wxbase}
@category{FIXME}
- @see wxMBConvUTF8, wxMBConvUTF32, @ref overview_mbconvclasses "wxMBConv classes
+ @see wxMBConvUTF8, wxMBConvUTF32, @ref overview_mbconv "wxMBConv classes
overview"
*/
class wxMBConvUTF16 : public wxMBConv
@library{wxbase}
@category{FIXME}
- @see wxMBConv, wxEncodingConverter, @ref overview_mbconvclasses "wxMBConv
+ @see wxMBConv, wxEncodingConverter, @ref overview_mbconv "wxMBConv
classes overview"
*/
class wxCSConv : public wxMBConv
{
public:
- //@{
/**
- Constructor. You may specify either the name of the character set you want to
- convert from/to or an encoding constant. If the character set name (or the
- encoding) is not recognized, ISO 8859-1 is used as fall back.
+ Constructor. You can specify the name of the character set you want to
+ convert from/to. If the character set name is not recognized, ISO 8859-1
+ is used as fall back.
*/
wxCSConv(const wxChar* charset);
+
+ /**
+ Constructor. You can specify an encoding constant for the
+ character set you want to convert from/to or. If the encoding
+ is not recognized, ISO 8859-1 is used as fall back.
+ */
wxCSConv(wxFontEncoding encoding);
- //@}
/**
Destructor frees any resources needed to perform the conversion.
@library{wxbase}
@category{FIXME}
- @see @ref overview_mbconvclasses "wxMBConv classes overview"
+ @see @ref overview_mbconv "wxMBConv classes overview"
*/
class wxMBConvFile : public wxMBConv
{
@library{wxbase}
@category{FIXME}
- @see wxMBConvUTF8, wxMBConvUTF16, @ref overview_mbconvclasses "wxMBConv classes
+ @see wxMBConvUTF8, wxMBConvUTF16, @ref overview_mbconv "wxMBConv classes
overview"
*/
class wxMBConvUTF32 : public wxMBConv
@library{wxbase}
@category{FIXME}
- @see wxCSConv, wxEncodingConverter, @ref overview_mbconvclasses "wxMBConv
+ @see wxCSConv, wxEncodingConverter, @ref overview_mbconv "wxMBConv
classes overview"
*/
class wxMBConv
@ref overview_unicode "Unicode overview" for more information
about it.
+ wxString uses the current locale encoding to convert any C string
+ literal to Unicode. The same is done for converting to and from
+ @c std::string and for the return value of c_str(). For this
+ conversion, the @a wxConvLocal class instance is used. See wxCSConv.
+
wxString implements most of the methods of the @c std::string class.
These standard functions are only listed here, but there are not
fully documented in this manual. Please see the STL documentation.