Sophie

Sophie

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

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: KFilePlugin 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 -->
<h1>KFilePlugin Class Reference</h1><!-- doxytag: class="KFilePlugin" --><!-- doxytag: inherits="QObject" --><code>#include &lt;<a class="el" href="kfilemetainfo_8h-source.html">kfilemetainfo.h</a>&gt;</code>
<p>
<p>Inheritance diagram for KFilePlugin:
<p><center><img src="classKFilePlugin.png" usemap="#KFilePlugin_map" border="0" alt=""></center>
<map name="KFilePlugin_map">
<area doxygen="qt.tag:" href="qobject.html" alt="QObject" shape="rect" coords="0,0,76,24">
</map>
<a href="classKFilePlugin-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
Base class for a meta information plugin. 
<p>
Meta information plugins are used to extract useful information from files of a given type. These plugins are used in Konqueror's file properties dialog, for example.<p>
If you want to write your own plugin, you need to derive from this class.<p>
In the constructor of your class, you need to call <a class="el" href="classKFilePlugin.html#be6ba88f026f0c6f3feda9634d293e87">addMimeTypeInfo()</a> to tell the KFile framework which mimetype(s) your plugin supports. For each mimetype, use the <a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo()</a> and <a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> methods to declare the meta information items the plugin calculates and to group them accordingly. For groups, use <a class="el" href="classKFilePlugin.html#964e2784ce59ff0b68979e8806ad28ae">setAttributes()</a> to customize your group (see <a class="el" href="classKFileMimeTypeInfo.html#5d4779692b425b43302a9a113f91d59a">KFileMimeTypeInfo::Attributes</a>). For items, use <a class="el" href="classKFilePlugin.html#964e2784ce59ff0b68979e8806ad28ae">setAttributes()</a> to define the behaviour of the item; use <a class="el" href="classKFilePlugin.html#8f8fff3427687144fcd574dad4389f17">setHint()</a> to define the meaning of the item; use <a class="el" href="classKFilePlugin.html#6b0f93b4b5593ec635e35a1f7d3882b0">setUnit()</a> to define the Unit, such as <a class="el" href="classKFileMimeTypeInfo.html#9f712056eacff37b74a7da6084590706166a493323d541ecd4e86b8ca9eef9e8">KFileMimeTypeInfo::Seconds</a> or <a class="el" href="classKFileMimeTypeInfo.html#9f712056eacff37b74a7da6084590706abc7d8b4850397b00de94477a937c9d0">KFileMimeTypeInfo::KiloBytes</a>. In short, the constructor defines the data structure of the meta information supported by your plugin.<p>
Example: <div class="fragment"><pre class="fragment">  FooPlugin::FooPlugin(<a class="codeRef" doxygen="qt.tag:" href="qobject.html">QObject</a> *<a class="codeRef" doxygen="qt.tag:" href="qobject.html#parent">parent</a>, <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="codeRef" doxygen="qt.tag:" href="qobject.html#name">name</a>,
                       <span class="keyword">const</span> <a class="codeRef" doxygen="qt.tag:" href="qstringlist.html">QStringList</a> &amp;args)
      : <a class="code" href="classKFilePlugin.html">KFilePlugin</a>(<a class="codeRef" doxygen="qt.tag:" href="qobject.html#parent">parent</a>, name, args)
  {
      <a class="code" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a>* info = addMimeTypeInfo( <span class="stringliteral">"application/x-foo"</span> );

      <span class="comment">// our new group</span>
      <a class="code" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a>* group = 0L;
      group = addGroupInfo(info, <span class="stringliteral">"FooInfo"</span>, i18n(<span class="stringliteral">"Foo Information"</span>));

      <a class="code" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a>* item;

      <span class="comment">// our new items in the group</span>
      item = addItemInfo(group, <span class="stringliteral">"Items"</span>, i18n(<span class="stringliteral">"Items"</span>), QVariant::Int);
      item = addItemInfo(group, <span class="stringliteral">"Size"</span>, i18n(<span class="stringliteral">"Size"</span>), QVariant::Int);
      setUnit(item, <a class="code" href="classKFileMimeTypeInfo.html#9f712056eacff37b74a7da6084590706abc7d8b4850397b00de94477a937c9d0">KFileMimeTypeInfo::KiloBytes</a>);

      <span class="comment">// strings are possible, too:</span>
      <span class="comment">//addItemInfo(group, "Document Type", i18n("Document type"), QVariant::String);</span>
  }
