X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtksocketprivate.h;h=4f9d4f8be257f71128b79df55c582a2347029daf;hb=a960230a20f86ebb31594a40132e341c1b7a7c21;hp=44a6c6b36ed768609a8c4d3461c6cae1ea1cdebe;hpb=7819005e2e3672e2cc7f82669ff3340300124d04;p=~andy%2Fgtk diff --git a/gtk/gtksocketprivate.h b/gtk/gtksocketprivate.h index 44a6c6b36..4f9d4f8be 100644 --- a/gtk/gtksocketprivate.h +++ b/gtk/gtksocketprivate.h @@ -12,8 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * License along with this library. If not, see . */ /* @@ -26,146 +25,37 @@ #ifndef __GTK_SOCKET_PRIVATE_H__ #define __GTK_SOCKET_PRIVATE_H__ -typedef struct _GtkSocketPrivate GtkSocketPrivate; +#include "gtkplug.h" +#include "gtksocket.h" struct _GtkSocketPrivate { gint resize_count; -}; - -/* In gtksocket.c: */ -GtkSocketPrivate *_gtk_socket_get_private (GtkSocket *socket); - -void _gtk_socket_add_grabbed_key (GtkSocket *socket, - guint keyval, - GdkModifierType modifiers); -void _gtk_socket_remove_grabbed_key (GtkSocket *socket, - guint keyval, - GdkModifierType modifiers); -void _gtk_socket_claim_focus (GtkSocket *socket, - gboolean send_event); -void _gtk_socket_add_window (GtkSocket *socket, - GdkNativeWindow xid, - gboolean need_reparent); -void _gtk_socket_end_embedding (GtkSocket *socket); - -void _gtk_socket_handle_map_request (GtkSocket *socket); -void _gtk_socket_unmap_notify (GtkSocket *socket); -void _gtk_socket_advance_toplevel_focus (GtkSocket *socket, - GtkDirectionType direction); - -/* In backend-specific file: */ - -/* - * _gtk_socket_windowing_get_id: - * - * @socket: a #GtkSocket - * - * Returns the native windowing system identifier for the plug's window. - */ -GdkNativeWindow _gtk_socket_windowing_get_id (GtkSocket *socket); - -/* - * _gtk_socket_windowing_realize_window: - * - */ -void _gtk_socket_windowing_realize_window (GtkSocket *socket); - -/* - * _gtk_socket_windowing_end_embedding_toplevel: - * - */ -void _gtk_socket_windowing_end_embedding_toplevel (GtkSocket *socket); - -/* - * _gtk_socket_windowing_size_request: - * - */ -void _gtk_socket_windowing_size_request (GtkSocket *socket); - -/* - * _gtk_socket_windowing_send_key_event: - * - */ -void _gtk_socket_windowing_send_key_event (GtkSocket *socket, - GdkEvent *gdk_event, - gboolean mask_key_presses); - -/* - * _gtk_socket_windowing_focus_change: - * - */ -void _gtk_socket_windowing_focus_change (GtkSocket *socket, - gboolean focus_in); - -/* - * _gtk_socket_windowing_update_active: - * - */ -void _gtk_socket_windowing_update_active (GtkSocket *socket, - gboolean active); -/* - * _gtk_socket_windowing_update_modality: - * - */ -void _gtk_socket_windowing_update_modality (GtkSocket *socket, - gboolean modality); + guint16 request_width; + guint16 request_height; + guint16 current_width; + guint16 current_height; -/* - * _gtk_socket_windowing_focus: - * - */ -void _gtk_socket_windowing_focus (GtkSocket *socket, - GtkDirectionType direction); + GdkWindow *plug_window; + GtkWidget *plug_widget; -/* - * _gtk_socket_windowing_send_configure_event: - * - */ -void _gtk_socket_windowing_send_configure_event (GtkSocket *socket); - -/* - * _gtk_socket_windowing_select_plug_window_input: - * - * Asks the windowing system to send necessary events related to the - * plug window to the socket window. Called only for out-of-process - * embedding. - */ -void _gtk_socket_windowing_select_plug_window_input (GtkSocket *socket); + gshort xembed_version; /* -1 == not xembed */ + guint same_app : 1; + guint focus_in : 1; + guint have_size : 1; + guint need_map : 1; + guint is_mapped : 1; + guint active : 1; -/* - * _gtk_socket_windowing_embed_get_info: - * - * Gets whatever information necessary about an out-of-process plug - * window. - */ -void _gtk_socket_windowing_embed_get_info (GtkSocket *socket); - -/* - * _gtk_socket_windowing_embed_notify: - * - */ -void _gtk_socket_windowing_embed_notify (GtkSocket *socket); - -/* - * _gtk_socket_windowing_embed_get_focus_wrapped: - * - */ -gboolean _gtk_socket_windowing_embed_get_focus_wrapped (void); - -/* - * _gtk_socket_windowing_embed_set_focus_wrapped: - * - */ -void _gtk_socket_windowing_embed_set_focus_wrapped (void); + GtkAccelGroup *accel_group; + GtkWidget *toplevel; +}; -/* - * _gtk_socket_windowing_filter_func: - * - */ -GdkFilterReturn _gtk_socket_windowing_filter_func (GdkXEvent *gdk_xevent, - GdkEvent *event, - gpointer data); +/* from gtkplug.c */ +void _gtk_plug_add_to_socket (GtkPlug *plug, + GtkSocket *socket_); +void _gtk_plug_remove_from_socket (GtkPlug *plug, + GtkSocket *socket_); #endif /* __GTK_SOCKET_PRIVATE_H__ */