2007-07-11 [colin] 2.10.0cvs16
[claws.git] / src / plugins / trayicon / libeggtrayicon / gtkplugxembed.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 3 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
23  */
24
25 #ifndef __GTK_PLUG_XEMBED_H__
26 #define __GTK_PLUG_XEMBED_H__
27
28
29 #include <gdk/gdk.h>
30 #include <gtk/gtksocket.h>
31 #include <gtk/gtkwindow.h>
32
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif /* __cplusplus */
37
38
39 #define GTK_TYPE_PLUG_XEMBED            (gtk_plug_xembed_get_type ())
40 #define GTK_PLUG_XEMBED(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_PLUG_XEMBED, GtkPlugXEmbed))
41 #define GTK_PLUG_XEMBED_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PLUG_XEMBED, GtkPlugXEmbedClass))
42 #define GTK_IS_PLUG_XEMBED(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_PLUG_XEMBED))
43 #define GTK_IS_PLUG_XEMBED_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PLUG_XEMBED))
44 #define GTK_PLUG_XEMBED_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PLUG_XEMBED, GtkPlugXEmbedClass))
45
46
47 typedef struct _GtkPlugXEmbed        GtkPlugXEmbed;
48 typedef struct _GtkPlugXEmbedClass   GtkPlugXEmbedClass;
49
50 typedef guint32 GtkPlugXEmbedNativeWindow;
51
52 struct _GtkPlugXEmbed
53 {
54   GtkWindow window;
55
56   GdkWindow *socket_window;
57 #ifdef PORT_COMPLETE
58   GtkWidget *modality_window;
59   GtkWindowGroup *modality_group;
60 #endif
61   GHashTable *grabbed_keys;
62
63   guint same_app : 1;
64 };
65
66 struct _GtkPlugXEmbedClass
67 {
68   GtkWindowClass parent_class;
69
70   void (*embedded) (GtkPlugXEmbed *plug);
71
72   /* Padding for future expansion */
73   void (*_gtk_reserved1) (void);
74   void (*_gtk_reserved2) (void);
75   void (*_gtk_reserved3) (void);
76   void (*_gtk_reserved4) (void);
77 };
78
79
80 GtkType    gtk_plug_xembed_get_type  (void) G_GNUC_CONST;
81 void       gtk_plug_xembed_construct (GtkPlugXEmbed *plug, GtkPlugXEmbedNativeWindow socket_id);
82
83 GtkWidget*      gtk_plug_xembed_new    (GtkPlugXEmbedNativeWindow  socket_id);
84 GtkPlugXEmbedNativeWindow gtk_plug_xembed_get_id (GtkPlugXEmbed         *plug);
85
86 void _gtk_plug_xembed_add_to_socket      (GtkPlugXEmbed   *plug,
87                                           GtkSocket *socket);
88 void _gtk_plug_xembed_remove_from_socket (GtkPlugXEmbed   *plug,
89                                           GtkSocket *socket);
90
91 #ifdef __cplusplus
92 }
93 #endif /* __cplusplus */
94
95
96 #endif /* __GTK_PLUG_XEMBED_H__ */