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 139 140 141 142 143
|
<?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" />
<!-- qtablewidget.cpp -->
<title>Qt 4.8: QTableWidgetSelectionRange 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><a href="qtgui.html">QtGui</a></li>
<li>QTableWidgetSelectionRange</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">QTableWidgetSelectionRange Class Reference</h1>
<!-- $$$QTableWidgetSelectionRange-brief -->
<p>The QTableWidgetSelectionRange class provides a way to interact with selection in a model without using model indexes and a selection model. <a href="#details">More...</a></p>
<!-- @@@QTableWidgetSelectionRange -->
<pre class="cpp"> <span class="preprocessor">#include <QTableWidgetSelectionRange></span></pre><ul>
<li><a href="qtablewidgetselectionrange-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="qtablewidgetselectionrange.html#QTableWidgetSelectionRange">QTableWidgetSelectionRange</a></b> ()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#QTableWidgetSelectionRange-2">QTableWidgetSelectionRange</a></b> ( int <i>top</i>, int <i>left</i>, int <i>bottom</i>, int <i>right</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#QTableWidgetSelectionRange-3">QTableWidgetSelectionRange</a></b> ( const QTableWidgetSelectionRange & <i>other</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#dtor.QTableWidgetSelectionRange">~QTableWidgetSelectionRange</a></b> ()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#bottomRow">bottomRow</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#columnCount">columnCount</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#leftColumn">leftColumn</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#rightColumn">rightColumn</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#rowCount">rowCount</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qtablewidgetselectionrange.html#topRow">topRow</a></b> () const</td></tr>
</table>
<a name="details"></a>
<!-- $$$QTableWidgetSelectionRange-description -->
<div class="descr">
<h2>Detailed Description</h2>
<p>The QTableWidgetSelectionRange class provides a way to interact with selection in a model without using model indexes and a selection model.</p>
<p>The QTableWidgetSelectionRange class stores the top left and bottom right rows and columns of a selection range in a table. The selections in the table may consist of several selection ranges.</p>
<p><b>Note:</b> If the item within the selection range is marked as not selectable, e.g., <tt>itemFlags() & Qt::ItemIsSelectable == 0</tt> then it will not appear in the selection range.</p>
</div>
<p><b>See also </b><a href="qtablewidget.html">QTableWidget</a>.</p>
<!-- @@@QTableWidgetSelectionRange -->
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$QTableWidgetSelectionRange[overload1]$$$QTableWidgetSelectionRange -->
<h3 class="fn"><a name="QTableWidgetSelectionRange"></a>QTableWidgetSelectionRange::<span class="name">QTableWidgetSelectionRange</span> ()</h3>
<p>Constructs an table selection range, i.e. a range whose <a href="qtablewidgetselectionrange.html#rowCount">rowCount</a>() and <a href="qtablewidgetselectionrange.html#columnCount">columnCount</a>() are 0.</p>
<!-- @@@QTableWidgetSelectionRange -->
<!-- $$$QTableWidgetSelectionRange$$$QTableWidgetSelectionRangeintintintint -->
<h3 class="fn"><a name="QTableWidgetSelectionRange-2"></a>QTableWidgetSelectionRange::<span class="name">QTableWidgetSelectionRange</span> ( <span class="type">int</span> <i>top</i>, <span class="type">int</span> <i>left</i>, <span class="type">int</span> <i>bottom</i>, <span class="type">int</span> <i>right</i> )</h3>
<p>Constructs the table selection range from the given <i>top</i>, <i>left</i>, <i>bottom</i> and <i>right</i> table rows and columns.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#topRow">topRow</a>(), <a href="qtablewidgetselectionrange.html#leftColumn">leftColumn</a>(), <a href="qtablewidgetselectionrange.html#bottomRow">bottomRow</a>(), and <a href="qtablewidgetselectionrange.html#rightColumn">rightColumn</a>().</p>
<!-- @@@QTableWidgetSelectionRange -->
<!-- $$$QTableWidgetSelectionRange$$$QTableWidgetSelectionRangeconstQTableWidgetSelectionRange& -->
<h3 class="fn"><a name="QTableWidgetSelectionRange-3"></a>QTableWidgetSelectionRange::<span class="name">QTableWidgetSelectionRange</span> ( const <span class="type">QTableWidgetSelectionRange</span> & <i>other</i> )</h3>
<p>Constructs a the table selection range by copying the given <i>other</i> table selection range.</p>
<!-- @@@QTableWidgetSelectionRange -->
<!-- $$$~QTableWidgetSelectionRange[overload1]$$$~QTableWidgetSelectionRange -->
<h3 class="fn"><a name="dtor.QTableWidgetSelectionRange"></a>QTableWidgetSelectionRange::<span class="name">~QTableWidgetSelectionRange</span> ()</h3>
<p>Destroys the table selection range.</p>
<!-- @@@~QTableWidgetSelectionRange -->
<!-- $$$bottomRow[overload1]$$$bottomRow -->
<h3 class="fn"><a name="bottomRow"></a><span class="type">int</span> QTableWidgetSelectionRange::<span class="name">bottomRow</span> () const</h3>
<p>Returns the bottom row of the range.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#topRow">topRow</a>(), <a href="qtablewidgetselectionrange.html#rightColumn">rightColumn</a>(), and <a href="qtablewidgetselectionrange.html#rowCount">rowCount</a>().</p>
<!-- @@@bottomRow -->
<!-- $$$columnCount[overload1]$$$columnCount -->
<h3 class="fn"><a name="columnCount"></a><span class="type">int</span> QTableWidgetSelectionRange::<span class="name">columnCount</span> () const</h3>
<p>Returns the number of columns in the range.</p>
<p>This is equivalent to <a href="qtablewidgetselectionrange.html#rightColumn">rightColumn</a>() - <a href="qtablewidgetselectionrange.html#leftColumn">leftColumn</a>() + 1.</p>
<p>This function was introduced in Qt 4.1.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#rowCount">rowCount</a>(), <a href="qtablewidgetselectionrange.html#leftColumn">leftColumn</a>(), and <a href="qtablewidgetselectionrange.html#rightColumn">rightColumn</a>().</p>
<!-- @@@columnCount -->
<!-- $$$leftColumn[overload1]$$$leftColumn -->
<h3 class="fn"><a name="leftColumn"></a><span class="type">int</span> QTableWidgetSelectionRange::<span class="name">leftColumn</span> () const</h3>
<p>Returns the left column of the range.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#rightColumn">rightColumn</a>(), <a href="qtablewidgetselectionrange.html#topRow">topRow</a>(), and <a href="qtablewidgetselectionrange.html#columnCount">columnCount</a>().</p>
<!-- @@@leftColumn -->
<!-- $$$rightColumn[overload1]$$$rightColumn -->
<h3 class="fn"><a name="rightColumn"></a><span class="type">int</span> QTableWidgetSelectionRange::<span class="name">rightColumn</span> () const</h3>
<p>Returns the right column of the range.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#leftColumn">leftColumn</a>(), <a href="qtablewidgetselectionrange.html#bottomRow">bottomRow</a>(), and <a href="qtablewidgetselectionrange.html#columnCount">columnCount</a>().</p>
<!-- @@@rightColumn -->
<!-- $$$rowCount[overload1]$$$rowCount -->
<h3 class="fn"><a name="rowCount"></a><span class="type">int</span> QTableWidgetSelectionRange::<span class="name">rowCount</span> () const</h3>
<p>Returns the number of rows in the range.</p>
<p>This is equivalent to <a href="qtablewidgetselectionrange.html#bottomRow">bottomRow</a>() - <a href="qtablewidgetselectionrange.html#topRow">topRow</a>() + 1.</p>
<p>This function was introduced in Qt 4.1.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#columnCount">columnCount</a>(), <a href="qtablewidgetselectionrange.html#topRow">topRow</a>(), and <a href="qtablewidgetselectionrange.html#bottomRow">bottomRow</a>().</p>
<!-- @@@rowCount -->
<!-- $$$topRow[overload1]$$$topRow -->
<h3 class="fn"><a name="topRow"></a><span class="type">int</span> QTableWidgetSelectionRange::<span class="name">topRow</span> () const</h3>
<p>Returns the top row of the range.</p>
<p><b>See also </b><a href="qtablewidgetselectionrange.html#bottomRow">bottomRow</a>(), <a href="qtablewidgetselectionrange.html#leftColumn">leftColumn</a>(), and <a href="qtablewidgetselectionrange.html#rowCount">rowCount</a>().</p>
<!-- @@@topRow -->
</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>
|