Sophie

Sophie

distrib > CentOS > 5 > x86_64 > by-pkgid > f89abdeb016114b348a5c554d8214329 > files > 7764

kdelibs-apidocs-3.5.4-30.el5.centos.x86_64.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US">

<head>
  <title>kio/kio: KIO::ForwardingSlaveBase Class Reference (kio/kio)</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

  <meta http-equiv="Content-Style-Type" content="text/css" />

  <meta http-equiv="pics-label" content='(pics-1.1 "http://www.icra.org/ratingsv02.html" comment "ICRAonline DE v2.0" l gen true for "http://www.kde.org"  r (nz 1 vz 1 lz 1 oz 1 cb 1) "http://www.rsac.org/ratingsv01.html" l gen true for "http://www.kde.org"  r (n 0 s 0 v 0 l 0))' />

  <meta name="trademark" content="KDE e.V." />
  <meta name="description" content="K Desktop Environment Homepage, KDE.org" />
  <meta name="MSSmartTagsPreventParsing" content="true" />
  <meta name="robots" content="all" />

  <link rel="shortcut icon" href="../../../favicon.ico" />

<link rel="stylesheet" media="screen" type="text/css" title="APIDOX" href="doxygen.css" />



</head>

<body>

<div id="nav_header_top" align="right">
  <a href="#content" class="doNotDisplay" accesskey="2">Skip to main content ::</a>

  <a href="../../.."><img id="nav_header_logo" alt="Home" align="left" src="../../../kde_gear_64.png" border="0" /></a>
  <span class="doNotDisplay">::</span>

  <div id="nav_header_title" align="left">KDE API Reference</div>


</div>

<div id="nav_header_bottom" align="right">
  <span class="doNotDisplay">:: <a href="#navigation" accesskey="5">Skip to Link Menu</a><br/></span>
  <div id="nav_header_bottom_right" style="text-align: left;">
/ <a href="../../..">API Reference</a>
 / <a href="../../html/index.html">kio</a> / <a href=".">kio</a>
  </div>
</div>


<table id="main" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
      <td valign="top" class="menuheader" height="0"></td>

  <td id="contentcolumn" valign="top" rowspan="2" >
    <div id="content" style="padding-top: 0px;"><div style="width:100%; margin: 0px; padding: 0px;">
    <a name="content"></a>


<!-- Generated by Doxygen 1.4.7 -->
<div class="nav">
<a class="el" href="namespaceKIO.html">KIO</a>::<a class="el" href="classKIO_1_1ForwardingSlaveBase.html">ForwardingSlaveBase</a></div>
<h1>KIO::ForwardingSlaveBase Class Reference</h1><!-- doxytag: class="KIO::ForwardingSlaveBase" --><!-- doxytag: inherits="QObject,KIO::SlaveBase" --><code>#include &lt;<a class="el" href="forwardingslavebase_8h-source.html">forwardingslavebase.h</a>&gt;</code>
<p>
<p>Inheritance diagram for KIO::ForwardingSlaveBase:
<p><center><img src="classKIO_1_1ForwardingSlaveBase.png" usemap="#KIO::ForwardingSlaveBase_map" border="0" alt=""></center>
<map name="KIO::ForwardingSlaveBase_map">
<area doxygen="qt.tag:" href="qobject.html" alt="QObject" shape="rect" coords="0,0,164,24">
<area href="classKIO_1_1SlaveBase.html" alt="KIO::SlaveBase" shape="rect" coords="174,0,338,24">
</map>
<a href="classKIO_1_1ForwardingSlaveBase-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
This class should be used as a base for ioslaves acting as a forwarder to other ioslaves. 
<p>
It has been designed to support only local filesystem like ioslaves.<p>
If the resulting ioslave should be a simple proxy, you only need to implement the <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#3f0a679789063a36d4be4fb764645a71">ForwardingSlaveBase::rewriteURL()</a> method.<p>
For more advanced behavior, the classic ioslave methods should be reimplemented, because their default behavior in this class is to forward using the <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#3f0a679789063a36d4be4fb764645a71">ForwardingSlaveBase::rewriteURL()</a> method.<p>
A possible code snippet for an advanced <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#45581c5b4f1f6938efe5955416591403">stat()</a> behavior would look like this in the child class:<p>
<div class="fragment"><pre class="fragment">     <span class="keywordtype">void</span> ChildProtocol::stat(<span class="keyword">const</span> KURL &amp;url)
     {
         <span class="keywordtype">bool</span> is_special = <span class="keyword">false</span>;
         
         <span class="comment">// Process the URL to see if it should have</span>
         <span class="comment">// a special treatment</span>
         
         <span class="keywordflow">if</span> ( is_special )
         {
             <span class="comment">// Handle the URL ourselves</span>
             <a class="codeRef" doxygen="qt.tag:" href="qvaluelist.html">KIO::UDSEntry</a> entry;
             <span class="comment">// Fill entry with UDSAtom instances</span>
             statEntry(entry);
             finished();
         }
         <span class="keywordflow">else</span>
         {
             <span class="comment">// Setup the ioslave internal state if</span>
             <span class="comment">// required by ChildProtocol::rewriteURL()</span>
             ForwardingSlaveBase::stat(url);
         }
     }
