summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtoolbox.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqtoolbox.3qt')
-rw-r--r--doc/man/man3/tqtoolbox.3qt60
1 files changed, 30 insertions, 30 deletions
diff --git a/doc/man/man3/tqtoolbox.3qt b/doc/man/man3/tqtoolbox.3qt
index 9d86bf88f..746580a5e 100644
--- a/doc/man/man3/tqtoolbox.3qt
+++ b/doc/man/man3/tqtoolbox.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QToolBox 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQToolBox 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,16 +7,16 @@
.ad l
.nh
.SH NAME
-QToolBox \- Column of tabbed widget items
+TQToolBox \- Column of tabbed widget items
.SH SYNOPSIS
-\fC#include <ntqtoolbox.h>\fR
+\fC#include <tqtoolbox.h>\fR
.PP
Inherits QFrame.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQToolBox\fR ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.BI "\fBTQToolBox\fR ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
.br
.ti -1c
.BI "int \fBaddItem\fR ( TQWidget * w, const TQString & label )"
@@ -107,7 +107,7 @@ Inherits QFrame.
.br
.in -1c
.SH DESCRIPTION
-The QToolBox class provides a column of tabbed widget items.
+The TQToolBox class provides a column of tabbed widget items.
.PP
A toolbox is a widget that displays a column of tabs one above the other, with the current item displayed below the current tab. Every tab has an index position within the column of tabs. A tab's item is a TQWidget.
.PP
@@ -121,57 +121,57 @@ The currentChanged() signal is emitted when the current item is changed.
.PP
See also QTabWidget and Advanced Widgets.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QToolBox::QToolBox ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
+.SH "TQToolBox::TQToolBox ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
Constructs a toolbox called \fIname\fR with parent \fIparent\fR and flags \fIf\fR.
-.SH "int QToolBox::addItem ( TQWidget * item, const TQIconSet & iconSet, const TQString & label )"
+.SH "int TQToolBox::addItem ( TQWidget * item, const TQIconSet & iconSet, const TQString & label )"
Adds the widget \fIitem\fR in a new tab at bottom of the toolbox. The new tab's label is set to \fIlabel\fR, and the \fIiconSet\fR is displayed to the left of the \fIlabel\fR. Returns the new tab's index.
-.SH "int QToolBox::addItem ( TQWidget * w, const TQString & label )"
+.SH "int TQToolBox::addItem ( TQWidget * w, const TQString & label )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Adds the widget \fIw\fR in a new tab at bottom of the toolbox. The new tab's label is set to \fIlabel\fR. Returns the new tab's index.
-.SH "int QToolBox::count () const"
+.SH "int TQToolBox::count () const"
Returns the number of items contained in the toolbox. See the "count" property for details.
-.SH "void QToolBox::currentChanged ( int index )\fC [signal]\fR"
+.SH "void TQToolBox::currentChanged ( int index )\fC [signal]\fR"
This signal is emitted when the current item changed. The new current item's index is passed in \fIindex\fR, or -1 if there is no current item.
-.SH "int QToolBox::currentIndex () const"
+.SH "int TQToolBox::currentIndex () const"
Returns the index of the current item, or -1 if the toolbox is empty. See the "currentIndex" property for details.
-.SH "TQWidget * QToolBox::currentItem () const"
+.SH "TQWidget * TQToolBox::currentItem () const"
Returns the toolbox's current item, or 0 if the toolbox is empty.
-.SH "int QToolBox::indexOf ( TQWidget * item ) const"
+.SH "int TQToolBox::indexOf ( TQWidget * item ) const"
Returns the index of item \fIitem\fR, or -1 if the item does not exist.
-.SH "int QToolBox::insertItem ( int index, TQWidget * item, const TQIconSet & iconSet, const TQString & label )"
+.SH "int TQToolBox::insertItem ( int index, TQWidget * item, const TQIconSet & iconSet, const TQString & label )"
Inserts the widget \fIitem\fR at position \fIindex\fR, or at the bottom of the toolbox if \fIindex\fR is out of range. The new item's label is set to \fIlabel\fR, and the \fIiconSet\fR is displayed to the left of the \fIlabel\fR. Returns the new item's index.
-.SH "int QToolBox::insertItem ( int index, TQWidget * item, const TQString & label )"
+.SH "int TQToolBox::insertItem ( int index, TQWidget * item, const TQString & label )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts the widget \fIitem\fR at position \fIindex\fR, or at the bottom of the toolbox if \fIindex\fR is out of range. The new item's label is set to \fIlabel\fR. Returns the new item's index.
-.SH "bool QToolBox::isItemEnabled ( int index ) const"
+.SH "bool TQToolBox::isItemEnabled ( int index ) const"
Returns TRUE if the item at position \fIindex\fR is enabled; otherwise returns FALSE.
-.SH "TQWidget * QToolBox::item ( int index ) const"
+.SH "TQWidget * TQToolBox::item ( int index ) const"
Returns the item at position \fIindex\fR, or 0 if there is no such item.
-.SH "TQIconSet QToolBox::itemIconSet ( int index ) const"
+.SH "TQIconSet TQToolBox::itemIconSet ( int index ) const"
Returns the icon of the item at position \fIindex\fR, or a null icon if \fIindex\fR is out of range.
-.SH "void QToolBox::itemInserted ( int index )\fC [virtual protected]\fR"
+.SH "void TQToolBox::itemInserted ( int index )\fC [virtual protected]\fR"
This virtual handler is called after a new item was added or inserted at position \fIindex\fR.
-.SH "TQString QToolBox::itemLabel ( int index ) const"
+.SH "TQString TQToolBox::itemLabel ( int index ) const"
Returns the label of the item at position \fIindex\fR, or a null string if \fIindex\fR is out of range.
-.SH "void QToolBox::itemRemoved ( int index )\fC [virtual protected]\fR"
+.SH "void TQToolBox::itemRemoved ( int index )\fC [virtual protected]\fR"
This virtual handler is called after an item was removed from position \fIindex\fR.
-.SH "TQString QToolBox::itemToolTip ( int index ) const"
+.SH "TQString TQToolBox::itemToolTip ( int index ) const"
Returns the tooltip of the item at position \fIindex\fR, or a null string if \fIindex\fR is out of range.
-.SH "int QToolBox::removeItem ( TQWidget * item )"
+.SH "int TQToolBox::removeItem ( TQWidget * item )"
Removes the widget \fIitem\fR from the toolbox. Note that the widget is \fInot\fR deleted. Returns the removed widget's index, or -1 if the widget was not in this tool box.
-.SH "void QToolBox::setCurrentIndex ( int index )\fC [slot]\fR"
+.SH "void TQToolBox::setCurrentIndex ( int index )\fC [slot]\fR"
Sets the index of the current item, or -1 if the toolbox is empty to \fIindex\fR. See the "currentIndex" property for details.
-.SH "void QToolBox::setCurrentItem ( TQWidget * item )"
+.SH "void TQToolBox::setCurrentItem ( TQWidget * item )"
Sets the current item to be \fIitem\fR.
-.SH "void QToolBox::setItemEnabled ( int index, bool enabled )"
+.SH "void TQToolBox::setItemEnabled ( int index, bool enabled )"
If \fIenabled\fR is TRUE then the item at position \fIindex\fR is enabled; otherwise item \fIindex\fR is disabled.
-.SH "void QToolBox::setItemIconSet ( int index, const TQIconSet & iconSet )"
+.SH "void TQToolBox::setItemIconSet ( int index, const TQIconSet & iconSet )"
Sets the icon of the item at position \fIindex\fR to \fIiconSet\fR.
-.SH "void QToolBox::setItemLabel ( int index, const TQString & label )"
+.SH "void TQToolBox::setItemLabel ( int index, const TQString & label )"
Sets the label of the item at position \fIindex\fR to \fIlabel\fR.
-.SH "void QToolBox::setItemToolTip ( int index, const TQString & toolTip )"
+.SH "void TQToolBox::setItemToolTip ( int index, const TQString & toolTip )"
Sets the tooltip of the item at position \fIindex\fR to \fItoolTip\fR.
.SS "Property Documentation"
.SH "int count"
@@ -186,7 +186,7 @@ Set this property's value with setCurrentIndex() and get this property's value w
See also currentItem(), indexOf(), and item().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqtoolbox.html
+.BR http://doc.trolltech.com/tqtoolbox.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the