</pre></div><p>
Some meta information items are likely to be available in several different file formats, such as <code>"Author"</code>, <code>"Title"</code> (for documents), and <code>"Length"</code> (for multimedia files). Be sure to use the naming scheme from existing plugins for your meta information items if possible. If, for example, the meta information of a group of files is shown in a table view, this will allow two files to share the same column (say "Length") even if they are of a different file type.<p>
You must overwrite the <a class="el" href="classKFilePlugin.html#d6293fac3c4386e077c7a5440be5f9ed">readInfo()</a> method. In this method you need to extract the meta information of the given file. You can use a third-party library to achieve this task. This might be the best way for binary files, since a change in the file format is likely to be supported by subsequent releases of that library. Alternatively, for text-based file formats, you can use <a class="elRef" doxygen="qt.tag:" href="qtextstream.html">QTextStream</a> to parse the file. For simple file formats, <a class="elRef" doxygen="qt.tag:" href="qregexp.html">QRegExp</a> can be of great help, too.<p>
After you extracted the relevant information, use <a class="el" href="classKFilePlugin.html#07982f969f588d0c9d35f649a6c46c11">appendGroup()</a> and <a class="el" href="classKFilePlugin.html#eb943857bfb53ec7913247159abb0a18">appendItem()</a> to fill the meta information data structure (as defined in the constructor) with values. Note that you can leave out groups or items which are not appropriate for a particular file.<p>
Example: <div class="fragment"><pre class="fragment">  <span class="keywordtype">bool</span> FooPlugin::readInfo( <a class="code" href="classKFileMetaInfo.html">KFileMetaInfo</a>&amp; info, uint what)
  {
      <span class="keywordtype">int</span> numItems = 0;
      <span class="keywordtype">int</span> size = 0;

      <span class="comment">// do your calculations here, e.g. using a third-party</span>
      <span class="comment">// library or by writing an own parser using e.g. QTextStream</span>

      <span class="comment">// calculate numItems and size ...</span>

      <span class="comment">// note: use the same key strings as in the constructor</span>
      <a class="code" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a> group = appendGroup(info, <span class="stringliteral">"FooInfo"</span>);

      appendItem(group, <span class="stringliteral">"Items"</span>, numItems);
      appendItem(group, <span class="stringliteral">"Size"</span>, size);

      <span class="keywordflow">return</span> <span class="keyword">true</span>;
  }
</pre></div><p>
If you want to define mutable meta information items, you need to overwrite the <a class="el" href="classKFilePlugin.html#dd487cfb38b9449bcd9cf7c26e6fb572">writeInfo()</a> method. In this method, you can use third-party library (appropriate mostly for binary files, see above) or <a class="elRef" doxygen="qt.tag:" href="qtextstream.html">QTextStream</a> to write the information back to the file. If you use <a class="elRef" doxygen="qt.tag:" href="qtextstream.html">QTextStream</a>, be sure to write all file contents back.<p>
For some items, it might be that not all possible values are allowed. You can overwrite the <a class="el" href="classKFilePlugin.html#ee0430efca74b86a97a24d3c22757f5b">createValidator()</a> method to define constraints for a meta information item. For example, the <code>"Year"</code> field for an MP3 file could reject values outside the range 1500 - 2050 (at least for now). The validator is used to check values before the <a class="el" href="classKFilePlugin.html#dd487cfb38b9449bcd9cf7c26e6fb572">writeInfo()</a> method is called so that <a class="el" href="classKFilePlugin.html#dd487cfb38b9449bcd9cf7c26e6fb572">writeInfo()</a> is only provided correct values.<p>
In your plugin, you need to create a factory for the <a class="el" href="classKFilePlugin.html">KFilePlugin</a><p>
Example: <div class="fragment"><pre class="fragment">  <span class="keyword">typedef</span> KGenericFactory&lt;FooPlugin&gt; FooFactory;
  K_EXPORT_COMPONENT_FACTORY(kfile_foo, FooFactory(<span class="stringliteral">"kfile_foo"</span>));