</pre></div><p>
Of course in this case, you surely need to reimplement <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#713b9c99735492c393753b2d01105b2d">listDir()</a> and <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#d6077b43b41fa47fe565b008f8f5a17f">get()</a> accordingly.<p>
If you want view on directories to be correctly refreshed when something changes on a forwarded URL, you'll need a companion kded module to emit the <a class="el" href="classKDirNotify.html">KDirNotify</a> Files*() DCOP signals.<p>
This class was initially used for media:/ ioslave. This ioslave code and the MediaDirNotify class of its companion kded module can be a good source of inspiration.<p>
<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#3f0a679789063a36d4be4fb764645a71">ForwardingSlaveBase::rewriteURL()</a> </dd></dl>
<dl compact><dt><b>Since:</b></dt><dd>3.4 </dd></dl>
<dl compact><dt><b>Author:</b></dt><dd>Kevin Ottens &lt;<a href="mailto:ervin@ipsquad.net">ervin@ipsquad.net</a>&gt; </dd></dl>

<p>

<p>
Definition at line <a class="el" href="forwardingslavebase_8h-source.html#l00088">88</a> of file <a class="el" href="forwardingslavebase_8h-source.html">forwardingslavebase.h</a>.<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="9b2a2e265a97946a4a098580d7ed4966"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::ForwardingSlaveBase" ref="9b2a2e265a97946a4a098580d7ed4966" args="(const QCString &amp;protocol, const QCString &amp;poolSocket, const QCString &amp;appSocket)" -->
&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#9b2a2e265a97946a4a098580d7ed4966">ForwardingSlaveBase</a> (const <a class="elRef" doxygen="qt.tag:" href="qcstring.html">QCString</a> &amp;protocol, const <a class="elRef" doxygen="qt.tag:" href="qcstring.html">QCString</a> &amp;poolSocket, const <a class="elRef" doxygen="qt.tag:" href="qcstring.html">QCString</a> &amp;appSocket)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="2b536a751602adb7f72dbd2a4ac1d669"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::~ForwardingSlaveBase" ref="2b536a751602adb7f72dbd2a4ac1d669" args="()" -->
virtual&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#2b536a751602adb7f72dbd2a4ac1d669">~ForwardingSlaveBase</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#d6077b43b41fa47fe565b008f8f5a17f">get</a> (const KURL &amp;url)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#2d1009da0201fa8a44f9e1315273ddfd">put</a> (const KURL &amp;url, int permissions, bool overwrite, bool resume)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#45581c5b4f1f6938efe5955416591403">stat</a> (const KURL &amp;url)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#02edc1a4fa28d203dacca8c5d2a51080">mimetype</a> (const KURL &amp;url)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#713b9c99735492c393753b2d01105b2d">listDir</a> (const KURL &amp;url)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#16203bf9cfff1531835f0559f998b07c">mkdir</a> (const KURL &amp;url, int permissions)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#aebd9defec018afbbc3f0395d5307b4b">rename</a> (const KURL &amp;src, const KURL &amp;dest, bool overwrite)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#f5b8c2515b0452ebee2066cbe2266dca">symlink</a> (const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;target, const KURL &amp;dest, bool overwrite)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#525d0f9173143abf8dd813e5da708502">chmod</a> (const KURL &amp;url, int permissions)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#5421dfd4181c189fdf5b4e6a2d9385a1">copy</a> (const KURL &amp;src, const KURL &amp;dest, int permissions, bool overwrite)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#82457a19abad1f958d9b52f5deb8d9c9">del</a> (const KURL &amp;url, bool isfile)</td></tr>

<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#3f0a679789063a36d4be4fb764645a71">rewriteURL</a> (const KURL &amp;url, KURL &amp;newURL)=0</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#0f0fe84d07948b9daf8a59bba8321713">prepareUDSEntry</a> (<a class="elRef" doxygen="qt.tag:" href="qvaluelist.html">KIO::UDSEntry</a> &amp;entry, bool listing=false) const </td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">KURL&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#4c9446e4e50faf21874166eebcdb2388">processedURL</a> () const </td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">KURL&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKIO_1_1ForwardingSlaveBase.html#142804a39c3ee4275c34b75d569274e4">requestedURL</a> () const </td></tr>

