Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > d5e62c01ae8d1e579463c6a871dd44bf > files > 1075

qtbase5-doc-5.12.6-2.mga7.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>chat_adaptor.h Example File | Qt D-Bus</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td >Qt 5.12</td><td ><a href="qtdbus-index.html">Qt D-Bus</a></td><td ><a href="qtdbus-chat-example.html">D-Bus Chat Example</a></td><td >chat_adaptor.h Example File</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right"><a href="qtdbus-index.html">Qt 5.12.6 Reference Documentation</a></td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">chat_adaptor.h Example File</h1>
<span class="subtitle">chat/chat_adaptor.h</span>
<!-- $$$chat/chat_adaptor.h-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp">

  <span class="comment">/*
   * This file was generated by qdbusxml2cpp version 0.8
   * Command line was: qdbusxml2cpp -a chat_adaptor.h: org.example.chat.xml
   *
   * qdbusxml2cpp is Copyright (C) 2019 The Qt Company Ltd.
   *
   * This is an auto-generated file.
   * This file may have been hand-edited. Look for HAND-EDIT comments
   * before re-generating it.
   */</span>

  <span class="preprocessor">#ifndef CHAT_ADAPTOR_H</span>
  <span class="preprocessor">#define CHAT_ADAPTOR_H</span>

  <span class="preprocessor">#include &lt;QtCore/QObject&gt;</span>
  <span class="preprocessor">#include &lt;QtDBus/QtDBus&gt;</span>
  <span class="keyword">class</span> <span class="type"><a href="../qtcore/qbytearray.html">QByteArray</a></span>;
  <span class="keyword">template</span><span class="operator">&lt;</span><span class="keyword">class</span> T<span class="operator">&gt;</span> <span class="keyword">class</span> <span class="type"><a href="../qtcore/qlist.html">QList</a></span>;
  <span class="keyword">template</span><span class="operator">&lt;</span><span class="keyword">class</span> Key<span class="operator">,</span> <span class="keyword">class</span> Value<span class="operator">&gt;</span> <span class="keyword">class</span> <span class="type"><a href="../qtcore/qmap.html">QMap</a></span>;
  <span class="keyword">class</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span>;
  <span class="keyword">class</span> <span class="type"><a href="../qtcore/qstringlist.html">QStringList</a></span>;
  <span class="keyword">class</span> <span class="type"><a href="../qtcore/qvariant.html">QVariant</a></span>;

  <span class="comment">/*
   * Adaptor class for interface org.example.chat
   */</span>
  <span class="keyword">class</span> ChatAdaptor: <span class="keyword">public</span> <span class="type"><a href="qdbusabstractadaptor.html">QDBusAbstractAdaptor</a></span>
  {
      Q_OBJECT
      Q_CLASSINFO(<span class="string">&quot;D-Bus Interface&quot;</span><span class="operator">,</span> <span class="string">&quot;org.example.chat&quot;</span>)
      Q_CLASSINFO(<span class="string">&quot;D-Bus Introspection&quot;</span><span class="operator">,</span> <span class="string">&quot;&quot;</span>
  <span class="string">&quot;  &lt;interface name=\&quot;org.example.chat\&quot;&gt;\n&quot;</span>
  <span class="string">&quot;    &lt;signal name=\&quot;message\&quot;&gt;\n&quot;</span>
  <span class="string">&quot;      &lt;arg direction=\&quot;out\&quot; type=\&quot;s\&quot; name=\&quot;nickname\&quot;/&gt;\n&quot;</span>
  <span class="string">&quot;      &lt;arg direction=\&quot;out\&quot; type=\&quot;s\&quot; name=\&quot;text\&quot;/&gt;\n&quot;</span>
  <span class="string">&quot;    &lt;/signal&gt;\n&quot;</span>
  <span class="string">&quot;    &lt;signal name=\&quot;action\&quot;&gt;\n&quot;</span>
  <span class="string">&quot;      &lt;arg direction=\&quot;out\&quot; type=\&quot;s\&quot; name=\&quot;nickname\&quot;/&gt;\n&quot;</span>
  <span class="string">&quot;      &lt;arg direction=\&quot;out\&quot; type=\&quot;s\&quot; name=\&quot;text\&quot;/&gt;\n&quot;</span>
  <span class="string">&quot;    &lt;/signal&gt;\n&quot;</span>
  <span class="string">&quot;  &lt;/interface&gt;\n&quot;</span>
          <span class="string">&quot;&quot;</span>)
  <span class="keyword">public</span>:
      ChatAdaptor(<span class="type"><a href="../qtcore/qobject.html">QObject</a></span> <span class="operator">*</span>parent);
      <span class="keyword">virtual</span> <span class="operator">~</span>ChatAdaptor();

  <span class="keyword">public</span>: <span class="comment">// PROPERTIES</span>
  <span class="keyword">public</span> Q_SLOTS: <span class="comment">// METHODS</span>
  Q_SIGNALS: <span class="comment">// SIGNALS</span>
      <span class="type">void</span> action(<span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&amp;</span>nickname<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&amp;</span>text);
      <span class="type">void</span> message(<span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&amp;</span>nickname<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="../qtcore/qstring.html">QString</a></span> <span class="operator">&amp;</span>text);
  };

  <span class="preprocessor">#endif</span>

</pre>
</div>
<!-- @@@chat/chat_adaptor.h -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2019 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br/>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br/>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>