QWSClient Class

The QWSClient class encapsulates a client process in Qt for Embedded Linux. 更多...

头: #include <QWSClient>
继承: QObject

公共函数

int clientId () const
QString identity () const

额外继承成员

详细描述

The QWSClient class encapsulates a client process in Qt for Embedded Linux.

When you run a Qt for Embedded Linux application, it either runs as a server or connects to an existing server. The server and client processes have different responsibilities: The client process performs all application specific operations. The server process is responsible for managing the clients as well as taking care of the pointer handling, character input, and screen output. In addition, the server provides functionality to handle input methods.

As applications add and remove windows, the server process maintains information about each window. In Qt for Embedded Linux , top-level windows are encapsulated as QWSWindow objects. A list of the current windows can be retrieved using the QWSServer::clientWindows () function, and each window can tell which client that owns it through its QWSWindow::client () 函数。

A QWSClient object has an unique ID that can be retrieved using its clientId () 函数。 QWSClient 还提供 identity () function which typically returns the name of this client's running application.

另请参阅 QWSServer , QWSWindow ,和 Qt for Embedded Linux 体系结构 .

成员函数文档编制

int QWSClient:: clientId () const

Returns an integer uniquely identfying this client.

QString QWSClient:: identity () const

Returns the name of this client's running application.