~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to doc/html/qtextencoder.html

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<!DOCTYPE html
 
3
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
5
<!-- /tmp/qt-4.0.0-espenr-1119621036935/qt-x11-opensource-desktop-4.0.0/src/corelib/codecs/qtextcodec.cpp -->
 
6
<head>
 
7
    <title>Qt 4.0: QTextEncoder Class Reference</title>
 
8
    <style>h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }
 
9
a:link { color: #004faf; text-decoration: none }
 
10
a:visited { color: #672967; text-decoration: none }
 
11
td.postheader { font-family: sans-serif }
 
12
tr.address { font-family: sans-serif }
 
13
body { background: #ffffff; color: black; }</style>
 
14
</head>
 
15
<body>
 
16
<table border="0" cellpadding="0" cellspacing="0" width="100%">
 
17
<tr>
 
18
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></td>
 
19
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="annotated.html"><font color="#004faf">Annotated</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td>
 
20
<td align="right" valign="top" width="230"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></td></tr></table><h1 align="center">QTextEncoder Class Reference</h1>
 
21
<p>The QTextEncoder class provides a state-based encoder. <a href="#details">More...</a></p>
 
22
<pre>#include &lt;QTextEncoder&gt;</pre><p>Part of the <a href="qtcore.html">QtCore</a> module.</p>
 
23
<p><b>Note:</b> All the functions in this class are <a href="threads.html#reentrant">reentrant</a>.</p>
 
24
<ul>
 
25
<li><a href="qtextencoder-members.html">List of all members, including inherited members</a></li>
 
26
</ul>
 
27
<a name="public-functions"></a>
 
28
<h3>Public Functions</h3>
 
29
<ul>
 
30
<li><div class="fn"/><b><a href="qtextencoder.html#QTextEncoder">QTextEncoder</a></b> ( const QTextCodec * <i>codec</i> )</li>
 
31
<li><div class="fn"/><b><a href="qtextencoder.html#dtor.QTextEncoder">~QTextEncoder</a></b> ()</li>
 
32
<li><div class="fn"/>QByteArray <b><a href="qtextencoder.html#fromUnicode">fromUnicode</a></b> ( const QString &amp; <i>str</i> )</li>
 
33
<li><div class="fn"/>QByteArray <b><a href="qtextencoder.html#fromUnicode-2">fromUnicode</a></b> ( const QChar * <i>uc</i>, int <i>len</i> )</li>
 
34
<li><div class="fn"/>QByteArray <b><a href="qtextencoder.html#fromUnicode-3">fromUnicode</a></b> ( const QString &amp; <i>uc</i>, int &amp; <i>lenInOut</i> )</li>
 
35
</ul>
 
36
<a name="details"></a>
 
37
<hr />
 
38
<h2>Detailed Description</h2>
 
39
<p>The QTextEncoder class provides a state-based encoder.</p>
 
40
<p>A text encoder converts text from Unicode into an encoded text format using a specific codec.</p>
 
41
<p>The encoder converts Unicode into another format, remembering any state that is required between calls.</p>
 
42
<p>See also <a href="qtextcodec.html#makeEncoder">QTextCodec::makeEncoder</a>() and <a href="qtextdecoder.html">QTextDecoder</a>.</p>
 
43
<hr />
 
44
<h2>Member Function Documentation</h2>
 
45
<h3 class="fn"><a name="QTextEncoder"></a>QTextEncoder::QTextEncoder ( const <a href="qtextcodec.html">QTextCodec</a> * <i>codec</i> )</h3>
 
46
<p>Constructs a text encoder for the given <i>codec</i>.</p>
 
47
<h3 class="fn"><a name="dtor.QTextEncoder"></a>QTextEncoder::~QTextEncoder ()</h3>
 
48
<p>Destroys the encoder.</p>
 
49
<h3 class="fn"><a name="fromUnicode"></a><a href="qbytearray.html">QByteArray</a> QTextEncoder::fromUnicode ( const <a href="qstring.html">QString</a> &amp; <i>str</i> )</h3>
 
50
<p>Converts the Unicode string <i>str</i> into an encoded <a href="qbytearray.html">QByteArray</a>.</p>
 
51
<h3 class="fn"><a name="fromUnicode-2"></a><a href="qbytearray.html">QByteArray</a> QTextEncoder::fromUnicode ( const <a href="qchar.html">QChar</a> * <i>uc</i>, int <i>len</i> )</h3>
 
52
<p>This is an overloaded member function, provided for convenience. It behaves essentially like the above function.</p>
 
53
<p>Converts <i>len</i> characters (not bytes) from <i>uc</i>, and returns the result in a <a href="qbytearray.html">QByteArray</a>.</p>
 
54
<h3 class="fn"><a name="fromUnicode-3"></a><a href="qbytearray.html">QByteArray</a> QTextEncoder::fromUnicode ( const <a href="qstring.html">QString</a> &amp; <i>uc</i>, int &amp; <i>lenInOut</i> )</h3>
 
55
<p>This is an overloaded member function, provided for convenience. It behaves essentially like the above function.</p>
 
56
<p>Converts <i>lenInOut</i> characters (not bytes) from <i>uc</i>, and returns the result in a <a href="qbytearray.html">QByteArray</a>. The number of characters read is returned in the <i>lenInOut</i> parameter.</p>
 
57
<p /><address><hr /><div align="center">
 
58
<table width="100%" cellspacing="0" border="0"><tr class="address">
 
59
<td width="30%">Copyright &copy; 2005 <a href="trolltech.html">Trolltech</a></td>
 
60
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
 
61
<td width="30%" align="right"><div align="right">Qt 4.0.0</div></td>
 
62
</tr></table></div></address></body>
 
63
</html>