/usr/share/qt5/doc/qtquickcontrols2/qtquickcontrols2-sidepanel-example.html is in qtquickcontrols2-5-doc-html 5.9.5-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qtquickcontrols2-sidepanel.qdoc -->
<title>Qt Quick Controls 2 - Side Panel | Qt Quick Controls 2 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="qtquickcontrols2-index.html">Qt Quick Controls 2</a></td><td ><a href="qtquickcontrols2-examples.html">Qt Quick Controls 2 Examples</a></td><td >Qt Quick Controls 2 - Side Panel</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.9.5 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="#running-the-example">Running the Example</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">Qt Quick Controls 2 - Side Panel</h1>
<span class="subtitle"></span>
<!-- $$$sidepanel-description -->
<div class="descr"> <a name="details"></a>
<p>This example demonstrates how <a href="qml-qtquick-controls2-drawer.html">Drawer</a> can be used as a non-closable persistent side panel.</p>
<div class="table"><table style="background:transparent; border:0px">
<tr><td style="border:0px">
<p class="centerAlign"><img src="images/qtquickcontrols2-sidepanel-portrait.png" alt="" /></p><p class="figCaption">An interactive Drawer in portrait mode</p>
</td><td style="border:0px">
<p class="centerAlign"><img src="images/qtquickcontrols2-sidepanel-landscape.png" alt="" /></p><p class="figCaption">A non-interactive Drawer in landscape mode</p>
</td></tr>
</table></div>
<p>When the application is in portrait mode, the drawer is an interactive side panel that can be swiped open from the left edge. It appears on top of the content, and blocks user interaction through its modal background. When the application is in landscape mode, the drawer and the content are laid out side by side.</p>
<p>The current orientation of the application is determined by comparing the width and height of the window:</p>
<pre class="qml">
readonly property <span class="type">bool</span> <span class="name">inPortrait</span>: <span class="name">window</span>.<span class="name">width</span> <span class="operator"><</span> <span class="name">window</span>.<span class="name">height</span>
</pre>
<p>This is used to specify whether the drawer is <a href="qml-qtquick-controls2-popup.html#modal-prop">modal</a> and <a href="qml-qtquick-controls2-drawer.html#interactive-prop">interactive</a>, and to configure its <a href="qml-qtquick-controls2-drawer.html#position-prop">position</a> and <a href="qml-qtquick-controls2-popup.html#visible-prop">visibility</a> accordingly.</p>
<pre class="qml">
<span class="type"><a href="qml-qtquick-controls2-drawer.html">Drawer</a></span> {
...
<span class="name">modal</span>: <span class="name">inPortrait</span>
<span class="name">interactive</span>: <span class="name">inPortrait</span>
<span class="name">position</span>: <span class="name">inPortrait</span> ? <span class="number">0</span> : <span class="number">1</span>
<span class="name">visible</span>: !<span class="name">inPortrait</span>
...
}
</pre>
<a name="running-the-example"></a>
<h2 id="running-the-example">Running the Example</h2>
<p>To run the example from Qt Creator, open the <b>Welcome</b> mode and select the example from <b>Examples</b>. For more information, visit Building and Running an Example.</p>
<p>Files:</p>
<ul>
<li><a href="qtquickcontrols2-sidepanel-sidepanel-cpp.html">sidepanel/sidepanel.cpp</a></li>
<li><a href="qtquickcontrols2-sidepanel-sidepanel-qml.html">sidepanel/sidepanel.qml</a></li>
<li><a href="qtquickcontrols2-sidepanel-sidepanel-pro.html">sidepanel/sidepanel.pro</a></li>
</ul>
<p>Images:</p>
<ul>
<li><a href="images/used-in-examples/sidepanel/images/qt-logo.png">sidepanel/images/qt-logo.png</a></li>
<li><a href="images/used-in-examples/sidepanel/images/qt-logo@2x.png">sidepanel/images/qt-logo@2x.png</a></li>
<li><a href="images/used-in-examples/sidepanel/images/qt-logo@3x.png">sidepanel/images/qt-logo@3x.png</a></li>
<li><a href="images/used-in-examples/sidepanel/images/qt-logo@4x.png">sidepanel/images/qt-logo@4x.png</a></li>
</ul>
</div>
<!-- @@@sidepanel -->
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</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>
|