?? qassistantclient.cpp
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the Qt Assistant of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qassistantclient.h"#include <qtcpsocket.h>#include <qtextstream.h>#include <qtimer.h>#include <qfileinfo.h>#include <qmap.h>class QAssistantClientPrivate{ friend class QAssistantClient; QStringList arguments;};static QMap<const QAssistantClient*,QAssistantClientPrivate*> *dpointers = 0;static QAssistantClientPrivate *data( const QAssistantClient *client, bool create=false ){ if( !dpointers ) dpointers = new QMap<const QAssistantClient*,QAssistantClientPrivate*>; QAssistantClientPrivate *d = (*dpointers)[client]; if( !d && create ) { d = new QAssistantClientPrivate; dpointers->insert( client, d ); } return d;}/*! \class QAssistantClient \brief The QAssistantClient class provides a means of using Qt Assistant as an application's help tool. \inmodule QtAssistant \ingroup helpsystem 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 \l {assistant-manual.html#profiles}{Qt Assistant Document Profile} (\c .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: \code CONFIG += assistant \endcode 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 \QD and \c 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 \c {-addContentFile file.dcf} and \c {-removeContentFile file.dcf} respectively. You can make Qt Assistant run customized documentation sets that are separate from the Qt documentation, by specifying a profile: \c {-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 (\c .dcf) and Qt Assistant Documentation Profile (\c .adp) formats are documented in the \l {assistant-manual.html}{Qt Assistant Manual}. \sa {Qt Assistant Manual}*//*! \fn void QAssistantClient::assistantOpened() This signal is emitted when Qt Assistant is opened and the client-server communication is set up. \sa openAssistant(), showPage()*//*! \fn void QAssistantClient::assistantClosed() 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. \sa closeAssistant()*//*! \fn void QAssistantClient::error( const QString &message ) 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 \a message provides an explanation of the error.*//*! Constructs an assistant client with the given \a parent. The \a path specifies the path to the Qt Assistant executable. If \a path is an empty string the system path (\c{%PATH%} or \c $PATH) is used.*/QAssistantClient::QAssistantClient( const QString &path, QObject *parent ) : QObject( parent ), host ( "localhost" ){ if ( path.isEmpty() ) assistantCommand = "assistant"; else { QFileInfo fi( path ); if ( fi.isDir() ) assistantCommand = path + "/assistant"; else assistantCommand = path; }#if defined(Q_OS_MAC) assistantCommand += ".app/Contents/MacOS/assistant";#endif socket = new QTcpSocket( this ); connect( socket, SIGNAL(connected()), SLOT(socketConnected()) ); connect( socket, SIGNAL(disconnected()), SLOT(socketConnectionClosed()) ); connect( socket, SIGNAL(error(QAbstractSocket::SocketError)), SLOT(socketError()) ); opened = false; proc = new QProcess( this ); port = 0; pageBuffer = ""; connect( proc, SIGNAL(readyReadStandardError()), this, SLOT(readStdError()) ); connect( proc, SIGNAL(error(QProcess::ProcessError)), this, SLOT(procError(QProcess::ProcessError)) );}/*! Destroys the assistant client object.*/QAssistantClient::~QAssistantClient(){ if ( proc->state() == QProcess::Running ) proc->terminate(); if( dpointers ) { QAssistantClientPrivate *d = (*dpointers)[ this ]; if ( d ) { dpointers->remove(this); delete d; if( dpointers->isEmpty() ) { delete dpointers; dpointers = 0; } } }}/*! 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 \l {assistant-manual.html#profiles}{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. \sa showPage(), assistantOpened()*/void QAssistantClient::openAssistant(){ if ( proc->state() == QProcess::Running ) return; QStringList args; args.append("-server"); if( !pageBuffer.isEmpty() ) { args.append( "-file" ); args.append( pageBuffer ); } QAssistantClientPrivate *d = data( this ); if( d ) { QStringList::ConstIterator it = d->arguments.begin(); while( it!=d->arguments.end() ) { args.append( *it ); ++it; } } connect( proc, SIGNAL(readyReadStandardOutput()), this, SLOT(readPort()) ); proc->start(assistantCommand, args);}void QAssistantClient::procError(QProcess::ProcessError err){ switch (err) { case QProcess::FailedToStart: emit error( tr( "Failed to start Qt Assistant." ) ); break; case QProcess::Crashed: emit error( tr( "Qt Assistant crashed." ) ); break; default: emit error( tr( "Error while running Qt Assistant." ) ); }}void QAssistantClient::readPort(){ QString p = proc->readAllStandardOutput(); quint16 port = p.toUShort(); if ( port == 0 ) { emit error( tr( "Cannot connect to Qt Assistant." ) ); return; } socket->connectToHost( host, port ); disconnect( proc, SIGNAL(readyReadStandardOutput()), this, SLOT(readPort()) );}/*! Closes the Qt Assistant instance. \sa openAssistant(), assistantClosed()*/void QAssistantClient::closeAssistant(){ if ( !opened ) return; proc->terminate(); if (!proc->waitForFinished(2000)) { // If the process hasn't died after 2 seconds, // we kill it, causing it to exit immediately. proc->kill(); }}/*! Brings Qt Assistant to the forground showing the given \a page. The \a page parameter is a filename (e.g. \c myhelpfile.html). If Qt Assistant hasn't been opened yet, this function will call the openAssistant() slot with the specified page as the start page. \sa openAssistant()*/void QAssistantClient::showPage( const QString &page ){ if ( !opened ) { pageBuffer = page; openAssistant(); pageBuffer.clear(); return; } QTextStream os( socket ); os << page << "\n";}/*! \property QAssistantClient::open \brief whether Qt Assistant is open*/bool QAssistantClient::isOpen() const{ return opened;}void QAssistantClient::socketConnected(){ opened = true; if ( !pageBuffer.isEmpty() ) showPage( pageBuffer ); emit assistantOpened();}void QAssistantClient::socketConnectionClosed(){ opened = false; emit assistantClosed();}void QAssistantClient::socketError(){ QAbstractSocket::SocketError err = socket->error(); if (err == QTcpSocket::ConnectionRefusedError) emit error( tr( "Could not connect to Assistant: Connection refused" ) ); else if (err == QTcpSocket::HostNotFoundError) emit error( tr( "Could not connect to Assistant: Host not found" ) ); else if (err != QTcpSocket::RemoteHostClosedError) emit error( tr( "Communication error" ) );}void QAssistantClient::readStdError(){ QString errmsg = proc->readAllStandardError(); if (!errmsg.isEmpty()) emit error( errmsg.simplified() );}/*! \fn void QAssistantClient::setArguments(const QStringList &arguments) Sets the command line \a 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. \sa {assistant-manual.html#customizing-qt-assistant}{Customizing Qt Assistant}*/void QAssistantClient::setArguments( const QStringList &args ){ QAssistantClientPrivate *d = data( this, true ); d->arguments = args;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -