Gtk2HsContentsIndex
Graphics.UI.Gtk.Embedding.Socket
Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net
Contents
Detail
Class Hierarchy
Types
Constructors
Methods
Signals
Description
Container for widgets from other processes
Synopsis
data Socket
class ContainerClass o => SocketClass o
castToSocket :: GObjectClass obj => obj -> Socket
type NativeWindowId = Word32
socketNew :: IO Socket
socketHasPlug :: SocketClass s => s -> IO Bool
socketAddId :: SocketClass self => self -> NativeWindowId -> IO ()
socketGetId :: SocketClass self => self -> IO NativeWindowId
onPlugAdded :: SocketClass self => self -> IO () -> IO (ConnectId self)
afterPlugAdded :: SocketClass self => self -> IO () -> IO (ConnectId self)
onPlugRemoved :: SocketClass self => self -> IO () -> IO (ConnectId self)
afterPlugRemoved :: SocketClass self => self -> IO () -> IO (ConnectId self)
Detail

Together with Plug, Socket 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 Socket widget and, passes the that widget's window ID to the other process, which then creates a Plug with that window ID. Any widgets contained in the Plug then will appear inside the first applications window.

The socket's window ID is obtained by using socketGetId. Before using this function, the socket must have been realized, and for hence, have been added to its parent.

  • Obtaining the window ID of a socket.
 socket <- socketNew
 widgetShow socket
 containerAdd parent socket
 
 -- The following call is only necessary if one of
 -- the ancestors of the socket is not yet visible.
 --
 widgetRealize socket
 socketId <- socketGetId socket
 putStrLn ("The ID of the sockets window is " ++ show socketId)

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 calling socketHasPlug. If this returns True, 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.

The communication between a Socket and a Plug 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.

A socket can also be used to swallow arbitrary pre-existing top-level windows using socketSteal, though the integration when this is done will not be as close as between a Plug and a Socket.

Class Hierarchy
 |  GObject
 |   +----Object
 |         +----Widget
 |               +----Container
 |                     +----Socket
 
Types
data Socket
show/hide Instances
class ContainerClass o => SocketClass o
show/hide Instances
castToSocket :: GObjectClass obj => obj -> Socket
type NativeWindowId = Word32
The identifer of a window to be embedded.
Constructors
socketNew :: IO Socket

Create a new empty Socket.

Socket is a Container for foreign applications that support the XEMBED protocol. To connect two applications the NativeWindowId has to be passed either from this socket to the other application's Plug or vice versa.

Methods
socketHasPlug :: SocketClass s => s -> IO Bool
Test if a Plug is connected to the socket.
socketAddId
:: SocketClass self
=> self
-> NativeWindowIdwindowId - the window ID of a client participating in the XEMBED protocol.
-> IO ()

Adds an XEMBED client, such as a Plug, to the Socket. The client may be in the same process or in a different process.

To embed a Plug in a Socket, you can either create the Plug with plugNew Nothing, call plugGetId to get the window ID of the plug, and then pass that to the socketAddId, or you can call socketGetId to get the window ID for the socket, and call plugNew passing in that ID.

The Socket must have already be added into a toplevel window before you can make this call.

socketGetId :: SocketClass self => self -> IO NativeWindowId

Gets the window ID of a Socket widget, which can then be used to create a client embedded inside the socket, for instance with plugNew.

The Socket must have already be added into a toplevel window before you can make this call.

Signals
onPlugAdded :: SocketClass self => self -> IO () -> IO (ConnectId self)
This signal is emitted when a client is successfully added to the socket.
afterPlugAdded :: SocketClass self => self -> IO () -> IO (ConnectId self)
onPlugRemoved :: SocketClass self => self -> IO () -> IO (ConnectId self)
This signal is emitted when a client is removed from the socket.
afterPlugRemoved :: SocketClass self => self -> IO () -> IO (ConnectId self)
Produced by Haddock version 0.7