summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtableselection.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqtableselection.3qt
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt-42957a3f.tar.gz
tqt-42957a3f.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqtableselection.3qt')
-rw-r--r--doc/man/man3/tqtableselection.3qt56
1 files changed, 28 insertions, 28 deletions
diff --git a/doc/man/man3/tqtableselection.3qt b/doc/man/man3/tqtableselection.3qt
index fcc5d6e6a..b6c091a1f 100644
--- a/doc/man/man3/tqtableselection.3qt
+++ b/doc/man/man3/tqtableselection.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QTableSelection 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQTableSelection 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,17 +7,17 @@
.ad l
.nh
.SH NAME
-QTableSelection \- Access to a selected area in a QTable
+TQTableSelection \- Access to a selected area in a TQTable
.SH SYNOPSIS
-\fC#include <ntqtable.h>\fR
+\fC#include <tqtable.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQTableSelection\fR ()"
+.BI "\fBTQTableSelection\fR ()"
.br
.ti -1c
-.BI "\fBQTableSelection\fR ( int start_row, int start_col, int end_row, int end_col )"
+.BI "\fBTQTableSelection\fR ( int start_row, int start_col, int end_row, int end_col )"
.br
.ti -1c
.BI "void \fBinit\fR ( int row, int col )"
@@ -26,10 +26,10 @@ QTableSelection \- Access to a selected area in a QTable
.BI "void \fBexpandTo\fR ( int row, int col )"
.br
.ti -1c
-.BI "bool \fBoperator==\fR ( const QTableSelection & s ) const"
+.BI "bool \fBoperator==\fR ( const TQTableSelection & s ) const"
.br
.ti -1c
-.BI "bool \fBoperator!=\fR ( const QTableSelection & s ) const"
+.BI "bool \fBoperator!=\fR ( const TQTableSelection & s ) const"
.br
.ti -1c
.BI "int \fBtopRow\fR () const"
@@ -63,77 +63,77 @@ QTableSelection \- Access to a selected area in a QTable
.br
.in -1c
.SH DESCRIPTION
-The QTableSelection class provides access to a selected area in a QTable.
+The TQTableSelection class provides access to a selected area in a TQTable.
.PP
-The selection is a rectangular set of cells in a QTable. One of the rectangle's cells is called the anchor cell; this is the cell that was selected first. The init() function sets the anchor and the selection rectangle to exactly this cell; the expandTo() function expands the selection rectangle to include additional cells.
+The selection is a rectangular set of cells in a TQTable. One of the rectangle's cells is called the anchor cell; this is the cell that was selected first. The init() function sets the anchor and the selection rectangle to exactly this cell; the expandTo() function expands the selection rectangle to include additional cells.
.PP
There are various access functions to find out about the area: anchorRow() and anchorCol() return the anchor's position; leftCol(), rightCol(), topRow() and bottomRow() return the rectangle's four edges. All four are part of the selection.
.PP
-A newly created QTableSelection is inactive -- isActive() returns FALSE. You must use init() and expandTo() to activate it.
+A newly created TQTableSelection is inactive -- isActive() returns FALSE. You must use init() and expandTo() to activate it.
.PP
-See also QTable, QTable::addSelection(), QTable::selection(), QTable::selectCells(), QTable::selectRow(), QTable::selectColumn(), and Advanced Widgets.
+See also TQTable, TQTable::addSelection(), TQTable::selection(), TQTable::selectCells(), TQTable::selectRow(), TQTable::selectColumn(), and Advanced Widgets.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QTableSelection::QTableSelection ()"
+.SH "TQTableSelection::TQTableSelection ()"
Creates an inactive selection. Use init() and expandTo() to activate it.
-.SH "QTableSelection::QTableSelection ( int start_row, int start_col, int end_row, int end_col )"
+.SH "TQTableSelection::TQTableSelection ( int start_row, int start_col, int end_row, int end_col )"
Creates an active selection, starting at \fIstart_row\fR and \fIstart_col\fR, ending at \fIend_row\fR and \fIend_col\fR.
-.SH "int QTableSelection::anchorCol () const"
+.SH "int TQTableSelection::anchorCol () const"
Returns the anchor column of the selection.
.PP
See also anchorRow() and expandTo().
-.SH "int QTableSelection::anchorRow () const"
+.SH "int TQTableSelection::anchorRow () const"
Returns the anchor row of the selection.
.PP
See also anchorCol() and expandTo().
-.SH "int QTableSelection::bottomRow () const"
+.SH "int TQTableSelection::bottomRow () const"
Returns the bottom row of the selection.
.PP
See also topRow(), leftCol(), and rightCol().
-.SH "void QTableSelection::expandTo ( int row, int col )"
+.SH "void TQTableSelection::expandTo ( int row, int col )"
Expands the selection to include cell \fIrow\fR, \fIcol\fR. The new selection rectangle is the bounding rectangle of \fIrow\fR, \fIcol\fR and the previous selection rectangle. After calling this function the selection is active.
.PP
If you haven't called init(), this function does nothing.
.PP
See also init() and isActive().
-.SH "void QTableSelection::init ( int row, int col )"
+.SH "void TQTableSelection::init ( int row, int col )"
Sets the selection anchor to cell \fIrow\fR, \fIcol\fR and the selection to only contain this cell. The selection is not active until expandTo() is called.
.PP
To extend the selection to include additional cells, call expandTo().
.PP
See also isActive().
-.SH "bool QTableSelection::isActive () const"
+.SH "bool TQTableSelection::isActive () const"
Returns whether the selection is active or not. A selection is active after init() \fIand\fR expandTo() have been called.
-.SH "bool QTableSelection::isEmpty () const"
+.SH "bool TQTableSelection::isEmpty () const"
Returns whether the selection is empty or not.
.PP
See also numRows() and numCols().
-.SH "int QTableSelection::leftCol () const"
+.SH "int TQTableSelection::leftCol () const"
Returns the left column of the selection.
.PP
See also topRow(), bottomRow(), and rightCol().
-.SH "int QTableSelection::numCols () const"
+.SH "int TQTableSelection::numCols () const"
Returns the number of columns in the selection.
.PP
See also numRows().
-.SH "int QTableSelection::numRows () const"
+.SH "int TQTableSelection::numRows () const"
Returns the number of rows in the selection.
.PP
See also numCols().
-.SH "bool QTableSelection::operator!= ( const QTableSelection & s ) const"
+.SH "bool TQTableSelection::operator!= ( const TQTableSelection & s ) const"
Returns TRUE if \fIs\fR does not include the same cells as the selection; otherwise returns FALSE.
-.SH "bool QTableSelection::operator== ( const QTableSelection & s ) const"
+.SH "bool TQTableSelection::operator== ( const TQTableSelection & s ) const"
Returns TRUE if \fIs\fR includes the same cells as the selection; otherwise returns FALSE.
-.SH "int QTableSelection::rightCol () const"
+.SH "int TQTableSelection::rightCol () const"
Returns the right column of the selection.
.PP
See also topRow(), bottomRow(), and leftCol().
-.SH "int QTableSelection::topRow () const"
+.SH "int TQTableSelection::topRow () const"
Returns the top row of the selection.
.PP
See also bottomRow(), leftCol(), and rightCol().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qtableselection.html
+.BR http://doc.trolltech.com/tqtableselection.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the