Qt:Документация 4.3.2/qassistantclient

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QAssistantClient Class Reference
[ QtAssistant module]

The QAssistantClient class provides a means of using Qt Assistant as an application's help tool. Далее...

 #include <QAssistantClient>

Inherits QObject.

[править] Свойства

  • 1 свойство, унаследованное от QObject

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject

[править] Открытые слоты

  • 1 открытый слот, унаследованный от QObject

[править] Сигналы

  • 1 сигнал, унаследованный от QObject

[править] Дополнительные унаследованные члены

  • 5 статических открытых членов, унаследованных от QObject
  • 7 защищенных функций, унаследованных от QObject

[править] Подробное описание

The QAssistantClient class provides a means of using Qt Assistant as an application's help tool.

In order to make Qt Assistant act as a customized help tool for your application, you must provide your application with a QAssistantClient object in addition to a Qt Assistant Document Profile (.adp file) and the associated documentation.

Note that the QAssistantClient class is not included in the Qt library. To use it you must add the following line to your pro file:

 CONFIG += assistant

A QAssistantClient instance can open or close Qt Assistant whenever it is required.

Once you have created a QAssistantClient instance, specifying the path to the Qt Assistant executable, using Qt Assistant is simple: You can either call the openAssistant() slot to show the defined start page of the documentation, or you can call the showPage() slot to show a particular help page. When you call openAssistant() and showPage(), Qt Assistant will be launched if it isn't already running. When Qt Assistant is running, the isOpen() function returns true.

When calling showPage() the Qt Assistant instance will also be brought to the foreground if its hidden. The showPage() slot can be called multiple times, while calling openAssistant() several times without closing the application in between, will have no effect.

You can close Qt Assistant at any time using the closeAssistant() slot. When you call openAssistant(), or you call showPage() without a previous call to openAssistant(), the assistantOpened() signal is emitted. Similarly when closeAssistant() is called, assistantClosed() is emitted. In either case, if an error occurs, error() is emitted.

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

Qt Assistant's documentation set can be altered using the command line arguments that are passed to the application when it is launched. When started without any options, Qt Assistant displays a default set of documentation. When Qt is installed, the default documentation set in Qt Assistant contains the Qt reference documentation as well as the tools that come with Qt, such as Qt Designer and qmake.

Use the setArguments() function to specify the command line arguments. You can add or remove documentation from Qt Assistant by adding and removing the relevant content files: The command line arguments are -addContentFile file.dcf and -removeContentFile file.dcf respectively. You can make Qt Assistant run customized documentation sets that are separate from the Qt documentation, by specifying a profile: -profile myapplication.adp. The profile format can also be used to alter several of Qt Assistant's properties such as its title and startpage.

The Documentation Content File (.dcf) and Qt Assistant Documentation Profile (.adp) formats are documented in the Qt Assistant Manual.

For a complete example using the QAssistantClient class, see the Simple Text Viewer example. The example shows how you can make Qt Assistant act as a customized help tool for your application using the QAssistantClient class combined with a Qt Assistant Document Profile.

See also Qt Assistant Manual and Simple Text Viewer Example.


[править] Описание cвойств

[править]
open : const bool

This property holds whether Qt Assistant is open.

Функции доступа:

  • bool isOpen () const

[править] Описание функций-членов

[править]
QAssistantClient::QAssistantClient ( const QString & path, QObject * parent = 0 )

Constructs an assistant client with the given parent. The path specifies the path to the Qt Assistant executable. If path is an empty string the system path (%PATH% or $PATH) is used.

[править]
QAssistantClient::~QAssistantClient ()

Destroys the assistant client object.

[править]
void QAssistantClient::assistantClosed () [signal]

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

See also closeAssistant().

[править]
void QAssistantClient::assistantOpened () [signal]

This signal is emitted when Qt Assistant is opened and the client-server communication is set up.

See also openAssistant() and showPage().

[править]
void QAssistantClient::closeAssistant () [virtual slot]

Closes the Qt Assistant instance.

See also openAssistant() and assistantClosed().

[править]
void QAssistantClient::error ( const QString & message ) [signal]

This signal is emitted if Qt Assistant cannot be started, or if an error occurs during the initialization of the connection between Qt Assistant and the calling application. The message provides an explanation of the error.

[править]
void QAssistantClient::openAssistant () [virtual slot]

Opens Qt Assistant, i.e. sets up the client-server communication between the application and Qt Assistant, and shows the start page specified by the current Qt Assistant Document Profile. If there is no specfied profile, and Qt is installed, the default start page is the Qt Reference Documentation's index page.

If the connection is already established, this function does nothing. Use the showPage() function to show another page. If an error occurs, the error() signal is emitted.

See also showPage() and assistantOpened().

[править]
void QAssistantClient::setArguments ( const QStringList & arguments )

Sets the command line arguments that are passed to Qt Assistant when it is launched.

The command line arguments can be used to alter Qt Assistant's documentation set. When started without any options, Qt Assistant displays a default set of documentation. When Qt is installed, the default documentation set in Qt Assistant contains the Qt reference documentation as well as the tools that come with Qt, such as Qt Designer and qmake.

See also Customizing Qt Assistant.

[править]
void QAssistantClient::showPage ( const QString & page ) [virtual slot]

Brings Qt Assistant to the foreground showing the given page. The page parameter is a path to an HTML file (e.g., QLatin1String("/home/pasquale/superproduct/docs/html/intro.html")).

If Qt Assistant hasn't been opened yet, this function will call the openAssistant() slot with the specified page as the start page.

See also openAssistant().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2