Sophie

Sophie

distrib > * > 2009.0 > i586 > by-pkgid > a6711891ce757817bba854bf3f25205a > files > 2291

qtjambi-doc-4.3.3-3mdv2008.1.i586.rpm

<class name="QTableWidgetSelectionRange" doc="/**
&lt;p&gt;The &lt;a href=&quot;QTableWidgetSelectionRange.html#QTableWidgetSelectionRange()&quot;&gt;&lt;tt&gt;QTableWidgetSelectionRange&lt;/tt&gt;&lt;/a&gt; class provides a container for storing a selection range in a &lt;a href=&quot;QTableWidget.html&quot;&gt;&lt;tt&gt;QTableWidget&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;QTableWidgetSelectionRange.html#QTableWidgetSelectionRange()&quot;&gt;&lt;tt&gt;QTableWidgetSelectionRange&lt;/tt&gt;&lt;/a&gt; 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.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidget.html&quot;&gt;&lt;tt&gt;QTableWidget&lt;/tt&gt;&lt;/a&gt; */">
    <method name="public QTableWidgetSelectionRange(int top, int left, int bottom, int right)" doc="/**
&lt;p&gt;Constructs the table selection range from the given &lt;tt&gt;top&lt;/tt&gt;, &lt;tt&gt;left&lt;/tt&gt;, &lt;tt&gt;bottom&lt;/tt&gt; and &lt;tt&gt;right&lt;/tt&gt; table rows and columns.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#topRow()&quot;&gt;&lt;tt&gt;topRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#leftColumn()&quot;&gt;&lt;tt&gt;leftColumn&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#bottomRow()&quot;&gt;&lt;tt&gt;bottomRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rightColumn()&quot;&gt;&lt;tt&gt;rightColumn&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public QTableWidgetSelectionRange(com.trolltech.qt.gui.QTableWidgetSelectionRange other)" doc="/**
&lt;p&gt;Constructs a the table selection range by copying the given &lt;tt&gt;other&lt;/tt&gt; table selection range.&lt;/p&gt;
 */"/>
    <method name="public QTableWidgetSelectionRange()" doc="/**
&lt;p&gt;Constructs an table selection range, i.e&amp;#x2e; a range whose &lt;a href=&quot;QTableWidgetSelectionRange.html#rowCount()&quot;&gt;&lt;tt&gt;rowCount&lt;/tt&gt;&lt;/a&gt; and &lt;a href=&quot;QTableWidgetSelectionRange.html#columnCount()&quot;&gt;&lt;tt&gt;columnCount&lt;/tt&gt;&lt;/a&gt; are 0.&lt;/p&gt;
 */"/>
    <method name="public final int bottomRow()" doc="/**
&lt;p&gt;Returns the bottom row of the range.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#topRow()&quot;&gt;&lt;tt&gt;topRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rightColumn()&quot;&gt;&lt;tt&gt;rightColumn&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rowCount()&quot;&gt;&lt;tt&gt;rowCount&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int columnCount()" doc="/**
&lt;p&gt;Returns the number of columns in the range.&lt;/p&gt;
&lt;p&gt;This is equivalent to &lt;a href=&quot;QTableWidgetSelectionRange.html#rightColumn()&quot;&gt;&lt;tt&gt;rightColumn&lt;/tt&gt;&lt;/a&gt; - &lt;a href=&quot;QTableWidgetSelectionRange.html#leftColumn()&quot;&gt;&lt;tt&gt;leftColumn&lt;/tt&gt;&lt;/a&gt; + 1.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rowCount()&quot;&gt;&lt;tt&gt;rowCount&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#leftColumn()&quot;&gt;&lt;tt&gt;leftColumn&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rightColumn()&quot;&gt;&lt;tt&gt;rightColumn&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int leftColumn()" doc="/**
&lt;p&gt;Returns the left column of the range.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rightColumn()&quot;&gt;&lt;tt&gt;rightColumn&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#topRow()&quot;&gt;&lt;tt&gt;topRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#columnCount()&quot;&gt;&lt;tt&gt;columnCount&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int rightColumn()" doc="/**
&lt;p&gt;Returns the right column of the range.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#leftColumn()&quot;&gt;&lt;tt&gt;leftColumn&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#bottomRow()&quot;&gt;&lt;tt&gt;bottomRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#columnCount()&quot;&gt;&lt;tt&gt;columnCount&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int rowCount()" doc="/**
&lt;p&gt;Returns the number of rows in the range.&lt;/p&gt;
&lt;p&gt;This is equivalent to &lt;a href=&quot;QTableWidgetSelectionRange.html#bottomRow()&quot;&gt;&lt;tt&gt;bottomRow&lt;/tt&gt;&lt;/a&gt; - &lt;a href=&quot;QTableWidgetSelectionRange.html#topRow()&quot;&gt;&lt;tt&gt;topRow&lt;/tt&gt;&lt;/a&gt; + 1.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#columnCount()&quot;&gt;&lt;tt&gt;columnCount&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#topRow()&quot;&gt;&lt;tt&gt;topRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#bottomRow()&quot;&gt;&lt;tt&gt;bottomRow&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int topRow()" doc="/**
&lt;p&gt;Returns the top row of the range.&lt;/p&gt;

@see &lt;a href=&quot;QTableWidgetSelectionRange.html#bottomRow()&quot;&gt;&lt;tt&gt;bottomRow&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#leftColumn()&quot;&gt;&lt;tt&gt;leftColumn&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QTableWidgetSelectionRange.html#rowCount()&quot;&gt;&lt;tt&gt;rowCount&lt;/tt&gt;&lt;/a&gt; */"/>
</class>