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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- q3pointarray.cpp -->
<title>Qt 4.8: Q3PointArray Class Reference</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="modules.html">Modules</a></li>
<li>Qt3SupportLight</li>
<li>Q3PointArray</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<h1 class="title">Q3PointArray Class Reference</h1>
<pre class="cpp"> <span class="preprocessor">#include <Q3PointArray></span></pre><p><b>This class is part of the Qt 3 support library.</b> It is provided to keep old source code working. We strongly advise against using it in new code. See <a href="porting4.html#qpointarray">Porting to Qt 4</a> for more information.</p>
<p><b>Inherits: </b><a href="qpolygon.html">QPolygon</a>.</p>
<ul>
<li><a href="q3pointarray-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-functions"></a>
<h2>Public Functions</h2>
<table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#Q3PointArray">Q3PointArray</a></b> ()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#Q3PointArray-2">Q3PointArray</a></b> ( const QRect & <i>r</i>, bool <i>closed</i> = false )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#Q3PointArray-3">Q3PointArray</a></b> ( const QPolygon & <i>other</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> Q3PointArray </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#copy">copy</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> Q3PointArray </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#cubicBezier">cubicBezier</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#isNull">isNull</a></b> ()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#makeArc">makeArc</a></b> ( int <i>x</i>, int <i>y</i>, int <i>w</i>, int <i>h</i>, int <i>a1</i>, int <i>a2</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#makeArc-2">makeArc</a></b> ( int <i>x</i>, int <i>y</i>, int <i>w</i>, int <i>h</i>, int <i>a1</i>, int <i>a2</i>, const QMatrix & <i>xf</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="q3pointarray.html#makeEllipse">makeEllipse</a></b> ( int <i>x</i>, int <i>y</i>, int <i>w</i>, int <i>h</i> )</td></tr>
</table>
<ul>
<li class="fn">19 public functions inherited from <a href="qpolygon.html#public-functions">QPolygon</a></li>
<li class="fn">65 public functions inherited from <a href="qvector.html#public-functions">QVector</a></li>
</ul>
<h3>Additional Inherited Members</h3>
<ul>
<li class="fn">2 static public members inherited from <a href="qvector.html#static-public-members">QVector</a></li>
</ul>
<a name="details"></a>
<!-- $$$Q3PointArray-description -->
<div class="descr">
<h2>Detailed Description</h2>
<p>The Q3PointArray class provides an array of points.</p>
<p>Q3PointArray is a <a href="qpolygon.html">QPolygon</a> subclass that provides functions to make it more source compatible with the <tt>QPointArray</tt> class in Qt 3.</p>
<p>In Qt 4, we recommend that you use <a href="qpainterpath.html">QPainterPath</a> for representing arcs, ellipses, and Bezier curves, rather than <a href="qpolygon.html">QPolygon</a>.</p>
</div>
<!-- @@@Q3PointArray -->
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$Q3PointArray[overload1]$$$Q3PointArray -->
<h3 class="fn"><a name="Q3PointArray"></a>Q3PointArray::<span class="name">Q3PointArray</span> ()</h3>
<p>Constructs an empty <a href="q3pointarray.html" class="compat">Q3PointArray</a>.</p>
<!-- @@@Q3PointArray -->
<!-- $$$Q3PointArray$$$Q3PointArrayconstQRect&bool -->
<h3 class="fn"><a name="Q3PointArray-2"></a>Q3PointArray::<span class="name">Q3PointArray</span> ( const <span class="type"><a href="qrect.html">QRect</a></span> & <i>r</i>, <span class="type">bool</span> <i>closed</i> = false )</h3>
<p>Constructs a point array from the rectangle <i>r</i>.</p>
<p>If <i>closed</i> is false, then the point array just contains the following four points of the rectangle ordered clockwise. The bottom-right point is located at (r.x() + r.width(), r.y() + r.height()).</p>
<!-- @@@Q3PointArray -->
<!-- $$$Q3PointArray$$$Q3PointArrayconstQPolygon& -->
<h3 class="fn"><a name="Q3PointArray-3"></a>Q3PointArray::<span class="name">Q3PointArray</span> ( const <span class="type"><a href="qpolygon.html">QPolygon</a></span> & <i>other</i> )</h3>
<p>Constructs a copy of <i>other</i>.</p>
<!-- @@@Q3PointArray -->
<!-- $$$copy[overload1]$$$copy -->
<h3 class="fn"><a name="copy"></a><span class="type">Q3PointArray</span> Q3PointArray::<span class="name">copy</span> () const</h3>
<p>Returns a copy of this <a href="q3pointarray.html" class="compat">Q3PointArray</a>.</p>
<!-- @@@copy -->
<!-- $$$cubicBezier[overload1]$$$cubicBezier -->
<h3 class="fn"><a name="cubicBezier"></a><span class="type">Q3PointArray</span> Q3PointArray::<span class="name">cubicBezier</span> () const</h3>
<p>Returns the Bezier points for the four control points in this array.</p>
<!-- @@@cubicBezier -->
<!-- $$$isNull[overload1]$$$isNull -->
<h3 class="fn"><a name="isNull"></a><span class="type">bool</span> Q3PointArray::<span class="name">isNull</span> ()</h3>
<p>Returns <a href="qvector.html#isEmpty">isEmpty</a>(). Use <a href="qvector.html#isEmpty">isEmpty</a>() instead.</p>
<!-- @@@isNull -->
<!-- $$$makeArc[overload1]$$$makeArcintintintintintint -->
<h3 class="fn"><a name="makeArc"></a><span class="type">void</span> Q3PointArray::<span class="name">makeArc</span> ( <span class="type">int</span> <i>x</i>, <span class="type">int</span> <i>y</i>, <span class="type">int</span> <i>w</i>, <span class="type">int</span> <i>h</i>, <span class="type">int</span> <i>a1</i>, <span class="type">int</span> <i>a2</i> )</h3>
<p>Sets the points of the array to those describing an arc of an ellipse with size, width <i>w</i> by height <i>h</i>, and position (<i>x</i>, <i>y</i>), starting from angle <i>a1</i> and spanning by angle <i>a2</i>. The resulting array has sufficient resolution for pixel accuracy (see the overloaded function which takes an additional <a href="qmatrix.html" class="obsolete">QMatrix</a> parameter).</p>
<p>Angles are specified in 16ths of a degree, i.e. a full circle equals 5760 (16*360). Positive values mean counter-clockwise, whereas negative values mean the clockwise direction. Zero degrees is at the 3 o'clock position.</p>
<!-- @@@makeArc -->
<!-- $$$makeArc$$$makeArcintintintintintintconstQMatrix& -->
<h3 class="fn"><a name="makeArc-2"></a><span class="type">void</span> Q3PointArray::<span class="name">makeArc</span> ( <span class="type">int</span> <i>x</i>, <span class="type">int</span> <i>y</i>, <span class="type">int</span> <i>w</i>, <span class="type">int</span> <i>h</i>, <span class="type">int</span> <i>a1</i>, <span class="type">int</span> <i>a2</i>, const <span class="type"><a href="qmatrix.html">QMatrix</a></span> & <i>xf</i> )</h3>
<p>This is an overloaded function.</p>
<p>Sets the points of the array to those describing an arc of an ellipse with width <i>w</i> and height <i>h</i> and position (<i>x</i>, <i>y</i>), starting from angle <i>a1</i>, and spanning angle by <i>a2</i>, and transformed by the matrix <i>xf</i>. The resulting array has sufficient resolution for pixel accuracy.</p>
<p>Angles are specified in 16ths of a degree, i.e. a full circle equals 5760 (16 * 360). Positive values mean counter-clockwise, whereas negative values mean the clockwise direction. Zero degrees is at the 3 o'clock position.</p>
<!-- @@@makeArc -->
<!-- $$$makeEllipse[overload1]$$$makeEllipseintintintint -->
<h3 class="fn"><a name="makeEllipse"></a><span class="type">void</span> Q3PointArray::<span class="name">makeEllipse</span> ( <span class="type">int</span> <i>x</i>, <span class="type">int</span> <i>y</i>, <span class="type">int</span> <i>w</i>, <span class="type">int</span> <i>h</i> )</h3>
<p>Sets the points of the array to those describing an ellipse with size, width <i>w</i> by height <i>h</i>, and position (<i>x</i>, <i>y</i>).</p>
<p>The returned array has sufficient resolution for use as pixels.</p>
<!-- @@@makeEllipse -->
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2012 Nokia Corporation and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
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.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>
|