</pre></div><p>
To make your plugin available within KDE, you also need to provide a <code></code>.desktop file which describes your plugin. The required fields in the file are:<p>
<ul>
<li><code>Type:</code> must be <code>"Service"</code> </li><li><code>Name:</code> the name of the plugin</li><li><code>ServiceTypes:</code> must contain <code>"KFilePlugin"</code> </li><li><code>X-KDE-Library</code>: the name of the library containing the KFile plugin</li><li><code>MimeType:</code> the mimetype(s) which are supported by the plugin</li><li><code>PreferredGroups:</code> a comma-separated list of the most important groups. This list defines the order in which the meta information groups should be displayed</li><li><code>PreferredItems:</code> a comma-separated list of the most important items. This list defines the order in which the meta information items should be displayed</li></ul>
<p>
Example: <div class="fragment"><pre class="fragment">  [Desktop Entry]
  Encoding=UTF-8
  Type=Service
  Name=Foo <a class="code" href="namespaceKIO.html#2a45063ad2899e10b571e1534d8d0371">Info</a>
  ServiceTypes=<a class="code" href="classKFilePlugin.html">KFilePlugin</a>
  X-KDE-Library=kfile_foo
  MimeType=application/x-foo
  PreferredGroups=FooInfo
  PreferredItems=Items,Size
</pre></div> 
<p>

<p>
Definition at line <a class="el" href="kfilemetainfo_8h-source.html#l01394">1394</a> of file <a class="el" href="kfilemetainfo_8h-source.html">kfilemetainfo.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">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#9334dc446cc411b89adcb5a14fd97c1a">KFilePlugin</a> (<a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a> *<a class="elRef" doxygen="qt.tag:" href="qobject.html#parent">parent</a>, const char *<a class="elRef" doxygen="qt.tag:" href="qobject.html#name">name</a>, const <a class="elRef" doxygen="qt.tag:" href="qstringlist.html">QStringList</a> &amp;args)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#7c36be886ed93d136a89865ed97b8ca2">~KFilePlugin</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#d6293fac3c4386e077c7a5440be5f9ed">readInfo</a> (<a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> &amp;info, uint what=KFileMetaInfo::Fastest)=0</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual bool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#dd487cfb38b9449bcd9cf7c26e6fb572">writeInfo</a> (const <a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> &amp;info) const </td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual <a class="elRef" doxygen="qt.tag:" href="qvalidator.html">QValidator</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#ee0430efca74b86a97a24d3c22757f5b">createValidator</a> (const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;mimeType, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;group, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;key, <a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a> *<a class="elRef" doxygen="qt.tag:" href="qobject.html#parent">parent</a>, const char *<a class="elRef" doxygen="qt.tag:" href="qobject.html#name">name</a>) const </td></tr>

