Google

logo top
Main Page   Widgets   Namespaces   Book  

Gtk::Socket Class Reference
[WidgetsContainer Widgets]

Container for widgets from other processes. More...

Inheritance diagram for Gtk::Socket:

Inheritance graph
[legend]
List of all members.

Public Methods

virtual ~Socket ()
GtkSocket* gobj ()
const GtkSocket* gobj () const
 Socket ()
void add_id (GdkNativeWindow window_id)
 Adds an XEMBED client, such as a Gtk::Plug, to the Gtk::Socket.

GdkNativeWindow get_id () const
 Gets the window ID of a Gtk::Socket widget, which can then be used to create a client embedded inside the socket, for instance with Gtk::Plug::new().

Glib::SignalProxy0<void> signal_plug_added ()
Glib::SignalProxy0<bool> signal_plug_removed ()

Protected Methods

virtual void on_plug_added ()
virtual bool on_plug_removed ()

Related Functions

(Note that these are not member functions.)

Gtk::Socket* wrap (GtkSocket* object, bool take_copy=false)

Detailed Description

Container for widgets from other processes.

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

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

 Gtk::Socket socket;
 parent.add(socket);

 // The following call is only necessary if one of the ancestors of the
 // socket is not yet visible
 socket.realize();

 cout << "The ID of the sockets window is: " << socket.get_id() << endl;

 

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 examining the plug_window member of the GtkSocket structure returned by gobj(). If this field is non-NULL, then the plug has been successfully created inside of the socket.

When gtkmm 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 Gtk::Socket and a Gtk::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 gtkmm or vice versa.


Constructor & Destructor Documentation

virtual Gtk::Socket::~Socket (   [virtual]
 

Gtk::Socket::Socket (  
 


Member Function Documentation

void Gtk::Socket::add_id ( GdkNativeWindow    window_id
 

Adds an XEMBED client, such as a Gtk::Plug, to the Gtk::Socket.

The client may be in the same process or in a different process.

To embed a Gtk::Plug in a Gtk::Socket, you can either create the Gtk::Plug with gtk_plug_new (0), call Gtk::Plug::get_id() to get the window ID of the plug, and then pass that to the add_id(), or you can call get_id() to get the window ID for the socket, and call Gtk::Plug::new() passing in that ID.

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

Parameters:
window_id The window ID of a client participating in the XEMBED protocol.

GdkNativeWindow Gtk::Socket::get_id (   const
 

Gets the window ID of a Gtk::Socket widget, which can then be used to create a client embedded inside the socket, for instance with Gtk::Plug::new().

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

Returns:
The window ID for the socket.

const GtkSocket* Gtk::Socket::gobj (   const [inline]
 

Reimplemented from Gtk::Container.

GtkSocket* Gtk::Socket::gobj (   [inline]
 

Reimplemented from Gtk::Container.

virtual void Gtk::Socket::on_plug_added (   [protected, virtual]
 

virtual bool Gtk::Socket::on_plug_removed (   [protected, virtual]
 

Glib::SignalProxy0<void> Gtk::Socket::signal_plug_added (  
 

Prototype:
void plug_added()

Glib::SignalProxy0<bool> Gtk::Socket::signal_plug_removed (  
 

Prototype:
bool plug_removed()


Friends And Related Function Documentation

Gtk::Socket* wrap ( GtkSocket*    object,
bool    take_copy = false
[related]
 


The documentation for this class was generated from the following file:
Generated for gtkmm by Doxygen 1.3-rc1 © 1997-2001