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

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

Версия от 09:56, 29 января 2009; Root (Обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

[править] QX11EmbedContainer Class Reference
[модуль QtGui ]

The QX11EmbedContainer class provides an XEmbed container widget. Далее...

 #include <QX11EmbedContainer>

Наследует QWidget.

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

  • enum Error { Unknown, InvalidWindowID }

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

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

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

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

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

  • 56 свойств, унаследованных от QWidget
  • 1 свойство, унаследованное от QObject
  • 19 открытых слотов, унаследованных от QWidget
  • 1 открытый слот, унаследованный от QObject
  • 4 статических открытых члена, унаследованных от QWidget
  • 5 статических открытых членов, унаследованных от QObject
  • 38 защищенных функций, унаследованных от QWidget
  • 7 защищенных функций, унаследованных от QObject
  • 1 защищенная функция, унаследованных от QPaintDevice
  • 1 защищенный слот, унаследованый от QWidget

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

The QX11EmbedContainer class provides an XEmbed container widget.

XEmbed is an X11 protocol that supports the embedding of a widget from one application into another application.

An XEmbed container is the graphical location that embeds an external client widget. A client widget is a window that is embedded into a container.

When a widget has been embedded and the container receives tab focus, focus is passed on to the widget. When the widget reaches the end of its focus chain, focus is passed back to the container. Window activation, accelerator support, modality and drag and drop (XDND) are also handled.

QX11EmbedContainer is commonly used for writing panels or toolbars that hold applets, or for swallowing X11 applications. When writing a panel application, one container widget is created on the toolbar, and it can then either swallow another widget using embed(), or allow an XEmbed widget to be embedded into itself. The container's X11 window ID, which is retrieved with winId(), must then be known to the client widget. After embedding, the client's window ID can be retrieved with clientWinId().

In the following example, a container widget is created as the main widget. It then invokes an application called "playmovie", passing its window ID as a command line argument. The "playmovie" program is an XEmbed client widget. The widget embeds itself into the container using the container's window ID.

 int main(int argc, char *argv[])
 {
     QApplication app(argc, argv);
 
     if (app.arguments().count() != 2) {
         qFatal("Error - expected executable path as argument");
         return 1;
     }
 
     QX11EmbedContainer container;
     container.show();
 
     QProcess process(&amp;container);
     QString executable(app.arguments()[1]);
     QStringList arguments;
     arguments << QString::number(container.winId());
     process.start(executable, arguments);
 
     int status = app.exec();
     process.close();
     return status;
 }

When the client widget is embedded, the container emits the signal clientIsEmbedded(). The signal clientClosed() is emitted when a widget is closed.

It is possible for QX11EmbedContainer to embed XEmbed widgets from toolkits other than Qt, such as GTK+. Arbitrary (non-XEmbed) X11 widgets can also be embedded, but the XEmbed-specific features such as window activation and focus handling are then lost.

The GTK+ equivalent of QX11EmbedContainer is GtkSocket. The KDE widget is called QXEmbed.

See also QX11EmbedWidget and XEmbed Specification.


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

[править]
enum QX11EmbedContainer::Error

Константа Значение Описание
QX11EmbedContainer::Unknown 0 An unrecognized error occurred.
QX11EmbedContainer::InvalidWindowID 2 The X11 window ID of the container was invalid. This error is usually triggered by passing an invalid window ID to embed().

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

[править]
QX11EmbedContainer::QX11EmbedContainer ( QWidget * parent = 0 )

Creates a QX11EmbedContainer object with the given parent.

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

Destructs a QX11EmbedContainer.

[править]
void QX11EmbedContainer::clientClosed () [signal]

This signal is emitted by the container when the client widget closes.

[править]
void QX11EmbedContainer::clientIsEmbedded () [signal]

This signal is emitted by the container when a client widget has been embedded.

[править]
WId QX11EmbedContainer::clientWinId () const

If the container has an embedded widget, this function returns the X11 window ID of the client; otherwise it returns 0.

[править]
void QX11EmbedContainer::discardClient ()

Detaches the client from the embedder. The client will appear as a standalone window on the desktop.

[править]
void QX11EmbedContainer::embedClient ( WId id )

Instructs the container to embed the X11 window with window ID id. The client widget will then move on top of the container window and be resized to fit into the container.

The id should be the ID of a window controlled by an XEmbed enabled application, but this is not mandatory. If id does not belong to an XEmbed client widget, then focus handling, activation, accelerators and other features will not work properly.

[править]
Error QX11EmbedContainer::error () const

Returns the last error that occurred.

[править]
void QX11EmbedContainer::error ( QX11EmbedContainer::Error error ) [signal]

Эта перегруженная функция предоставлена для удобства.

This signal is emitted if an error occurred when embedding or communicating with a client. The specified error describes the problem that occurred.

See also QX11EmbedContainer::Error.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2