From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- doc/html/qassistantclient.html | 179 ----------------------------------------- 1 file changed, 179 deletions(-) delete mode 100644 doc/html/qassistantclient.html (limited to 'doc/html/qassistantclient.html') diff --git a/doc/html/qassistantclient.html b/doc/html/qassistantclient.html deleted file mode 100644 index 37a500b59..000000000 --- a/doc/html/qassistantclient.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - -TQAssistantClient Class - - - - - - - -
- -Home - | -All Classes - | -Main Classes - | -Annotated - | -Grouped Classes - | -Functions -

TQAssistantClient Class Reference

- -

The TQAssistantClient class provides a means of using TQt -Assistant as an application's help tool. -More... -

#include <qassistantclient.h> -

Inherits TQObject. -

List of all member functions. -

Public Members

- -

Public Slots

- -

Signals

- -

Properties

- -

Detailed Description

- - -The TQAssistantClient class provides a means of using TQt -Assistant as an application's help tool. -

Using TQt Assistant is simple: Create a TQAssistantClient instance, -then call showPage() as often as necessary to show your help -pages. When you call showPage(), TQt Assistant will be launched if -it isn't already running. -

The TQAssistantClient instance can open (openAssistant()) or close -(closeAssistant()) TQt Assistant whenever required. If TQt Assistant -is open, isOpen() returns TRUE. -

One TQAssistantClient instance interacts with one TQt Assistant -instance, so every time you call openAssistant(), showPage() or -closeAssistant() they are applied to the particular TQt Assistant -instance associated with the TQAssistantClient. -

When you call openAssistant() the assistantOpened() signal is -emitted. Similarly when closeAssistant() is called, -assistantClosed() is emitted. In either case, if an error occurs, -error() is emitted. -

This class is not included in the TQt library itself. To use it you -must link against libqassistantclient.a (Unix) or qassistantclient.lib (Windows), which is built into INSTALL/lib -if you built the TQt tools (INSTALL is the directory where TQt is -installed). If you use qmake, then you can simply add the following -line to your pro file: -

-        LIBS += -lqassistantclient
-    
- -

See also "Adding Documentation to TQt Assistant" in the TQt Assistant manual. - -


Member Function Documentation

-

TQAssistantClient::TQAssistantClient ( const TQString & path, TQObject * parent = 0, const char * name = 0 ) -

-Constructs an assistant client object. The path specifies the -path to the TQt Assistant executable. If path is an empty -string the system path (%PATH% or $PATH) is used. -

The assistant client object is a child of parent and is called -name. - -

TQAssistantClient::~TQAssistantClient () -

-Destroys the assistant client object and frees up all allocated -resources. - -

void TQAssistantClient::assistantClosed () [signal] -

- -

This signal is emitted when the connection to TQt Assistant is -closed. This happens when the user exits TQt Assistant, or when an -error in the server or client occurs, or if closeAssistant() is -called. - -

void TQAssistantClient::assistantOpened () [signal] -

- -

This signal is emitted when TQt Assistant is open and the -client-server communication is set up. - -

void TQAssistantClient::closeAssistant () [virtual slot] -

-Use this function to close TQt Assistant. -

See also assistantClosed(). - -

void TQAssistantClient::error ( const TQString & msg ) [signal] -

- -

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 msg provides an -explanation of the error. - -

bool TQAssistantClient::isOpen () const -

Returns TRUE if TQt Assistant is open; otherwise returns FALSE. -See the "open" property for details. -

void TQAssistantClient::openAssistant () [virtual slot] -

-This function opens TQt Assistant and sets up the client-server -communiction between the application and TQt Assistant. If it is -already open, this function does nothing. If an error occurs, -error() is emitted. -

See also assistantOpened(). - -

void TQAssistantClient::setArguments ( const TQStringList & args ) -

-Sets the command line arguments used when TQt Assistant is -started to args. - -

void TQAssistantClient::showPage ( const TQString & page ) [virtual slot] -

-Call this function to make TQt Assistant show a particular page. -The page is a filename (e.g. myhelpfile.html). See "Adding -Documentation to TQt Assistant" in the TQt - Assistant manual for further information. -

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. -

See also open and assistantOpened(). - -

Example: helpsystem/mainwindow.cpp. -


Property Documentation

-

bool open

-

This property holds whether TQt Assistant is open. -

-

Get this property's value with isOpen(). - -


-This file is part of the TQt toolkit. -Copyright © 1995-2007 -Trolltech. All Rights Reserved.


- -
Copyright © 2007 -TrolltechTrademarks -
TQt 3.3.8
-
- -- cgit v1.2.1