diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 |
commit | 42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch) | |
tree | 0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqchecktableitem.3qt | |
parent | fef846914f8db6dc117e206ef913d519bf6bb33e (diff) | |
download | tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.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/tqchecktableitem.3qt')
-rw-r--r-- | doc/man/man3/tqchecktableitem.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqchecktableitem.3qt b/doc/man/man3/tqchecktableitem.3qt index b2e99a38c..3321a20d9 100644 --- a/doc/man/man3/tqchecktableitem.3qt +++ b/doc/man/man3/tqchecktableitem.3qt @@ -7,16 +7,16 @@ .ad l .nh .SH NAME -TQCheckTableItem \- Checkboxes in QTables +TQCheckTableItem \- Checkboxes in TQTables .SH SYNOPSIS -\fC#include <ntqtable.h>\fR +\fC#include <tqtable.h>\fR .PP -Inherits QTableItem. +Inherits TQTableItem. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBTQCheckTableItem\fR ( QTable * table, const TQString & txt )" +.BI "\fBTQCheckTableItem\fR ( TQTable * table, const TQString & txt )" .br .ti -1c .BI "virtual void \fBsetChecked\fR ( bool b )" @@ -29,17 +29,17 @@ Inherits QTableItem. .br .in -1c .SH DESCRIPTION -The TQCheckTableItem class provides checkboxes in QTables. +The TQCheckTableItem class provides checkboxes in TQTables. .PP -A TQCheckTableItem is a table item which looks and behaves like a checkbox. The advantage of using TQCheckTableItems rather than real checkboxes is that a TQCheckTableItem uses far less resources than a real checkbox would in a QTable. When the cell has the focus it displays a real checkbox which the user can interact with. When the cell does not have the focus the cell \fIlooks\fR like a checkbox. Pixmaps may not be used in TQCheckTableItems. +A TQCheckTableItem is a table item which looks and behaves like a checkbox. The advantage of using TQCheckTableItems rather than real checkboxes is that a TQCheckTableItem uses far less resources than a real checkbox would in a TQTable. When the cell has the focus it displays a real checkbox which the user can interact with. When the cell does not have the focus the cell \fIlooks\fR like a checkbox. Pixmaps may not be used in TQCheckTableItems. .PP TQCheckTableItem items have the edit type WhenCurrent (see EditType). .PP To change the checkbox's label use setText(). The checkbox can be checked and unchecked with setChecked() and its state retrieved using isChecked(). .PP -To populate a table cell with a TQCheckTableItem use QTable::setItem(). +To populate a table cell with a TQCheckTableItem use TQTable::setItem(). .PP -TQCheckTableItems can be distinguished from QTableItems and TQComboTableItems using their Run Time Type Identification (rtti) value. +TQCheckTableItems can be distinguished from TQTableItems and TQComboTableItems using their Run Time Type Identification (rtti) value. .PP <center> .ce 1 @@ -47,9 +47,9 @@ TQCheckTableItems can be distinguished from QTableItems and TQComboTableItems us .PP </center> .PP -See also rtti(), EditType, TQComboTableItem, QTableItem, TQCheckBox, and Advanced Widgets. +See also rtti(), EditType, TQComboTableItem, TQTableItem, TQCheckBox, and Advanced Widgets. .SH MEMBER FUNCTION DOCUMENTATION -.SH "TQCheckTableItem::TQCheckTableItem ( QTable * table, const TQString & txt )" +.SH "TQCheckTableItem::TQCheckTableItem ( TQTable * table, const TQString & txt )" Creates a TQCheckTableItem with an EditType of WhenCurrent as a child of \fItable\fR. The checkbox is initially unchecked and its label is set to the string \fItxt\fR. .SH "bool TQCheckTableItem::isChecked () const" Returns TRUE if the checkbox table item is checked; otherwise returns FALSE. @@ -60,9 +60,9 @@ Returns 2. .PP Make your derived classes return their own values for rtti()to distinguish between different table item subclasses. You should use values greater than 1000, preferably a large random number, to allow for extensions to this class. .PP -See also QTableItem::rtti(). +See also TQTableItem::rtti(). .PP -Reimplemented from QTableItem. +Reimplemented from TQTableItem. .SH "void TQCheckTableItem::setChecked ( bool b )\fC [virtual]\fR" If \fIb\fR is TRUE the checkbox is checked; if \fIb\fR is FALSE the checkbox is unchecked. .PP |