summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqassistantclient.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqassistantclient.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqassistantclient.3qt')
-rw-r--r--doc/man/man3/tqassistantclient.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqassistantclient.3qt b/doc/man/man3/tqassistantclient.3qt
index 3e463188..6f03d2c0 100644
--- a/doc/man/man3/tqassistantclient.3qt
+++ b/doc/man/man3/tqassistantclient.3qt
@@ -11,12 +11,12 @@ QAssistantClient \- Means of using TQt Assistant as an application's help tool
.SH SYNOPSIS
\fC#include <ntqassistantclient.h>\fR
.PP
-Inherits QObject.
+Inherits TQObject.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQAssistantClient\fR ( const QString & path, QObject * parent = 0, const char * name = 0 )"
+.BI "\fBQAssistantClient\fR ( const TQString & path, TQObject * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "\fB~QAssistantClient\fR ()"
@@ -37,7 +37,7 @@ Inherits QObject.
.BI "virtual void \fBcloseAssistant\fR ()"
.br
.ti -1c
-.BI "virtual void \fBshowPage\fR ( const QString & page )"
+.BI "virtual void \fBshowPage\fR ( const TQString & page )"
.br
.in -1c
.SS "Signals"
@@ -49,7 +49,7 @@ Inherits QObject.
.BI "void \fBassistantClosed\fR ()"
.br
.ti -1c
-.BI "void \fBerror\fR ( const QString & msg )"
+.BI "void \fBerror\fR ( const TQString & msg )"
.br
.in -1c
.SS "Properties"
@@ -79,7 +79,7 @@ This class is not included in the TQt library itself. To use it you must link ag
.PP
See also "Adding Documentation to TQt Assistant" in the TQt Assistant manual.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QAssistantClient::QAssistantClient ( const QString & path, QObject * parent = 0, const char * name = 0 )"
+.SH "QAssistantClient::QAssistantClient ( const TQString & path, TQObject * parent = 0, const char * name = 0 )"
Constructs an assistant client object. The \fIpath\fR specifies the path to the TQt Assistant executable. If \fIpath\fR is an empty string the system path (\fC%PATH%\fR or \fC$PATH\fR) is used.
.PP
The assistant client object is a child of \fIparent\fR and is called \fIname\fR.
@@ -93,7 +93,7 @@ This signal is emitted when TQt Assistant is open and the client-server communic
Use this function to close TQt Assistant.
.PP
See also assistantClosed().
-.SH "void QAssistantClient::error ( const QString & msg )\fC [signal]\fR"
+.SH "void QAssistantClient::error ( const TQString & msg )\fC [signal]\fR"
This signal is emitted if TQt Assistant cannot be started or if an error occurs during the initialization of the connection between TQt Assistant and the calling application. The \fImsg\fR provides an explanation of the error.
.SH "bool QAssistantClient::isOpen () const"
Returns TRUE if TQt Assistant is open; otherwise returns FALSE. See the "open" property for details.
@@ -103,7 +103,7 @@ This function opens TQt Assistant and sets up the client-server communiction bet
See also assistantOpened().
.SH "void QAssistantClient::setArguments ( const QStringList & args )"
Sets the command line arguments used when TQt Assistant is started to \fIargs\fR.
-.SH "void QAssistantClient::showPage ( const QString & page )\fC [virtual slot]\fR"
+.SH "void QAssistantClient::showPage ( const TQString & page )\fC [virtual slot]\fR"
Call this function to make TQt Assistant show a particular \fIpage\fR. The \fIpage\fR is a filename (e.g. \fCmyhelpfile.html\fR). See "Adding Documentation to TQt Assistant" in the TQt Assistant manual for further information.
.PP
If TQt Assistant hasn't been opened yet, this function will do nothing. You can use isOpen() to determine whether TQt Assistant is up and running, or you can connect to the asssistantOpened() signal.