<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#be6ba88f026f0c6f3feda9634d293e87">addMimeTypeInfo</a> (const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;mimeType)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo</a> (<a class="el" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a> *info, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;key, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;translatedKey) const </td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#964e2784ce59ff0b68979e8806ad28ae">setAttributes</a> (<a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> *gi, uint attr) const </td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="5d3d01b56b6d43731b8a479f37ee2e8d"></a><!-- doxytag: member="KFilePlugin::addVariableInfo" ref="5d3d01b56b6d43731b8a479f37ee2e8d" args="(KFileMimeTypeInfo::GroupInfo *gi, QVariant::Type type, uint attr) const " -->
void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#5d3d01b56b6d43731b8a479f37ee2e8d">addVariableInfo</a> (<a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> *gi, QVariant::Type type, uint attr) const </td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo</a> (<a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> *gi, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;key, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;translatedKey, QVariant::Type type)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#d849b4376fa7b37be7fc0a2c03d601bb">setAttributes</a> (<a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *item, uint attr)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#8f8fff3427687144fcd574dad4389f17">setHint</a> (<a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *item, uint hint)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#6b0f93b4b5593ec635e35a1f7d3882b0">setUnit</a> (<a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *item, uint unit)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#81d976c6a6d4e454edb0e702e0f3833c">setPrefix</a> (<a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *item, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;prefix)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#61b90100af24f487533e1474a4b255e4">setSuffix</a> (<a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *item, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;suffix)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#07982f969f588d0c9d35f649a6c46c11">appendGroup</a> (<a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> &amp;info, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;key)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#eb943857bfb53ec7913247159abb0a18">appendItem</a> (<a class="el" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a> &amp;group, const <a class="elRef" doxygen="qt.tag:" href="qstring.html">QString</a> &amp;key, <a class="elRef" doxygen="qt.tag:" href="qvariant.html">QVariant</a> value)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#25b5765df5cfc9257895a39f5d35ada4">virtual_hook</a> (int id, void *data)</td></tr>

<tr><td colspan="2"><br><h2>Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="0d2c1eb368c258c5feb608f34db525b0"></a><!-- doxytag: member="KFilePlugin::m_preferredKeys" ref="0d2c1eb368c258c5feb608f34db525b0" args="" -->
<a class="elRef" doxygen="qt.tag:" href="qstringlist.html">QStringList</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#0d2c1eb368c258c5feb608f34db525b0">m_preferredKeys</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="802d5da24e181ab5ede52500c9c0aa19"></a><!-- doxytag: member="KFilePlugin::m_preferredGroups" ref="802d5da24e181ab5ede52500c9c0aa19" args="" -->
<a class="elRef" doxygen="qt.tag:" href="qstringlist.html">QStringList</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classKFilePlugin.html#802d5da24e181ab5ede52500c9c0aa19">m_preferredGroups</a></td></tr>

</table>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" name="9334dc446cc411b89adcb5a14fd97c1a"></a><!-- doxytag: member="KFilePlugin::KFilePlugin" ref="9334dc446cc411b89adcb5a14fd97c1a" args="(QObject *parent, const char *name, const QStringList &amp;args)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">KFilePlugin::KFilePlugin           </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a> *&nbsp;</td>
          <td class="paramname"> <em>parent</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&nbsp;</td>
          <td class="paramname"> <em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="qt.tag:" href="qstringlist.html">QStringList</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>args</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Creates a new <a class="el" href="classKFilePlugin.html">KFilePlugin</a> instance. 
<p>
You need to implement a constructor with the same argument list as this is required by KGenericFactory<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>parent</em>&nbsp;</td><td>the parent of the <a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a>, can be <code>0</code> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>name</em>&nbsp;</td><td>the name of the <a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a>, can be <code>0</code> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>args</em>&nbsp;</td><td>currently ignored</td></tr>
  </table>
