Sophie

Sophie

distrib > Mageia > 6 > armv7hl > by-pkgid > dabf927d465c36ba2d7621d5cd1fe76f > files > 218

qt3d5-doc-5.9.4-1.mga6.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" />
<!-- qlogicaldevice.cpp -->
  <title>LogicalDevice QML Type | Qt 3D 5.9</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.9</td><td ><a href="qt3d-index.html">Qt 3D</a></td><td ><a href="qt3d-core-qmlmodule.html">QML Types</a></td><td >LogicalDevice QML Type</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.9.4 Reference Documentation</td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#properties">Properties</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">LogicalDevice QML Type</h1>
<span class="subtitle"></span>
<!-- $$$LogicalDevice-brief -->
<p>QML frontend for the <a href="qt3dinput-qlogicaldevice.html">Qt3DInput::QLogicalDevice</a> C++ class. <a href="#details">More...</a></p>
<!-- @@@LogicalDevice -->
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> Import Statement:</td><td class="memItemRight bottomAlign"> import Qt3D.Input 2.0</td></tr><tr><td class="memItemLeft rightAlign topAlign"> Since:</td><td class="memItemRight bottomAlign">  Qt 5.6</td></tr><tr><td class="memItemLeft rightAlign topAlign"> Instantiates:</td><td class="memItemRight bottomAlign"> <a href="qml-qt3d-input-logicaldevice.html"><a href="qt3dinput-qlogicaldevice.html">QLogicalDevice</a></td></tr></table></div><ul>
<li><a href="qml-qt3d-input-logicaldevice-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="properties"></a>
<h2 id="properties">Properties</h2>
<ul>
<li class="fn"><b><b><a href="qml-qt3d-input-logicaldevice.html#actions-prop">actions</a></b></b> : list&lt;Action&gt;</li>
<li class="fn"><b><b><a href="qml-qt3d-input-logicaldevice.html#axis-prop">axis</a></b></b> : list&lt;Axis&gt;</li>
</ul>
<!-- $$$LogicalDevice-description -->
<a name="details"></a>
<h2 id="details">Detailed Description</h2>
<p>Allows the user to define a set of actions that they wish to use within an application.</p>
<pre class="qml">

  <span class="type"><a href="qml-qt3d-input-logicaldevice.html">LogicalDevice</a></span> {
      <span class="name">id</span>: <span class="name">keyboardLogicalDevice</span>

      <span class="name">actions</span>: [
          <span class="type"><a href="qml-qt3d-input-action.html">Action</a></span> {
              <span class="name">name</span>: <span class="string">&quot;fire&quot;</span>
              <span class="name">inputs</span>: [
                  <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                      <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                      <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_Space</span>]
                  },
                  <span class="type"><a href="qml-qt3d-input-inputchord.html">InputChord</a></span> {
                      <span class="name">tolerance</span>: <span class="number">10</span>
                      <span class="name">inputs</span>: [
                          <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                              <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                              <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_A</span>]
                          },
                          <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                              <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                              <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_S</span>]
                          }
                      ]
                  }
              ]
          },
          <span class="type"><a href="qml-qt3d-input-action.html">Action</a></span> {
              <span class="name">name</span>: <span class="string">&quot;reload&quot;</span>
              <span class="name">inputs</span>: [
                  <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                      <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                      <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_Alt</span>]
                  }
              ]
          },
          <span class="type"><a href="qml-qt3d-input-action.html">Action</a></span> {
              <span class="name">name</span>: <span class="string">&quot;combo&quot;</span>
              <span class="name">inputs</span>: [
                  <span class="type"><a href="qml-qt3d-input-inputsequence.html">InputSequence</a></span> {
                      <span class="name">interval</span>: <span class="number">1000</span>
                      <span class="name">timeout</span>: <span class="number">10000</span>
                      <span class="name">inputs</span>: [
                          <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                              <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                              <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_G</span>]
                          },
                          <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                              <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                              <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_D</span>]
                          },
                          <span class="type"><a href="qml-qt3d-input-actioninput.html">ActionInput</a></span> {
                              <span class="name">sourceDevice</span>: <span class="name">keyboardSourceDevice</span>
                              <span class="name">keys</span>: [<span class="name">Qt</span>.<span class="name">Key_J</span>]
                          }
                      ]
                  }
              ]
          }
      ]
  }

</pre>
<!-- @@@LogicalDevice -->
<h2>Property Documentation</h2>
<!-- $$$actions -->
<div class="qmlitem"><div class="qmlproto">
<div class="table"><table class="qmlname">
<tr valign="top" class="odd" id="actions-prop">
<td class="tblQmlPropNode"><p>
<a name="actions-prop"></a><span class="name">actions</span> : <span class="type">list</span>&lt;<span class="type"><a href="qml-qt3d-input-action.html">Action</a></span>&gt;</p></td></tr>
</table></div>
</div><div class="qmldoc"><p>The actions used by this Logical Device</p>
</div></div><!-- @@@actions -->
<br/>
<!-- $$$axis -->
<div class="qmlitem"><div class="qmlproto">
<div class="table"><table class="qmlname">
<tr valign="top" class="odd" id="axis-prop">
<td class="tblQmlPropNode"><p>
<a name="axis-prop"></a><span class="name">axis</span> : <span class="type">list</span>&lt;<span class="type"><a href="qml-qt3d-input-axis.html">Axis</a></span>&gt;</p></td></tr>
</table></div>
</div><div class="qmldoc"><p>The axis used by this Logical Device</p>
</div></div><!-- @@@axis -->
<br/>
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2017 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>