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
|
<?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" />
<!-- qrect.cpp -->
<title>Qt 4.8: Qt 3 Support Members for QRect</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><a href="qtcore.html">QtCore</a></li>
<li>QRect</li>
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">Qt 3 Support Members for QRect</h1>
<p><b>The following class members are part of the <a href="qt3support.html">Qt 3 support layer</a>.</b> They are provided to help you port old code to Qt 4. We advise against using them in new code.</p>
<p><ul><li><a href="qrect.html">QRect class reference</a></li></ul></p>
<h2>Public Functions</h2>
<table class="alignedsummary">
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#addCoords">addCoords</a></b> ( int <i>dx1</i>, int <i>dy1</i>, int <i>dx2</i>, int <i>dy2</i> )</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#coords">coords</a></b> ( int * <i>x1</i>, int * <i>y1</i>, int * <i>x2</i>, int * <i>y2</i> ) const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#moveBy">moveBy</a></b> ( int <i>dx</i>, int <i>dy</i> )</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#moveBy-2">moveBy</a></b> ( const QPoint & <i>p</i> )</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> QRect </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#normalize">normalize</a></b> () const</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> int & </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#rBottom">rBottom</a></b> ()</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> int & </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#rLeft">rLeft</a></b> ()</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> int & </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#rRight">rRight</a></b> ()</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> int & </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#rTop">rTop</a></b> ()</td></tr>
<tr><td class="memItemLeft topAlign rightAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qrect-qt3.html#rect">rect</a></b> ( int * <i>x</i>, int * <i>y</i>, int * <i>width</i>, int * <i>height</i> ) const</td></tr>
</table>
<h2>Member Function Documentation</h2>
<!-- $$$addCoords[overload1]$$$addCoordsintintintint -->
<h3 class="fn"><a name="addCoords"></a><span class="type">void</span> QRect::<span class="name">addCoords</span> ( <span class="type">int</span> <i>dx1</i>, <span class="type">int</span> <i>dy1</i>, <span class="type">int</span> <i>dx2</i>, <span class="type">int</span> <i>dy2</i> )</h3>
<p>Adds <i>dx1</i>, <i>dy1</i>, <i>dx2</i> and <i>dy2</i> to the existing coordinates of the rectangle respectively.</p>
<p>Use the <a href="qrect.html#adjust">adjust</a>() function instead.</p>
<!-- @@@addCoords -->
<!-- $$$coords[overload1]$$$coordsint*int*int*int* -->
<h3 class="fn"><a name="coords"></a><span class="type">void</span> QRect::<span class="name">coords</span> ( <span class="type">int</span> * <i>x1</i>, <span class="type">int</span> * <i>y1</i>, <span class="type">int</span> * <i>x2</i>, <span class="type">int</span> * <i>y2</i> ) const</h3>
<p>Extracts the position of the rectangle's top-left corner to *<i>x1</i> and *<i>y1</i>, and the position of the bottom-right corner to *<i>x2</i> and *<i>y2</i>.</p>
<p>Use the <a href="qrect.html#getCoords">getCoords</a>() function instead.</p>
<p><b>See also </b><a href="qrect.html#setCoords">setCoords</a>().</p>
<!-- @@@coords -->
<!-- $$$moveBy[overload1]$$$moveByintint -->
<h3 class="fn"><a name="moveBy"></a><span class="type">void</span> QRect::<span class="name">moveBy</span> ( <span class="type">int</span> <i>dx</i>, <span class="type">int</span> <i>dy</i> )</h3>
<p>Moves the rectangle <i>dx</i> along the x axis and <i>dy</i> along the y axis, relative to the current position.</p>
<p>Use the <a href="qrect.html#translate">translate</a>() function instead.</p>
<!-- @@@moveBy -->
<!-- $$$moveBy$$$moveByconstQPoint& -->
<h3 class="fn"><a name="moveBy-2"></a><span class="type">void</span> QRect::<span class="name">moveBy</span> ( const <span class="type"><a href="qpoint.html">QPoint</a></span> & <i>p</i> )</h3>
<p>Use the <a href="qrect.html#translate">translate</a>() function instead.</p>
<!-- @@@moveBy -->
<!-- $$$normalize[overload1]$$$normalize -->
<h3 class="fn"><a name="normalize"></a><span class="type">QRect</span> QRect::<span class="name">normalize</span> () const</h3>
<p>Returns a normalized rectangle; i.e., a rectangle that has a non-negative width and height.</p>
<p>Use the <a href="qrect.html#normalized">normalized</a>() function instead</p>
<!-- @@@normalize -->
<!-- $$$rBottom[overload1]$$$rBottom -->
<h3 class="fn"><a name="rBottom"></a><span class="type">int</span> & QRect::<span class="name">rBottom</span> ()</h3>
<p>Returns a reference to the bottom coordinate of the rectangle.</p>
<p>Use the <a href="qrect.html#bottom">bottom</a>() function instead.</p>
<!-- @@@rBottom -->
<!-- $$$rLeft[overload1]$$$rLeft -->
<h3 class="fn"><a name="rLeft"></a><span class="type">int</span> & QRect::<span class="name">rLeft</span> ()</h3>
<p>Returns a reference to the left coordinate of the rectangle.</p>
<p>Use the <a href="qrect.html#left">left</a>() function instead.</p>
<!-- @@@rLeft -->
<!-- $$$rRight[overload1]$$$rRight -->
<h3 class="fn"><a name="rRight"></a><span class="type">int</span> & QRect::<span class="name">rRight</span> ()</h3>
<p>Returns a reference to the right coordinate of the rectangle.</p>
<p>Use the <a href="qrect.html#right">right</a>() function instead.</p>
<!-- @@@rRight -->
<!-- $$$rTop[overload1]$$$rTop -->
<h3 class="fn"><a name="rTop"></a><span class="type">int</span> & QRect::<span class="name">rTop</span> ()</h3>
<p>Returns a reference to the top coordinate of the rectangle.</p>
<p>Use the <a href="qrect.html#top">top</a>() function instead.</p>
<!-- @@@rTop -->
<!-- $$$rect[overload1]$$$rectint*int*int*int* -->
<h3 class="fn"><a name="rect"></a><span class="type">void</span> QRect::<span class="name">rect</span> ( <span class="type">int</span> * <i>x</i>, <span class="type">int</span> * <i>y</i>, <span class="type">int</span> * <i>width</i>, <span class="type">int</span> * <i>height</i> ) const</h3>
<p>Extracts the position of the rectangle's top-left corner to *<i>x</i> and *<i>y</i>, and its dimensions to *<i>width</i> and * <i>height</i>.</p>
<p>Use the <a href="qrect.html#getRect">getRect</a>() function instead.</p>
<p><b>See also </b><a href="qrect.html#setRect">setRect</a>().</p>
<!-- @@@rect -->
<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>
|