</dl>
<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classKFilePlugin.html#be6ba88f026f0c6f3feda9634d293e87">addMimeTypeInfo()</a> <p>
<a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo()</a> <p>
<a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> <p>
<a class="elRef" doxygen="qt.tag:" href="qobject.html#QObject">QObject()</a> </dd></dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00777">777</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="7c36be886ed93d136a89865ed97b8ca2"></a><!-- doxytag: member="KFilePlugin::~KFilePlugin" ref="7c36be886ed93d136a89865ed97b8ca2" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">KFilePlugin::~KFilePlugin           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Destructor. 
<p>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00784">784</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="00d4e5c4faabedbfd6faf95fa085acae"></a><!-- doxytag: member="KFilePlugin::addGroupInfo" ref="00d4e5c4faabedbfd6faf95fa085acae" args="(KFileMimeTypeInfo *info, const QString &amp;key, const QString &amp;translatedKey) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> * KFilePlugin::addGroupInfo           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>info</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>key</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>translatedKey</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Creates a meta information group for <a class="el" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a> object returned by <a class="el" href="classKFilePlugin.html#be6ba88f026f0c6f3feda9634d293e87">addMimeTypeInfo()</a>. 
<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>info</em>&nbsp;</td><td>the object returned by <a class="el" href="classKFilePlugin.html#be6ba88f026f0c6f3feda9634d293e87">addMimeTypeInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>key</em>&nbsp;</td><td>a unique string identifiing this group. For simplicity it is recommended to use the same string as for the translatedKey parameter </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>translatedKey</em>&nbsp;</td><td>the translated version of the key string for displaying in user interfaces. Use i18n() to translate the string </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>a GroupInfo object. Pass this object to addItemInfo to add meta information attributed to this group.</dd></dl>
<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classKFilePlugin.html#964e2784ce59ff0b68979e8806ad28ae">setAttributes()</a> <p>
<a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> </dd></dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00798">798</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="9f3c5631358548f3b78b4a2de0c150f5"></a><!-- doxytag: member="KFilePlugin::addItemInfo" ref="9f3c5631358548f3b78b4a2de0c150f5" args="(KFileMimeTypeInfo::GroupInfo *gi, const QString &amp;key, const QString &amp;translatedKey, QVariant::Type type)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> * KFilePlugin::addItemInfo           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>gi</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>key</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>translatedKey</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">QVariant::Type&nbsp;</td>
          <td class="paramname"> <em>type</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Adds a meta information item to a GroupInfo object as returned by <a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo()</a>. 
<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>gi</em>&nbsp;</td><td>the GroupInfo object to add a new item to </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>key</em>&nbsp;</td><td>a unique string to identify this item. For simplicity it is recommended to use the same string as for the translatedKey parameter </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>translatedKey</em>&nbsp;</td><td>the translated version of the key string for displaying in user interfaces. Use i18n() to translate the string </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>type</em>&nbsp;</td><td>the type of the meta information item, e.g. QVariant::Int or QVariant::String. </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>an ItemInfo object. Pass this object to <a class="el" href="classKFilePlugin.html#964e2784ce59ff0b68979e8806ad28ae">setAttributes()</a> </dd></dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00815">815</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="be6ba88f026f0c6f3feda9634d293e87"></a><!-- doxytag: member="KFilePlugin::addMimeTypeInfo" ref="be6ba88f026f0c6f3feda9634d293e87" args="(const QString &amp;mimeType)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a> * KFilePlugin::addMimeTypeInfo           </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>mimeType</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Call this from within your constructor to tell the KFile framework what mimetypes your plugin supports. 
<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>mimeType</em>&nbsp;</td><td>a string containing the mimetype, e.g. <code>"text/html"</code> </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>a <a class="el" href="classKFileMimeTypeInfo.html">KFileMimeTypeInfo</a> object, to be used with <a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo()</a> </dd></dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00789">789</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="07982f969f588d0c9d35f649a6c46c11"></a><!-- doxytag: member="KFilePlugin::appendGroup" ref="07982f969f588d0c9d35f649a6c46c11" args="(KFileMetaInfo &amp;info, const QString &amp;key)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a> KFilePlugin::appendGroup           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>info</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>key</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Call this method from within <a class="el" href="classKFilePlugin.html#d6293fac3c4386e077c7a5440be5f9ed">readInfo()</a> to indicate that you wish to fill meta information items of the group identified by <code>key</code> with values. 
<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>info</em>&nbsp;</td><td>the <a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> object. Use the parameter of the <a class="el" href="classKFilePlugin.html#d6293fac3c4386e077c7a5440be5f9ed">readInfo()</a> method </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>key</em>&nbsp;</td><td>the key string to identify the group. Use the string that you defined in your class' constructor </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>a <a class="el" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a> object, to be used in <a class="el" href="classKFilePlugin.html#eb943857bfb53ec7913247159abb0a18">appendItem()</a> </dd></dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00890">890</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="eb943857bfb53ec7913247159abb0a18"></a><!-- doxytag: member="KFilePlugin::appendItem" ref="eb943857bfb53ec7913247159abb0a18" args="(KFileMetaInfoGroup &amp;group, const QString &amp;key, QVariant value)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::appendItem           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>group</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>key</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="elRef" doxygen="qt.tag:" href="qvariant.html">QVariant</a>&nbsp;</td>
          <td class="paramname"> <em>value</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Call this method from within <a class="el" href="classKFilePlugin.html#d6293fac3c4386e077c7a5440be5f9ed">readInfo()</a> to fill the meta information item identified by <code>key</code> with a <code>value</code>. 
