Package: gtk
Class gtk:socket
Superclassesgtk:container, gtk:widget, gtk:buildable, gobject:object, common-lisp:standard-object, common-lisp:t Documented Subclasses
None
Direct Slots
None
Details Together with the gtk:plug widget, the gtk:socket widget
provides the ability to embed widgets from one process into another process
in a fashion that is transparent to the user. One process creates a gtk:socket widget and passes that widget's window ID to the other process, which then creates a gtk:plug widget with that window ID. Any widgets contained in the gtk:plug widget
then will appear inside the first application's window. The socket's window ID is obtained by using thegtk:socket-id function. Before using this function, the socket must have been realized, and for hence, have been added to its parent. Example: Obtaining the window ID of a socket. GtkWidget *socket = gtk_socket_new (); gtk_widget_show (socket); gtk_container_add (GTK_CONTAINER (parent), socket);Note that if you pass the window ID of the socket to another process that will create a plug in the socket, you must make sure that the socket widget is not destroyed until that plug is created. Violating this rule will cause unpredictable consequences, the most likely consequence being that the plug will appear as a separate toplevel window. You can check if the plug has been created by using the gtk:socket-plug-window function. If it returns a non-nil value, then the plug has been successfully created inside of the socket. When GTK is notified that the embedded window has been destroyed, then it will destroy the socket as well. You should always, therefore, be prepared for your sockets to be destroyed at any time when the main event loop is running. To prevent this from happening, you can connect to the "plug-removed" signal. The communication between a gtk:socket and a gtk:plug widget follows the XEmbed protocol. This protocol has also been implemented in other toolkits, e.g. Qt, allowing the same level of integration when embedding a Qt widget in GTK or vice versa. The gtk:plug and gtk:socket widgets are only available when GTK is compiled for the X11 platform and GDK_WINDOWING_X11 is defined. They can only be used on a GdkX11Display object. Signal DetailsThe "plug-added" signallambda (socket) :run-lastThe signal is emitted when a client is successfully added to the socket.
The "plug-removed" signallambda (socket) :run-lastThe signal is emitted when a client is removed from the socket. The default action is to destroy the gtk:socket widget, so if you want to reuse it you must add a signal handler that returns true.
| Inherited Slot Access FunctionsSee also |
#2023-2-28