</table>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="525d0f9173143abf8dd813e5da708502"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::chmod" ref="525d0f9173143abf8dd813e5da708502" args="(const KURL &amp;url, int permissions)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::chmod           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname"> <em>permissions</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Change permissions on <code>path</code> The slave emits ERR_DOES_NOT_EXIST or ERR_CANNOT_CHMOD. 
<p>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#83365ff7f5ca58c9e3ec0c223b8d6038">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00235">235</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="5421dfd4181c189fdf5b4e6a2d9385a1"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::copy" ref="5421dfd4181c189fdf5b4e6a2d9385a1" args="(const KURL &amp;src, const KURL &amp;dest, int permissions, bool overwrite)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::copy           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname"> <em>permissions</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>overwrite</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Copy <code>src</code> into <code>dest</code>. 
<p>
If the slave returns an error ERR_UNSUPPORTED_ACTION, the job will ask for get + put instead. <dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>src</em>&nbsp;</td><td>where to copy the file from (decoded) </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>dest</em>&nbsp;</td><td>where to copy the file to (decoded) </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>permissions</em>&nbsp;</td><td>may be -1. In this case no special permission mode is set. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>overwrite</em>&nbsp;</td><td>if true, any existing file will be overwritten </td></tr>
  </table>
</dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#9a39d9ce598d112c8ab625dd241f99ab">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00249">249</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="82457a19abad1f958d9b52f5deb8d9c9"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::del" ref="82457a19abad1f958d9b52f5deb8d9c9" args="(const KURL &amp;url, bool isfile)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::del           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>isfile</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Delete a file or directory. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>url</em>&nbsp;</td><td>file/directory to delete </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>isfile</em>&nbsp;</td><td>if true, a file should be deleted. if false, a directory should be deleted. </td></tr>
  </table>
</dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#df9650287055c9238a1ddfba037bdf2a">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00265">265</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="d6077b43b41fa47fe565b008f8f5a17f"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::get" ref="d6077b43b41fa47fe565b008f8f5a17f" args="(const KURL &amp;url)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::get           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
get, aka read. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>url</em>&nbsp;</td><td>the full url for this request. Host, port and user of the URL can be assumed to be the same as in the last <a class="el" href="classKIO_1_1SlaveBase.html#a317789e4dfdbff726a6fd547b24dcab">setHost()</a> call. The slave emits the data through data </td></tr>
  </table>
</dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#79b675fda88d631f0b6dc578abbb479e">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00119">119</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="713b9c99735492c393753b2d01105b2d"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::listDir" ref="713b9c99735492c393753b2d01105b2d" args="(const KURL &amp;url)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::listDir           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Lists the contents of <code>url</code>. 
<p>
The slave should emit ERR_CANNOT_ENTER_DIRECTORY if it doesn't exist, if we don't have enough permissions, or if it is a file It should also emit totalFiles as soon as it knows how many files it will list. 
<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#cfee67cfc81e5d2fae72cb20c2707d4b">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00177">177</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="02edc1a4fa28d203dacca8c5d2a51080"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::mimetype" ref="02edc1a4fa28d203dacca8c5d2a51080" args="(const KURL &amp;url)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::mimetype           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Finds mimetype for one file or directory. 
<p>
This method should either emit 'mimeType' or it should send a block of data big enough to be able to determine the mimetype.<p>
If the slave doesn't reimplement it, a get will be issued, i.e. the whole file will be downloaded before determining the mimetype on it - this is obviously not a good thing in most cases. 
<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#46a782488ab6760075fd2cd686133cc6">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00163">163</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="16203bf9cfff1531835f0559f998b07c"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::mkdir" ref="16203bf9cfff1531835f0559f998b07c" args="(const KURL &amp;url, int permissions)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::mkdir           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname"> <em>permissions</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Create a directory. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>url</em>&nbsp;</td><td>path to the directory to create </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>permissions</em>&nbsp;</td><td>the permissions to set after creating the directory (-1 if no permissions to be set) The slave emits ERR_COULD_NOT_MKDIR if failure. </td></tr>
  </table>
</dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#32a4d92f51277226fd9588324d52c888">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00191">191</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="0f0fe84d07948b9daf8a59bba8321713"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::prepareUDSEntry" ref="0f0fe84d07948b9daf8a59bba8321713" args="(KIO::UDSEntry &amp;entry, bool listing=false) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::prepareUDSEntry           </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="qt.tag:" href="qvaluelist.html">KIO::UDSEntry</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>entry</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>listing</em> = <code>false</code></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"> const<code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Allow to modify a UDSEntry before it's sent to the ioslave enpoint. 
<p>
This is the default implementation working in most case, but sometimes you could make use of more forwarding black magic (for example dynamically transform any desktop file into a fake directory...)<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>entry</em>&nbsp;</td><td>the UDSEntry to post-process </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>listing</em>&nbsp;</td><td>indicate if this entry it created during a listDir operation </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00066">66</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="4c9446e4e50faf21874166eebcdb2388"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::processedURL" ref="4c9446e4e50faf21874166eebcdb2388" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">KURL KIO::ForwardingSlaveBase::processedURL           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"> const<code> [inline, protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Return the URL being processed by the ioslave Only access it inside <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#0f0fe84d07948b9daf8a59bba8321713">prepareUDSEntry()</a>. 
<p>

<p>
Definition at line <a class="el" href="forwardingslavebase_8h-source.html#l00154">154</a> of file <a class="el" href="forwardingslavebase_8h-source.html">forwardingslavebase.h</a>.
</div>
</div><p>
<a class="anchor" name="2d1009da0201fa8a44f9e1315273ddfd"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::put" ref="2d1009da0201fa8a44f9e1315273ddfd" args="(const KURL &amp;url, int permissions, bool overwrite, bool resume)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::put           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname"> <em>permissions</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>overwrite</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>resume</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
put, i.e. 
<p>
write data into a file.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>url</em>&nbsp;</td><td>where to write the file </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>permissions</em>&nbsp;</td><td>may be -1. In this case no special permission mode is set. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>overwrite</em>&nbsp;</td><td>if true, any existing file will be overwritten. If the file indeed already exists, the slave should NOT apply the permissions change to it. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>resume</em>&nbsp;</td><td>currently unused, please ignore. The support for resuming using .part files is done by calling <a class="el" href="classKIO_1_1SlaveBase.html#ec09ee8ba746d275511a74b73a9b5e42">canResume()</a>.</td></tr>
  </table>
</dl>
IMPORTANT: Use the "modified" metadata in order to set the modification time of the file.<p>
<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classKIO_1_1SlaveBase.html#ec09ee8ba746d275511a74b73a9b5e42">canResume()</a> </dd></dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#df81df1dbe77415d5e08a485a935b298">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00133">133</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="aebd9defec018afbbc3f0395d5307b4b"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::rename" ref="aebd9defec018afbbc3f0395d5307b4b" args="(const KURL &amp;src, const KURL &amp;dest, bool overwrite)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::rename           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>overwrite</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Rename <code>oldname</code> into <code>newname</code>. 
<p>
If the slave returns an error ERR_UNSUPPORTED_ACTION, the job will ask for copy + del instead. <dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>src</em>&nbsp;</td><td>where to move the file from </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>dest</em>&nbsp;</td><td>where to move the file to </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>overwrite</em>&nbsp;</td><td>if true, any existing file will be overwritten </td></tr>
  </table>
</dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#ab6a8ec51a45397af85637b10d1a38ba">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00205">205</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="142804a39c3ee4275c34b75d569274e4"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::requestedURL" ref="142804a39c3ee4275c34b75d569274e4" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">KURL KIO::ForwardingSlaveBase::requestedURL           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"> const<code> [inline, protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Return the URL asked to the ioslave Only access it inside <a class="el" href="classKIO_1_1ForwardingSlaveBase.html#0f0fe84d07948b9daf8a59bba8321713">prepareUDSEntry()</a>. 
<p>

<p>
Definition at line <a class="el" href="forwardingslavebase_8h-source.html#l00160">160</a> of file <a class="el" href="forwardingslavebase_8h-source.html">forwardingslavebase.h</a>.
</div>
</div><p>
<a class="anchor" name="3f0a679789063a36d4be4fb764645a71"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::rewriteURL" ref="3f0a679789063a36d4be4fb764645a71" args="(const KURL &amp;url, KURL &amp;newURL)=0" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool KIO::ForwardingSlaveBase::rewriteURL           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>newURL</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected, pure virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Rewrite an url to it's forwarded counterpart. 
<p>
It should return true if everything was ok, and false otherwise.<p>
If a problem is detected it's up to this method to trigger <a class="el" href="classKIO_1_1SlaveBase.html#6938ad4b6647c3f0150ba77d06725efb">error()</a> before returning. Returning false silently cancel the current slave operation.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>url</em>&nbsp;</td><td>The URL as given during the slave call </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>newURL</em>&nbsp;</td><td>The new URL to forward the slave call to </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>true if the given url could be correctly rewritten </dd></dl>

</div>
</div><p>
<a class="anchor" name="45581c5b4f1f6938efe5955416591403"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::stat" ref="45581c5b4f1f6938efe5955416591403" args="(const KURL &amp;url)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::stat           </td>
          <td>(</td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>url</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Finds all details for one file or directory. 
<p>
The information returned is the same as what listDir returns, but only for one file or directory. 
<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#20aa8e52e38af682a80f1ef2016c83c9">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00149">149</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<a class="anchor" name="f5b8c2515b0452ebee2066cbe2266dca"></a><!-- doxytag: member="KIO::ForwardingSlaveBase::symlink" ref="f5b8c2515b0452ebee2066cbe2266dca" args="(const QString &amp;target, const KURL &amp;dest, bool overwrite)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KIO::ForwardingSlaveBase::symlink           </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>target</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const KURL &amp;&nbsp;</td>
          <td class="paramname"> <em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&nbsp;</td>
          <td class="paramname"> <em>overwrite</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Creates a symbolic link named <code>dest</code>, pointing to <code>target</code>, which may be a relative or an absolute path. 
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>target</em>&nbsp;</td><td>The string that will become the "target" of the link (can be relative) </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>dest</em>&nbsp;</td><td>The symlink to create. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>overwrite</em>&nbsp;</td><td>whether to automatically overwrite if the dest exists </td></tr>
  </table>
</dl>

<p>
Reimplemented from <a class="el" href="classKIO_1_1SlaveBase.html#d827dec554072a0d34c8fa6763282394">KIO::SlaveBase</a>.
<p>
Definition at line <a class="el" href="forwardingslavebase_8cpp-source.html#l00220">220</a> of file <a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a>.
</div>
</div><p>
<hr>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="forwardingslavebase_8h-source.html">forwardingslavebase.h</a><li><a class="el" href="forwardingslavebase_8cpp-source.html">forwardingslavebase.cpp</a></ul>
    </div></div>


      </td>
  </tr>
  <tr>
    <td valign="top" id="leftmenu" width="25%">
      <a name="navigation"></a>
      <div class="menu_box"><h2>kio/kio</h2>
<div class="nav_list">
<ul><li><a href="index.html">Main Page</a></li><li><a href="modules.html">Modules</a></li><li><a href="namespaces.html">Namespace List</a></li><li><a href="hierarchy.html">Class Hierarchy</a></li><li><a href="classes.html">Alphabetical List</a></li><li><a href="annotated.html">Class List</a></li><li><a href="files.html">File List</a></li><li><a href="namespacemembers.html">Namespace Members</a></li><li><a href="functions.html">Class Members</a></li><li><a href="pages.html">Related Pages</a></li></ul>
<!--
<h2>Class Picker</h2>
<div style="text-align: center;">
<form name="guideform">
<select name="guidelinks" style="width:100%;" onChange="window.location=document.guideform.guidelinks.options[document.guideform.guidelinks.selectedIndex].value">
<option value="annotated.html">-- Choose --</option>
  <option value="classKACL.html">kacl</option>,  <option value="classKAr.html">kar</option>,  <option value="classKArchive.html">karchive</option>,  <option value="classKArchiveDirectory.html">karchivedirectory</option>,  <option value="classKArchiveEntry.html">karchiveentry</option>,  <option value="classKArchiveFile.html">karchivefile</option>,  <option value="classKAutoMount.html">kautomount</option>,  <option value="classKAutoUnmount.html">kautounmount</option>,  <option value="classKDataTool.html">kdatatool</option>,  <option value="classKDataToolAction.html">kdatatoolaction</option>,  <option value="classKDataToolInfo.html">kdatatoolinfo</option>,  <option value="classKDCOPServiceStarter.html">kdcopservicestarter</option>,  <option value="classKDEDesktopMimeType.html">kdedesktopmimetype</option>,  <option value="classKDirLister.html">kdirlister</option>,  <option value="classKDirNotify.html">kdirnotify</option>,  <option value="classKDirNotify__stub.html">kdirnotify__stub</option>,  <option value="classKDirWatch.html">kdirwatch</option>,  <option value="classKEMailSettings.html">kemailsettings</option>,  <option value="classKExecMimeType.html">kexecmimetype</option>,  <option value="classKFileFilter.html">kfilefilter</option>,  <option value="classKFileItem.html">kfileitem</option>,  <option value="classKFileMetaInfo.html">kfilemetainfo</option>,  <option value="classKFileMetaInfoGroup.html">kfilemetainfogroup</option>,  <option value="classKFileMetaInfoItem.html">kfilemetainfoitem</option>,  <option value="classKFileMetaInfoProvider.html">kfilemetainfoprovider</option>,  <option value="classKFileMimeTypeInfo.html">kfilemimetypeinfo</option>,  <option value="classKFileMimeTypeInfo_1_1GroupInfo.html">kfilemimetypeinfo::groupinfo</option>,  <option value="classKFileMimeTypeInfo_1_1ItemInfo.html">kfilemimetypeinfo::iteminfo</option>,  <option value="classKFilePlugin.html">kfileplugin</option>,  <option value="classKFileShare.html">kfileshare</option>,  <option value="classKFileSharePrivate.html">kfileshareprivate</option>,  <option value="classKFilterBase.html">kfilterbase</option>,  <option value="classKFilterDev.html">kfilterdev</option>,  <option value="classKFolderType.html">kfoldertype</option>,  <option value="classKImageIO.html">kimageio</option>,  <option value="classKImageIOFactory.html">kimageiofactory</option>,  <option value="classKImageIOFormat.html">kimageioformat</option>,  <option value="classKImageIOFormatList.html">kimageioformatlist</option>,  <option value="classKIO_1_1AuthInfo.html">kio::authinfo</option>,  <option value="classKIO_1_1ChmodJob.html">kio::chmodjob</option>,  <option value="classKIO_1_1Connection.html">kio::connection</option>,  <option value="classKIO_1_1CopyJob.html">kio::copyjob</option>,  <option value="classKIO_1_1DataProtocol.html">kio::dataprotocol</option>,  <option value="classKIO_1_1DataSlave.html">kio::dataslave</option>,  <option value="classKIO_1_1DavJob.html">kio::davjob</option>,  <option value="classKIO_1_1DefaultProgress.html">kio::defaultprogress</option>,  <option value="classKIO_1_1DeleteJob.html">kio::deletejob</option>,  <option value="classKIO_1_1DirectCopyJob.html">kio::directcopyjob</option>,  <option value="classKIO_1_1FileCopyJob.html">kio::filecopyjob</option>,  <option value="classKIO_1_1ForwardingSlaveBase.html">kio::forwardingslavebase</option>,  <option value="classKIO_1_1Job.html">kio::job</option>,  <option value="classKIO_1_1ListJob.html">kio::listjob</option>,  <option value="classKIO_1_1MetaData.html">kio::metadata</option>,  <option value="classKIO_1_1MetaInfoJob.html">kio::metainfojob</option>,  <option value="classKIO_1_1MimetypeJob.html">kio::mimetypejob</option>,  <option value="classKIO_1_1MkdirJob.html">kio::mkdirjob</option>,  <option value="classKIO_1_1MultiGetJob.html">kio::multigetjob</option>,  <option value="classKIO_1_1NetAccess.html">kio::netaccess</option>,  <option value="classKIO_1_1NetRC.html">kio::netrc</option>,  <option value="classKIO_1_1ParseContext.html">kio::parsecontext</option>,  <option value="classKIO_1_1ParseTreeAND.html">kio::parsetreeand</option>,  <option value="classKIO_1_1ParseTreeBase.html">kio::parsetreebase</option>,  <option value="classKIO_1_1ParseTreeBOOL.html">kio::parsetreebool</option>,  <option value="classKIO_1_1ParseTreeBRACKETS.html">kio::parsetreebrackets</option>,  <option value="classKIO_1_1ParseTreeCALC.html">kio::parsetreecalc</option>,  <option value="classKIO_1_1ParseTreeCMP.html">kio::parsetreecmp</option>,  <option value="classKIO_1_1ParseTreeDOUBLE.html">kio::parsetreedouble</option>,  <option value="classKIO_1_1ParseTreeEXIST.html">kio::parsetreeexist</option>,  <option value="classKIO_1_1ParseTreeID.html">kio::parsetreeid</option>,  <option value="classKIO_1_1ParseTreeIN.html">kio::parsetreein</option>,  <option value="classKIO_1_1ParseTreeMATCH.html">kio::parsetreematch</option>,  <option value="classKIO_1_1ParseTreeMAX2.html">kio::parsetreemax2</option>,  <option value="classKIO_1_1ParseTreeMIN2.html">kio::parsetreemin2</option>,  <option value="classKIO_1_1ParseTreeNOT.html">kio::parsetreenot</option>,  <option value="classKIO_1_1ParseTreeNUM.html">kio::parsetreenum</option>,  <option value="classKIO_1_1ParseTreeOR.html">kio::parsetreeor</option>,  <option value="classKIO_1_1ParseTreeSTRING.html">kio::parsetreestring</option>,  <option value="classKIO_1_1PasswordDialog.html">kio::passworddialog</option>,  <option value="classKIO_1_1PasteDialog.html">kio::pastedialog</option>,  <option value="classKIO_1_1PreviewJob.html">kio::previewjob</option>,  <option value="classKIO_1_1ProgressBase.html">kio::progressbase</option>,  <option value="classKIO_1_1RenameDlg.html">kio::renamedlg</option>,  <option value="classKIO_1_1Scheduler.html">kio::scheduler</option>,  <option value="classKIO_1_1SessionData.html">kio::sessiondata</option>,  <option value="classKIO_1_1SimpleJob.html">kio::simplejob</option>,  <option value="classKIO_1_1SkipDlg.html">kio::skipdlg</option>,  <option value="classKIO_1_1Slave.html">kio::slave</option>,  <option value="classKIO_1_1SlaveBase.html">kio::slavebase</option>,  <option value="classKIO_1_1SlaveConfig.html">kio::slaveconfig</option>,  <option value="classKIO_1_1SlaveInterface.html">kio::slaveinterface</option>,  <option value="classKIO_1_1StatJob.html">kio::statjob</option>,  <option value="classKIO_1_1StatusbarProgress.html">kio::statusbarprogress</option>,  <option value="classKIO_1_1StoredTransferJob.html">kio::storedtransferjob</option>,  <option value="classKIO_1_1TCPSlaveBase.html">kio::tcpslavebase</option>,  <option value="classKIO_1_1TransferJob.html">kio::transferjob</option>,  <option value="classKIO_1_1UDSAtom.html">kio::udsatom</option>,  <option value="classKLimitedIODevice.html">klimitediodevice</option>,  <option value="classKMessageBoxWrapper.html">kmessageboxwrapper</option>,  <option value="classKMimeMagic.html">kmimemagic</option>,  <option value="classKMimeMagicResult.html">kmimemagicresult</option>,  <option value="classKMimeType.html">kmimetype</option>,  <option value="classKMimeTypeChooser.html">kmimetypechooser</option>,  <option value="classKMimeTypeChooserDialog.html">kmimetypechooserdialog</option>,  <option value="classKMimeTypeResolver.html">kmimetyperesolver</option>,  <option value="classKMimeTypeResolverBase.html">kmimetyperesolverbase</option>,  <option value="classKMimeTypeResolverHelper.html">kmimetyperesolverhelper</option>,  <option value="classKNFSShare.html">knfsshare</option>,  <option value="classKOCRDialog.html">kocrdialog</option>,  <option value="classKOCRDialogFactory.html">kocrdialogfactory</option>,  <option value="classKOpenWithHandler.html">kopenwithhandler</option>,  <option value="classKProcessRunner.html">kprocessrunner</option>,  <option value="classKProtocolInfo.html">kprotocolinfo</option>,  <option value="classKProtocolManager.html">kprotocolmanager</option>,  <option value="classKRemoteEncoding.html">kremoteencoding</option>,  <option value="classKRun.html">krun</option>,  <option value="classKSambaShare.html">ksambashare</option>,  <option value="classKScanDialog.html">kscandialog</option>,  <option value="classKScanDialogFactory.html">kscandialogfactory</option>,  <option value="classKService.html">kservice</option>,  <option value="classKServiceFactory.html">kservicefactory</option>,  <option value="classKServiceGroup.html">kservicegroup</option>,  <option value="classKServiceGroupFactory.html">kservicegroupfactory</option>,  <option value="classKServiceOffer.html">kserviceoffer</option>,  <option value="classKServiceSeparator.html">kserviceseparator</option>,  <option value="classKServiceType.html">kservicetype</option>,  <option value="classKServiceTypeFactory.html">kservicetypefactory</option>,  <option value="classKServiceTypeProfile.html">kservicetypeprofile</option>,  <option value="classKShellCompletion.html">kshellcompletion</option>,  <option value="classKShred.html">kshred</option>,  <option value="classKSimpleFileFilter.html">ksimplefilefilter</option>,  <option value="classKTar.html">ktar</option>,  <option value="classKTrader.html">ktrader</option>,  <option value="classKURIFilter.html">kurifilter</option>,  <option value="classKURIFilterData.html">kurifilterdata</option>,  <option value="classKURIFilterPlugin.html">kurifilterplugin</option>,  <option value="classKURIFilterPluginList.html">kurifilterpluginlist</option>,  <option value="classKURLCompletion.html">kurlcompletion</option>,  <option value="classKURLPixmapProvider.html">kurlpixmapprovider</option>,  <option value="classKZip.html">kzip</option>,  <option value="classKZipFileEntry.html">kzipfileentry</option>,  <option value="classObserver.html">observer</option>,  <option value="classObserver__stub.html">observer__stub</option>,  <option value="classRenameDlgPlugin.html">renamedlgplugin</option>,  <option value="classThumbCreator.html">thumbcreator</option>,  <option value="classUIServer__stub.html">uiserver__stub</option>,
</select>
</form>
</div>
-->
</div></div>
<div class="menu_box"><h2>API Dox</h2>
<div class="nav_list">
<ul>
<li><a href="../../../arts/html/index.html">arts</a></li><li><a href="../../../dcop/html/index.html">dcop</a></li><li><a href="../../../dnssd/html/index.html">dnssd</a></li><li><a href="../../../interfaces/html/index.html">interfaces</a></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../interfaces/kimproxy/interface/html/index.html">interface</a></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../interfaces/kimproxy/library/html/index.html">library</a></li><li>&nbsp;&nbsp;<a href="../../../interfaces/kspeech/html/index.html">kspeech</a></li><li>&nbsp;&nbsp;<a href="../../../interfaces/ktexteditor/html/index.html">ktexteditor</a></li><li><a href="../../../kabc/html/index.html">kabc</a></li><li><a href="../../../kate/html/index.html">kate</a></li><li><a href="../../../kcmshell/html/index.html">kcmshell</a></li><li><a href="../../../kdecore/html/index.html">kdecore</a></li><li><a href="../../../kded/html/index.html">kded</a></li><li><a href="../../../kdefx/html/index.html">kdefx</a></li><li><a href="../../../kdeprint/html/index.html">kdeprint</a></li><li><a href="../../../kdesu/html/index.html">kdesu</a></li><li><a href="../../../kdeui/html/index.html">kdeui</a></li><li><a href="../../../kdoctools/html/index.html">kdoctools</a></li><li><a href="../../../khtml/html/index.html">khtml</a></li><li><a href="../../../kimgio/html/index.html">kimgio</a></li><li><a href="../../../kinit/html/index.html">kinit</a></li><li><a href="../../../kio/html/index.html">kio</a></li><li>&nbsp;&nbsp;<a href="../../../kio/bookmarks/html/index.html">bookmarks</a></li><li>&nbsp;&nbsp;<a href="../../../kio/httpfilter/html/index.html">httpfilter</a></li><li>&nbsp;&nbsp;<a href="../../../kio/kfile/html/index.html">kfile</a></li><li>&nbsp;&nbsp;<a href="../../../kio/kio/html/index.html">kio</a></li><li>&nbsp;&nbsp;<a href="../../../kio/kioexec/html/index.html">kioexec</a></li><li>&nbsp;&nbsp;<a href="../../../kio/kpasswdserver/html/index.html">kpasswdserver</a></li><li>&nbsp;&nbsp;<a href="../../../kio/kssl/html/index.html">kssl</a></li><li><a href="../../../kioslave/html/index.html">kioslave</a></li><li>&nbsp;&nbsp;<a href="../../../kioslave/http/html/index.html">http</a></li><li><a href="../../../kjs/html/index.html">kjs</a></li><li><a href="../../../kmdi/html/index.html">kmdi</a></li><li>&nbsp;&nbsp;<a href="../../../kmdi/kmdi/html/index.html">kmdi</a></li><li><a href="../../../knewstuff/html/index.html">knewstuff</a></li><li><a href="../../../kparts/html/index.html">kparts</a></li><li><a href="../../../kresources/html/index.html">kresources</a></li><li><a href="../../../kspell2/html/index.html">kspell2</a></li><li><a href="../../../kunittest/html/index.html">kunittest</a></li><li><a href="../../../kutils/html/index.html">kutils</a></li><li><a href="../../../kwallet/html/index.html">kwallet</a></li><li><a href="../../../libkmid/html/index.html">libkmid</a></li><li><a href="../../../libkscreensaver/html/index.html">libkscreensaver</a></li>
</ul></div></div>


        </td>
</tr>
</table>

<span class="doNotDisplay">
  <a href="http://www.kde.org/" accesskey="8">KDE Home</a> |
  <a href="http://accessibility.kde.org/" accesskey="9">KDE Accessibility Home</a> |
  <a href="http://www.kde.org/media/accesskeys.php" accesskey="0">Description of Access Keys</a>
</span>


<div style="height: 8px"></div>

<div id="footer">
  <div id="footer_left">
    Maintained by <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;groo&#116;&#64;kde&#46;or&#x67;">Adriaan de Groot</a>
and
<a href="&#109;a&#105;&#108;&#116;&#111;&#58;w&#105;nter&#116;&#64;kde&#46;or&#x67">Allen Winter</a>.
<br/>
    KDE and K Desktop Environment are trademarks of <a href="http://www.kde.org/areas/kde-ev/" title="Homepage of the KDE non-profit Organization">KDE e.V.</a> |
    <a href="http://www.kde.org/contact/impressum.php">Legal</a>
  </div>
  <div id="footer_right"><img src="/media/images/footer_right.png" style="margin: 0px" alt="" /></div>
</div>

<!--
WARNING: DO NOT SEND MAIL TO THE FOLLOWING EMAIL ADDRESS! YOU WILL
BE BLOCKED INSTANTLY AND PERMANENTLY!
<a href="mailto:aaaatrap-425acc3b5374943f@kde.org">Block me</a>
WARNING END
-->

</body>
</html>