<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>group</em>&nbsp;</td><td>the <a class="el" href="classKFileMetaInfoGroup.html">KFileMetaInfoGroup</a> object, as returned by <a class="el" href="classKFilePlugin.html#07982f969f588d0c9d35f649a6c46c11">appendGroup()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>key</em>&nbsp;</td><td>the key string to identify the item. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>value</em>&nbsp;</td><td>the value of the meta information item </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00895">895</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="ee0430efca74b86a97a24d3c22757f5b"></a><!-- doxytag: member="KFilePlugin::createValidator" ref="ee0430efca74b86a97a24d3c22757f5b" args="(const QString &amp;mimeType, const QString &amp;group, const QString &amp;key, QObject *parent, const char *name) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="elRef" doxygen="qt.tag:" href="qvalidator.html">QValidator</a>* KFilePlugin::createValidator           </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>mimeType</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>group</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>key</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a> *&nbsp;</td>
          <td class="paramname"> <em>parent</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&nbsp;</td>
          <td class="paramname"> <em>name</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"> const<code> [inline, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
This method should create an appropriate validator for the specified item if it's editable or return a null pointer if not. 
<p>
If you don't have any editable items, you don't need to implement this method.<p>
If you you don't need any validation, e.g. you accept any input, you can simply return <code>0L</code>, or not reimplement this method at all.<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>mimeType</em>&nbsp;</td><td>the mime type </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>group</em>&nbsp;</td><td>the group name of the validator item </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>key</em>&nbsp;</td><td>the key name of the validator item </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>parent</em>&nbsp;</td><td>the <a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a> parent, can be <code>0</code> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>name</em>&nbsp;</td><td>the name of the <a class="elRef" doxygen="qt.tag:" href="qobject.html">QObject</a>, can be <code>0</code> </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8h-source.html#l01462">1462</a> of file <a class="el" href="kfilemetainfo_8h-source.html">kfilemetainfo.h</a>.
</div>
</div><p>
<a class="anchor" name="d6293fac3c4386e077c7a5440be5f9ed"></a><!-- doxytag: member="KFilePlugin::readInfo" ref="d6293fac3c4386e077c7a5440be5f9ed" args="(KFileMetaInfo &amp;info, uint what=KFileMetaInfo::Fastest)=0" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool KFilePlugin::readInfo           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>info</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&nbsp;</td>
          <td class="paramname"> <em>what</em> = <code>KFileMetaInfo::Fastest</code></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [pure virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Read the info from the file in this method and insert it into the provided <a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> object. 
<p>
You can get the path to the file with <a class="el" href="classKFileMetaInfo.html#f91e110c26a3165bbd43db5017048100">KFileMetaInfo::path()</a>. Use <a class="el" href="classKFilePlugin.html#07982f969f588d0c9d35f649a6c46c11">appendGroup()</a> and <a class="el" href="classKFilePlugin.html#eb943857bfb53ec7913247159abb0a18">appendItem()</a> to fill <code>info</code> with the extracted values<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>info</em>&nbsp;</td><td>the information will be written here </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>what</em>&nbsp;</td><td>defines what to read, see <a class="el" href="classKFileMetaInfo.html#e6582f767b27438b6e1e8258aa3a7309">KFileMetaInfo::What</a> </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><code>true</code> if successful, <code>false</code> if it failed</dd></dl>
<dl compact><dt><b>See also:</b></dt><dd><a class="el" href="classKFilePlugin.html#dd487cfb38b9449bcd9cf7c26e6fb572">writeInfo()</a> </dd></dl>

</div>
</div><p>
<a class="anchor" name="d849b4376fa7b37be7fc0a2c03d601bb"></a><!-- doxytag: member="KFilePlugin::setAttributes" ref="d849b4376fa7b37be7fc0a2c03d601bb" args="(KFileMimeTypeInfo::ItemInfo *item, uint attr)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::setAttributes           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&nbsp;</td>
          <td class="paramname"> <em>attr</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Sets some attributes for a meta information item. 
<p>
The attributes describe if the item is mutable, how it should be computed for a list of files, and how it should be displayed<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>item</em>&nbsp;</td><td>the ItemInfo object as returned by <a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>attr</em>&nbsp;</td><td>the attributes for this item; these are values of type <a class="el" href="classKFileMimeTypeInfo.html#5d4779692b425b43302a9a113f91d59a">KFileMimeTypeInfo::Attributes</a>, or'ed together </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00823">823</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="964e2784ce59ff0b68979e8806ad28ae"></a><!-- doxytag: member="KFilePlugin::setAttributes" ref="964e2784ce59ff0b68979e8806ad28ae" args="(KFileMimeTypeInfo::GroupInfo *gi, uint attr) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::setAttributes           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1GroupInfo.html">KFileMimeTypeInfo::GroupInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>gi</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&nbsp;</td>
          <td class="paramname"> <em>attr</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"> const<code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Sets attributes of the GroupInfo object returned by <a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo()</a>. 
<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>gi</em>&nbsp;</td><td>the object returned by <a class="el" href="classKFilePlugin.html#00d4e5c4faabedbfd6faf95fa085acae">addGroupInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>attr</em>&nbsp;</td><td>the attributes for this group; these are values of type <a class="el" href="classKFileMimeTypeInfo.html#5d4779692b425b43302a9a113f91d59a">KFileMimeTypeInfo::Attributes</a>, or'ed together </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00804">804</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="8f8fff3427687144fcd574dad4389f17"></a><!-- doxytag: member="KFilePlugin::setHint" ref="8f8fff3427687144fcd574dad4389f17" args="(KFileMimeTypeInfo::ItemInfo *item, uint hint)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::setHint           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&nbsp;</td>
          <td class="paramname"> <em>hint</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Defines the meaning of the meta information item. 
<p>
Some applications make use of this information, so be sure to check <a class="el" href="classKFileMimeTypeInfo.html#c3f6af0479c6546e77d776a7f027f88d">KFileMimeTypeInfo::Hint</a> to see if an item's meaning is in the list.<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>item</em>&nbsp;</td><td>the ItemInfo object as returned by <a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>hint</em>&nbsp;</td><td>the item's meaning. See <a class="el" href="classKFileMimeTypeInfo.html#c3f6af0479c6546e77d776a7f027f88d">KFileMimeTypeInfo::Hint</a> for a list of available meanings </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00828">828</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="81d976c6a6d4e454edb0e702e0f3833c"></a><!-- doxytag: member="KFilePlugin::setPrefix" ref="81d976c6a6d4e454edb0e702e0f3833c" args="(KFileMimeTypeInfo::ItemInfo *item, const QString &amp;prefix)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::setPrefix           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>prefix</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Sets a prefix string which is displayed before the item's value. 
<p>
Use this string if no predefined unit fits the item's unit. Be sure to translate the string with i18n()<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>item</em>&nbsp;</td><td>the ItemInfo object as returned by <a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>prefix</em>&nbsp;</td><td>the prefix string to display </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00880">880</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="61b90100af24f487533e1474a4b255e4"></a><!-- doxytag: member="KFilePlugin::setSuffix" ref="61b90100af24f487533e1474a4b255e4" args="(KFileMimeTypeInfo::ItemInfo *item, const QString &amp;suffix)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::setSuffix           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>suffix</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Sets a suffix string which is displayed before the item's value. 
<p>
Use this string if no predefined unit fits the item's unit. Be sure to translate the string with i18n()<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>item</em>&nbsp;</td><td>the ItemInfo object as returned by <a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>suffix</em>&nbsp;</td><td>the suffix string to display </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00885">885</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="6b0f93b4b5593ec635e35a1f7d3882b0"></a><!-- doxytag: member="KFilePlugin::setUnit" ref="6b0f93b4b5593ec635e35a1f7d3882b0" args="(KFileMimeTypeInfo::ItemInfo *item, uint unit)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::setUnit           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classKFileMimeTypeInfo_1_1ItemInfo.html">KFileMimeTypeInfo::ItemInfo</a> *&nbsp;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">uint&nbsp;</td>
          <td class="paramname"> <em>unit</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Sets the unit used in the meta information item. 
<p>
This unit is used to format the value and to make large values human-readable. For example, if the item's unit is <a class="el" href="classKFileMimeTypeInfo.html#9f712056eacff37b74a7da6084590706166a493323d541ecd4e86b8ca9eef9e8">KFileMimeTypeInfo::Seconds</a> and the value is 276, it will be displayed as 4:36.<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>item</em>&nbsp;</td><td>the ItemInfo object as returned by <a class="el" href="classKFilePlugin.html#9f3c5631358548f3b78b4a2de0c150f5">addItemInfo()</a> </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>unit</em>&nbsp;</td><td>the item's unit. See <a class="el" href="classKFileMimeTypeInfo.html#9f712056eacff37b74a7da6084590706">KFileMimeTypeInfo::Unit</a> for a list of available units </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00833">833</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="25b5765df5cfc9257895a39f5d35ada4"></a><!-- doxytag: member="KFilePlugin::virtual_hook" ref="25b5765df5cfc9257895a39f5d35ada4" args="(int id, void *data)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void KFilePlugin::virtual_hook           </td>
          <td>(</td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname"> <em>id</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void *&nbsp;</td>
          <td class="paramname"> <em>data</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td width="100%"><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Helper method to allow binary compatible extensions when needing "new virtual methods". 
<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>id</em>&nbsp;</td><td>the identifier of the new "virtual" method </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>data</em>&nbsp;</td><td>any parameter data the new "virtual" method needs </td></tr>
  </table>
</dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8cpp-source.html#l00794">794</a> of file <a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.cpp</a>.
</div>
</div><p>
<a class="anchor" name="dd487cfb38b9449bcd9cf7c26e6fb572"></a><!-- doxytag: member="KFilePlugin::writeInfo" ref="dd487cfb38b9449bcd9cf7c26e6fb572" args="(const KFileMetaInfo &amp;info) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual bool KFilePlugin::writeInfo           </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classKFileMetaInfo.html">KFileMetaInfo</a> &amp;&nbsp;</td>
          <td class="paramname"> <em>info</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td width="100%"> const<code> [inline, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Similar to the <a class="el" href="classKFilePlugin.html#d6293fac3c4386e077c7a5440be5f9ed">readInfo()</a> but for writing the info back to the file. 
<p>
If you don't have any writable keys, don't implement this method<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>info</em>&nbsp;</td><td>the information that will be written </td></tr>
  </table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><code>true</code> if successful, <code>false</code> if it failed </dd></dl>

<p>
Definition at line <a class="el" href="kfilemetainfo_8h-source.html#l01442">1442</a> of file <a class="el" href="kfilemetainfo_8h-source.html">kfilemetainfo.h</a>.
</div>
</div><p>
<hr>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="kfilemetainfo_8h-source.html">kfilemetainfo.h</a><li><a class="el" href="kfilemetainfo_8cpp-source.html">kfilemetainfo.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>