1998-11-24 04:45:29 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-11-24 04:45:29 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-11-24 04:45:29 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-11-24 04:45:29 +00:00
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* By Owen Taylor <otaylor@gtk.org> 98/4/4 */
|
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
2004-03-06 03:38:59 +00:00
|
|
|
#include <config.h>
|
2002-06-06 15:38:39 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
#include "gdk/gdkkeysyms.h"
|
2001-04-19 20:36:46 +00:00
|
|
|
#include "gtkmain.h"
|
2001-11-17 23:28:51 +00:00
|
|
|
#include "gtkmarshalers.h"
|
1998-11-24 04:45:29 +00:00
|
|
|
#include "gtkwindow.h"
|
2001-07-03 14:14:30 +00:00
|
|
|
#include "gtkplug.h"
|
2001-07-05 02:58:34 +00:00
|
|
|
#include "gtkprivate.h"
|
1998-11-24 04:45:29 +00:00
|
|
|
#include "gtksocket.h"
|
2005-07-21 13:31:03 +00:00
|
|
|
#include "gtksocketprivate.h"
|
1998-11-24 04:45:29 +00:00
|
|
|
#include "gtkdnd.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
#include "gtkintl.h"
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#include "gtkalias.h"
|
This might seem like a large patch, but it isn't that bad, and nothing
should break on Unix/X11.
Win32 merge and general portability stuff:
* acconfig.h,configure.in: Check for <sys/time.h>.
* gdk/win32: New directory (actually, been there for a while).
* gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
NATIVE_WIN32, and use these. Always case fold on Win32. No
backslashed escapes on native Win32.
* gtk/{gtk.def,makefile.msc}: New files.
* gtk/Makefile.am: Add above new files.
* gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
instead of <strings.h>.
* gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
<unistd.h> appropriately.
* gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
Use ABS() (from <glib.h>) instead of abs().
* gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
of gtk (and thus glib) headers, so that WIN32 will be
defined. With MS C, include <direct.h> for mkdir prototype.
* gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
some casts, needed by MS C.
* gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
implemented).
* gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
<X11/Xlocale.h> only on X11 platform, otherwise <locale.h>. Use
G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
* gtk/gtkmain.h: Mark variables for export/import on Win32.
* gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
the event is not a hint, or its window is not the slider. Needed
on Win32, at least.
* gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
a subdirectory of the Windows directory as gtk system
configuration directory.
* gtk/gtkselection.c: No chunks on Win32.
* gtk/gtksocket.c: Not implemented on Win32.
* gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
* gtk/makeenums.h: Include gdkprivate.h after gdk.h.
* gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
1999-03-15 00:03:37 +00:00
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
/* Forward declararations */
|
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
static void gtk_socket_finalize (GObject *object);
|
2002-06-06 15:38:39 +00:00
|
|
|
static void gtk_socket_notify (GObject *object,
|
|
|
|
GParamSpec *pspec);
|
2001-07-03 14:14:30 +00:00
|
|
|
static void gtk_socket_realize (GtkWidget *widget);
|
|
|
|
static void gtk_socket_unrealize (GtkWidget *widget);
|
|
|
|
static void gtk_socket_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_socket_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
|
|
|
static void gtk_socket_hierarchy_changed (GtkWidget *widget,
|
|
|
|
GtkWidget *old_toplevel);
|
|
|
|
static void gtk_socket_grab_notify (GtkWidget *widget,
|
|
|
|
gboolean was_grabbed);
|
2003-08-01 19:51:05 +00:00
|
|
|
static gboolean gtk_socket_key_event (GtkWidget *widget,
|
2001-07-03 14:14:30 +00:00
|
|
|
GdkEventKey *event);
|
|
|
|
static gboolean gtk_socket_focus (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
|
|
|
static void gtk_socket_remove (GtkContainer *container,
|
|
|
|
GtkWidget *widget);
|
|
|
|
static void gtk_socket_forall (GtkContainer *container,
|
|
|
|
gboolean include_internals,
|
|
|
|
GtkCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
|
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
/* Local data */
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint accel_key;
|
|
|
|
GdkModifierType accel_mods;
|
|
|
|
} GrabbedKey;
|
|
|
|
|
2001-07-05 02:58:34 +00:00
|
|
|
enum {
|
|
|
|
PLUG_ADDED,
|
|
|
|
PLUG_REMOVED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint socket_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_get_private:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
*
|
|
|
|
* Returns the private data associated with a GtkSocket, creating it
|
|
|
|
* first if necessary.
|
|
|
|
*/
|
|
|
|
GtkSocketPrivate *
|
|
|
|
_gtk_socket_get_private (GtkSocket *socket)
|
2002-05-16 23:38:01 +00:00
|
|
|
{
|
2005-11-21 16:24:59 +00:00
|
|
|
return G_TYPE_INSTANCE_GET_PRIVATE (socket, GTK_TYPE_SOCKET, GtkSocketPrivate);
|
2002-05-16 23:38:01 +00:00
|
|
|
}
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkSocket, gtk_socket, GTK_TYPE_CONTAINER)
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
static void
|
|
|
|
gtk_socket_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkSocket *socket = GTK_SOCKET (object);
|
|
|
|
|
|
|
|
g_object_unref (socket->accel_group);
|
|
|
|
socket->accel_group = NULL;
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
G_OBJECT_CLASS (gtk_socket_parent_class)->finalize (object);
|
2002-02-24 01:52:14 +00:00
|
|
|
}
|
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
static void
|
|
|
|
gtk_socket_class_init (GtkSocketClass *class)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
GtkContainerClass *container_class;
|
2002-02-24 01:52:14 +00:00
|
|
|
GObjectClass *gobject_class;
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
gobject_class = (GObjectClass *) class;
|
1998-11-24 04:45:29 +00:00
|
|
|
widget_class = (GtkWidgetClass*) class;
|
|
|
|
container_class = (GtkContainerClass*) class;
|
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
gobject_class->finalize = gtk_socket_finalize;
|
2002-06-06 15:38:39 +00:00
|
|
|
gobject_class->notify = gtk_socket_notify;
|
2002-02-24 01:52:14 +00:00
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
widget_class->realize = gtk_socket_realize;
|
|
|
|
widget_class->unrealize = gtk_socket_unrealize;
|
|
|
|
widget_class->size_request = gtk_socket_size_request;
|
|
|
|
widget_class->size_allocate = gtk_socket_size_allocate;
|
2001-04-19 20:36:46 +00:00
|
|
|
widget_class->hierarchy_changed = gtk_socket_hierarchy_changed;
|
|
|
|
widget_class->grab_notify = gtk_socket_grab_notify;
|
2003-08-01 19:51:05 +00:00
|
|
|
widget_class->key_press_event = gtk_socket_key_event;
|
|
|
|
widget_class->key_release_event = gtk_socket_key_event;
|
2001-06-08 18:09:34 +00:00
|
|
|
widget_class->focus = gtk_socket_focus;
|
2004-03-04 21:58:26 +00:00
|
|
|
|
|
|
|
/* We don't want to show_all/hide_all the in-process
|
|
|
|
* plug, if any.
|
|
|
|
*/
|
|
|
|
widget_class->show_all = gtk_widget_show;
|
|
|
|
widget_class->hide_all = gtk_widget_hide;
|
2001-07-03 14:14:30 +00:00
|
|
|
|
|
|
|
container_class->remove = gtk_socket_remove;
|
|
|
|
container_class->forall = gtk_socket_forall;
|
2001-07-05 02:58:34 +00:00
|
|
|
|
|
|
|
socket_signals[PLUG_ADDED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("plug_added"),
|
2001-07-05 02:58:34 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkSocketClass, plug_added),
|
|
|
|
NULL, NULL,
|
2001-11-17 23:28:51 +00:00
|
|
|
_gtk_marshal_VOID__VOID,
|
2002-10-13 19:34:42 +00:00
|
|
|
G_TYPE_NONE, 0);
|
2001-07-05 02:58:34 +00:00
|
|
|
socket_signals[PLUG_REMOVED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("plug_removed"),
|
2001-07-05 02:58:34 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkSocketClass, plug_removed),
|
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
2001-11-17 23:28:51 +00:00
|
|
|
_gtk_marshal_BOOLEAN__VOID,
|
2001-07-05 02:58:34 +00:00
|
|
|
G_TYPE_BOOLEAN, 0);
|
2005-11-21 16:24:59 +00:00
|
|
|
|
|
|
|
g_type_class_add_private (gobject_class, sizeof (GtkSocketPrivate));
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_socket_init (GtkSocket *socket)
|
|
|
|
{
|
|
|
|
socket->request_width = 0;
|
|
|
|
socket->request_height = 0;
|
|
|
|
socket->current_width = 0;
|
|
|
|
socket->current_height = 0;
|
|
|
|
|
|
|
|
socket->plug_window = NULL;
|
2001-07-03 14:14:30 +00:00
|
|
|
socket->plug_widget = NULL;
|
1998-11-24 04:45:29 +00:00
|
|
|
socket->focus_in = FALSE;
|
|
|
|
socket->have_size = FALSE;
|
|
|
|
socket->need_map = FALSE;
|
2002-06-06 15:38:39 +00:00
|
|
|
socket->active = FALSE;
|
2002-02-24 01:52:14 +00:00
|
|
|
|
|
|
|
socket->accel_group = gtk_accel_group_new ();
|
2005-09-01 05:11:46 +00:00
|
|
|
g_object_set_data (G_OBJECT (socket->accel_group), I_("gtk-socket"), socket);
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
2001-07-05 02:58:34 +00:00
|
|
|
/**
|
|
|
|
* gtk_socket_new:
|
|
|
|
*
|
|
|
|
* Create a new empty #GtkSocket.
|
|
|
|
*
|
|
|
|
* Return value: the new #GtkSocket.
|
|
|
|
**/
|
1998-11-24 04:45:29 +00:00
|
|
|
GtkWidget*
|
2000-02-13 08:16:48 +00:00
|
|
|
gtk_socket_new (void)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
|
|
|
GtkSocket *socket;
|
|
|
|
|
2001-04-19 20:36:46 +00:00
|
|
|
socket = g_object_new (GTK_TYPE_SOCKET, NULL);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
|
|
|
return GTK_WIDGET (socket);
|
|
|
|
}
|
|
|
|
|
2001-07-05 02:58:34 +00:00
|
|
|
/**
|
|
|
|
* gtk_socket_steal:
|
2002-11-08 19:41:50 +00:00
|
|
|
* @socket_: a #GtkSocket
|
2002-01-09 00:02:30 +00:00
|
|
|
* @wid: the window ID of an existing toplevel window.
|
2001-07-05 02:58:34 +00:00
|
|
|
*
|
|
|
|
* Reparents a pre-existing toplevel window into a #GtkSocket. This is
|
|
|
|
* meant to embed clients that do not know about embedding into a
|
|
|
|
* #GtkSocket, however doing so is inherently unreliable, and using
|
|
|
|
* this function is not recommended.
|
|
|
|
*
|
|
|
|
* The #GtkSocket must have already be added into a toplevel window
|
|
|
|
* before you can make this call.
|
|
|
|
**/
|
1998-11-24 04:45:29 +00:00
|
|
|
void
|
2005-07-21 13:31:03 +00:00
|
|
|
gtk_socket_steal (GtkSocket *socket,
|
|
|
|
GdkNativeWindow wid)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2001-07-05 02:58:34 +00:00
|
|
|
g_return_if_fail (GTK_IS_SOCKET (socket));
|
|
|
|
g_return_if_fail (GTK_WIDGET_ANCHORED (socket));
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_REALIZED (socket))
|
|
|
|
gtk_widget_realize (GTK_WIDGET (socket));
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_add_window (socket, wid, TRUE);
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
2001-07-05 02:58:34 +00:00
|
|
|
/**
|
|
|
|
* gtk_socket_add_id:
|
2002-11-08 19:41:50 +00:00
|
|
|
* @socket_: a #GtkSocket
|
2002-01-09 00:02:30 +00:00
|
|
|
* @window_id: the window ID of a client participating in the XEMBED protocol.
|
2001-07-05 02:58:34 +00:00
|
|
|
*
|
|
|
|
* Adds an XEMBED client, such as a #GtkPlug, to the #GtkSocket. The
|
|
|
|
* client may be in the same process or in a different process.
|
|
|
|
*
|
|
|
|
* To embed a #GtkPlug in a #GtkSocket, you can either create the
|
2002-01-09 00:02:30 +00:00
|
|
|
* #GtkPlug with <literal>gtk_plug_new (0)</literal>, call
|
|
|
|
* gtk_plug_get_id() to get the window ID of the plug, and then pass that to the
|
2001-07-05 02:58:34 +00:00
|
|
|
* gtk_socket_add_id(), or you can call gtk_socket_get_id() to get the
|
|
|
|
* window ID for the socket, and call gtk_plug_new() passing in that
|
|
|
|
* ID.
|
|
|
|
*
|
|
|
|
* The #GtkSocket must have already be added into a toplevel window
|
|
|
|
* before you can make this call.
|
|
|
|
**/
|
|
|
|
void
|
2005-07-21 13:31:03 +00:00
|
|
|
gtk_socket_add_id (GtkSocket *socket,
|
|
|
|
GdkNativeWindow window_id)
|
2001-07-05 02:58:34 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_SOCKET (socket));
|
|
|
|
g_return_if_fail (GTK_WIDGET_ANCHORED (socket));
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_REALIZED (socket))
|
|
|
|
gtk_widget_realize (GTK_WIDGET (socket));
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_add_window (socket, window_id, TRUE);
|
2001-07-05 02:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_socket_get_id:
|
2002-11-08 19:41:50 +00:00
|
|
|
* @socket_: a #GtkSocket.
|
2001-07-05 02:58:34 +00:00
|
|
|
*
|
|
|
|
* Gets the window ID of a #GtkSocket widget, which can then
|
|
|
|
* be used to create a client embedded inside the socket, for
|
2002-01-09 00:02:30 +00:00
|
|
|
* instance with gtk_plug_new().
|
Doc typo fix. (#68172)
* gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
* gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
* gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
* gtk/gtkrc.c (gtk_rc_get_style_by_paths),
gtk/gtkwidget.c (gtk_widget_get_toplevel,
gtk_widget_push_composite_child), gtk/gtkdialog.c
(gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
from messing up the indentation of inline examples.
* gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv()
instead of getenv().
* gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
* gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
Document.
* gtk/tmpl/gtksocket.sgml: Mention gtk_socket_get_id()
instead of GTK_WINDOW_XWINDOW(). (#68172)
* gtk/gtk-sections.txt: Move functions which are documented
as "private" or "internal" into Private subsections.
* gtk/tmpl/gtkdnd.sgml, gtk/tmpl/gtkobject.sgml,
gtk/tmpl/gtkrc.sgml, gtk/tmpl/gtktooltips.sgml,
gtk/tmpl/gtkwidget.sgml, gtk/tmpl/gtkclipboard.sgml,
gtk/tmpl/gtkstyle.sgml, gtk/tmpl/gtkselection.sgml,
gtk/tmpl/gtkfeatures.sgml: Minor markup fixes.
* gtk/tmpl/gtksignal.sgml: Add link to GLib signal docs.
* gtk/tmpl/gtkpreview.sgml, gtk/tmpl/gtktext.sgml,
gtk/tmpl/gtktree.sgml: Remove "deprecated" from short desc.
* gtk/tmpl/gtkrc.sgml: Correct names of default RC files.
2002-01-08 00:04:57 +00:00
|
|
|
*
|
|
|
|
* The #GtkSocket must have already be added into a toplevel window
|
|
|
|
* before you can make this call.
|
2001-07-05 02:58:34 +00:00
|
|
|
*
|
|
|
|
* Return value: the window ID for the socket
|
|
|
|
**/
|
|
|
|
GdkNativeWindow
|
|
|
|
gtk_socket_get_id (GtkSocket *socket)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_SOCKET (socket), 0);
|
|
|
|
g_return_val_if_fail (GTK_WIDGET_ANCHORED (socket), 0);
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_REALIZED (socket))
|
|
|
|
gtk_widget_realize (GTK_WIDGET (socket));
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
return _gtk_socket_windowing_get_id (socket);
|
2001-07-05 02:58:34 +00:00
|
|
|
}
|
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
static void
|
|
|
|
gtk_socket_realize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkSocket *socket;
|
|
|
|
GdkWindowAttr attributes;
|
|
|
|
gint attributes_mask;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SOCKET (widget));
|
|
|
|
|
|
|
|
socket = GTK_SOCKET (widget);
|
|
|
|
GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
|
|
|
|
|
|
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
|
|
|
attributes.x = widget->allocation.x;
|
|
|
|
attributes.y = widget->allocation.y;
|
|
|
|
attributes.width = widget->allocation.width;
|
|
|
|
attributes.height = widget->allocation.height;
|
|
|
|
attributes.wclass = GDK_INPUT_OUTPUT;
|
|
|
|
attributes.visual = gtk_widget_get_visual (widget);
|
|
|
|
attributes.colormap = gtk_widget_get_colormap (widget);
|
|
|
|
attributes.event_mask = GDK_FOCUS_CHANGE_MASK;
|
|
|
|
|
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
|
|
|
|
|
|
|
|
widget->window = gdk_window_new (gtk_widget_get_parent_window (widget),
|
|
|
|
&attributes, attributes_mask);
|
|
|
|
gdk_window_set_user_data (widget->window, socket);
|
|
|
|
|
|
|
|
widget->style = gtk_style_attach (widget->style, widget->window);
|
|
|
|
gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_realize_window (socket);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
gdk_window_add_filter (widget->window,
|
|
|
|
_gtk_socket_windowing_filter_func,
|
|
|
|
widget);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
|
|
|
GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
|
|
|
|
|
|
|
|
/* We sync here so that we make sure that if the XID for
|
|
|
|
* our window is passed to another application, SubstructureRedirectMask
|
|
|
|
* will be set by the time the other app creates its window.
|
|
|
|
*/
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
gdk_display_sync (gtk_widget_get_display (widget));
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_end_embedding:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
*
|
|
|
|
* Called to end the embedding of a plug in the socket.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_end_embedding (GtkSocket *socket)
|
2002-02-24 01:52:14 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
GtkSocketPrivate *private = _gtk_socket_get_private (socket);
|
2002-02-24 01:52:14 +00:00
|
|
|
GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (socket));
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (toplevel && GTK_IS_WINDOW (toplevel))
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_end_embedding_toplevel (socket);
|
2002-02-24 01:52:14 +00:00
|
|
|
|
|
|
|
g_object_unref (socket->plug_window);
|
|
|
|
socket->plug_window = NULL;
|
2004-07-03 06:12:38 +00:00
|
|
|
socket->current_width = 0;
|
|
|
|
socket->current_height = 0;
|
2002-05-16 23:38:01 +00:00
|
|
|
private->resize_count = 0;
|
2002-02-24 01:52:14 +00:00
|
|
|
|
2002-02-25 02:23:00 +00:00
|
|
|
/* Remove from end to avoid indexes shifting. This is evil */
|
|
|
|
for (i = socket->accel_group->n_accels - 1; i >= 0; i--)
|
2002-02-24 01:52:14 +00:00
|
|
|
{
|
|
|
|
GtkAccelGroupEntry *accel_entry = &socket->accel_group->priv_accels[i];
|
|
|
|
gtk_accel_group_disconnect (socket->accel_group, accel_entry->closure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
static void
|
|
|
|
gtk_socket_unrealize (GtkWidget *widget)
|
|
|
|
{
|
2001-07-05 02:58:34 +00:00
|
|
|
GtkSocket *socket = GTK_SOCKET (widget);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2001-10-31 23:58:31 +00:00
|
|
|
GTK_WIDGET_UNSET_FLAGS (widget, GTK_REALIZED);
|
|
|
|
|
2001-07-05 02:58:34 +00:00
|
|
|
if (socket->plug_widget)
|
|
|
|
{
|
|
|
|
_gtk_plug_remove_from_socket (GTK_PLUG (socket->plug_widget), socket);
|
|
|
|
}
|
|
|
|
else if (socket->plug_window)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_end_embedding (socket);
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
if (GTK_WIDGET_CLASS (gtk_socket_parent_class)->unrealize)
|
|
|
|
(* GTK_WIDGET_CLASS (gtk_socket_parent_class)->unrealize) (widget);
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_socket_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
2001-07-05 02:58:34 +00:00
|
|
|
GtkSocket *socket = GTK_SOCKET (widget);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
if (socket->plug_widget)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2001-07-03 14:14:30 +00:00
|
|
|
gtk_widget_size_request (socket->plug_widget, requisition);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (socket->is_mapped && !socket->have_size && socket->plug_window)
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_size_request (socket);
|
1999-02-21 19:25:53 +00:00
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
if (socket->is_mapped && socket->have_size)
|
|
|
|
{
|
|
|
|
requisition->width = MAX (socket->request_width, 1);
|
|
|
|
requisition->height = MAX (socket->request_height, 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
requisition->width = 1;
|
|
|
|
requisition->height = 1;
|
|
|
|
}
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_socket_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GtkSocket *socket;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SOCKET (widget));
|
|
|
|
g_return_if_fail (allocation != NULL);
|
|
|
|
|
|
|
|
socket = GTK_SOCKET (widget);
|
|
|
|
|
|
|
|
widget->allocation = *allocation;
|
|
|
|
if (GTK_WIDGET_REALIZED (widget))
|
|
|
|
{
|
|
|
|
gdk_window_move_resize (widget->window,
|
|
|
|
allocation->x, allocation->y,
|
|
|
|
allocation->width, allocation->height);
|
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
if (socket->plug_widget)
|
|
|
|
{
|
|
|
|
GtkAllocation child_allocation;
|
|
|
|
|
|
|
|
child_allocation.x = 0;
|
|
|
|
child_allocation.y = 0;
|
|
|
|
child_allocation.width = allocation->width;
|
|
|
|
child_allocation.height = allocation->height;
|
|
|
|
|
|
|
|
gtk_widget_size_allocate (socket->plug_widget, &child_allocation);
|
|
|
|
}
|
|
|
|
else if (socket->plug_window)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
GtkSocketPrivate *private = _gtk_socket_get_private (socket);
|
2002-05-16 23:38:01 +00:00
|
|
|
|
1999-02-21 19:25:53 +00:00
|
|
|
gdk_error_trap_push ();
|
|
|
|
|
2002-05-16 23:38:01 +00:00
|
|
|
if (allocation->width != socket->current_width ||
|
|
|
|
allocation->height != socket->current_height)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
|
|
|
gdk_window_move_resize (socket->plug_window,
|
|
|
|
0, 0,
|
|
|
|
allocation->width, allocation->height);
|
2002-05-16 23:38:01 +00:00
|
|
|
if (private->resize_count)
|
|
|
|
private->resize_count--;
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_message ("GtkSocket - allocated: %d %d",
|
|
|
|
allocation->width, allocation->height));
|
1998-11-24 04:45:29 +00:00
|
|
|
socket->current_width = allocation->width;
|
|
|
|
socket->current_height = allocation->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket->need_map)
|
|
|
|
{
|
|
|
|
gdk_window_show (socket->plug_window);
|
|
|
|
socket->need_map = FALSE;
|
|
|
|
}
|
|
|
|
|
2002-05-16 23:38:01 +00:00
|
|
|
while (private->resize_count)
|
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_send_configure_event (socket);
|
2002-05-16 23:38:01 +00:00
|
|
|
private->resize_count--;
|
2005-07-21 13:31:03 +00:00
|
|
|
GTK_NOTE (PLUGSOCKET,
|
|
|
|
g_message ("GtkSocket - sending synthetic configure: %d %d",
|
|
|
|
allocation->width, allocation->height));
|
2002-05-16 23:38:01 +00:00
|
|
|
}
|
|
|
|
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
gdk_display_sync (gtk_widget_get_display (widget));
|
1999-02-21 19:25:53 +00:00
|
|
|
gdk_error_trap_pop ();
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-22 18:33:45 +00:00
|
|
|
static gboolean
|
|
|
|
activate_key (GtkAccelGroup *accel_group,
|
|
|
|
GObject *acceleratable,
|
|
|
|
guint accel_key,
|
|
|
|
GdkModifierType accel_mods,
|
|
|
|
GrabbedKey *grabbed_key)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
GdkEvent *gdk_event = gtk_get_current_event ();
|
2001-04-19 20:36:46 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
GtkSocket *socket = g_object_get_data (G_OBJECT (accel_group), "gtk-socket");
|
2003-04-22 18:33:45 +00:00
|
|
|
gboolean retval = FALSE;
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
if (gdk_event && gdk_event->type == GDK_KEY_PRESS && socket->plug_window)
|
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_send_key_event (socket, gdk_event, TRUE);
|
2003-04-22 18:33:45 +00:00
|
|
|
retval = TRUE;
|
2002-02-24 01:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_event)
|
|
|
|
gdk_event_free (gdk_event);
|
2003-04-22 18:33:45 +00:00
|
|
|
|
|
|
|
return retval;
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2002-02-24 01:52:14 +00:00
|
|
|
find_accel_key (GtkAccelKey *key,
|
|
|
|
GClosure *closure,
|
|
|
|
gpointer data)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
GrabbedKey *grabbed_key = data;
|
|
|
|
|
|
|
|
return (key->accel_key == grabbed_key->accel_key &&
|
|
|
|
key->accel_mods == grabbed_key->accel_mods);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_add_grabbed_key:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
* @keyval: a key
|
|
|
|
* @modifiers: modifiers for the key
|
|
|
|
*
|
|
|
|
* Called from the GtkSocket platform-specific backend when the
|
|
|
|
* corresponding plug has told the socket to grab a key.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_add_grabbed_key (GtkSocket *socket,
|
|
|
|
guint keyval,
|
|
|
|
GdkModifierType modifiers)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
GClosure *closure;
|
|
|
|
GrabbedKey *grabbed_key;
|
2001-04-19 20:36:46 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
grabbed_key = g_new (GrabbedKey, 1);
|
|
|
|
|
|
|
|
grabbed_key->accel_key = keyval;
|
|
|
|
grabbed_key->accel_mods = modifiers;
|
2001-04-19 20:36:46 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
if (gtk_accel_group_find (socket->accel_group,
|
|
|
|
find_accel_key,
|
|
|
|
&grabbed_key))
|
|
|
|
{
|
|
|
|
g_warning ("GtkSocket: request to add already present grabbed key %u,%#x\n",
|
|
|
|
keyval, modifiers);
|
|
|
|
g_free (grabbed_key);
|
|
|
|
return;
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
closure = g_cclosure_new (G_CALLBACK (activate_key), grabbed_key, (GClosureNotify)g_free);
|
2001-04-19 20:36:46 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
gtk_accel_group_connect (socket->accel_group, keyval, modifiers, GTK_ACCEL_LOCKED,
|
|
|
|
closure);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_remove_grabbed_key:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
* @keyval: a key
|
|
|
|
* @modifiers: modifiers for the key
|
|
|
|
*
|
|
|
|
* Called from the GtkSocket backend when the corresponding plug has
|
|
|
|
* told the socket to remove a key grab.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_remove_grabbed_key (GtkSocket *socket,
|
|
|
|
guint keyval,
|
|
|
|
GdkModifierType modifiers)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
gint i;
|
2001-04-19 20:36:46 +00:00
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
for (i = 0; i < socket->accel_group->n_accels; i++)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
GtkAccelGroupEntry *accel_entry = &socket->accel_group->priv_accels[i];
|
|
|
|
if (accel_entry->key.accel_key == keyval &&
|
|
|
|
accel_entry->key.accel_mods == modifiers)
|
|
|
|
{
|
|
|
|
gtk_accel_group_disconnect (socket->accel_group,
|
|
|
|
accel_entry->closure);
|
|
|
|
return;
|
|
|
|
}
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2002-02-24 01:52:14 +00:00
|
|
|
g_warning ("GtkSocket: request to remove non-present grabbed key %u,%#x\n",
|
|
|
|
keyval, modifiers);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
static void
|
|
|
|
socket_update_focus_in (GtkSocket *socket)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-06-06 15:38:39 +00:00
|
|
|
gboolean focus_in = FALSE;
|
|
|
|
|
|
|
|
if (socket->plug_window)
|
|
|
|
{
|
|
|
|
GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (socket));
|
2005-07-21 13:31:03 +00:00
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
if (GTK_WIDGET_TOPLEVEL (toplevel) &&
|
|
|
|
GTK_WINDOW (toplevel)->has_toplevel_focus &&
|
|
|
|
gtk_widget_is_focus (GTK_WIDGET (socket)))
|
|
|
|
focus_in = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (focus_in != socket->focus_in)
|
|
|
|
{
|
|
|
|
socket->focus_in = focus_in;
|
2002-01-29 19:58:43 +00:00
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_focus_change (socket, focus_in);
|
2002-06-06 15:38:39 +00:00
|
|
|
}
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
static void
|
|
|
|
socket_update_active (GtkSocket *socket)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2002-06-06 15:38:39 +00:00
|
|
|
gboolean active = FALSE;
|
2002-01-29 19:58:43 +00:00
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
if (socket->plug_window)
|
|
|
|
{
|
|
|
|
GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (socket));
|
2005-07-21 13:31:03 +00:00
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
if (GTK_WIDGET_TOPLEVEL (toplevel) &&
|
|
|
|
GTK_WINDOW (toplevel)->is_active)
|
|
|
|
active = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (active != socket->active)
|
|
|
|
{
|
|
|
|
socket->active = active;
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_update_active (socket, active);
|
2002-06-06 15:38:39 +00:00
|
|
|
}
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-07-01 00:57:21 +00:00
|
|
|
gtk_socket_hierarchy_changed (GtkWidget *widget,
|
|
|
|
GtkWidget *old_toplevel)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
|
|
|
GtkSocket *socket = GTK_SOCKET (widget);
|
|
|
|
GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
|
|
|
|
|
|
|
|
if (toplevel && !GTK_IS_WINDOW (toplevel))
|
|
|
|
toplevel = NULL;
|
|
|
|
|
|
|
|
if (toplevel != socket->toplevel)
|
|
|
|
{
|
|
|
|
if (socket->toplevel)
|
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
gtk_window_remove_accel_group (GTK_WINDOW (socket->toplevel), socket->accel_group);
|
2002-06-06 15:38:39 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (socket->toplevel,
|
2002-10-13 19:34:42 +00:00
|
|
|
socket_update_focus_in,
|
|
|
|
socket);
|
2002-06-06 15:38:39 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (socket->toplevel,
|
2002-10-13 19:34:42 +00:00
|
|
|
socket_update_active,
|
|
|
|
socket);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
socket->toplevel = toplevel;
|
|
|
|
|
|
|
|
if (toplevel)
|
|
|
|
{
|
2002-02-24 01:52:14 +00:00
|
|
|
gtk_window_add_accel_group (GTK_WINDOW (socket->toplevel), socket->accel_group);
|
2002-07-02 16:22:19 +00:00
|
|
|
g_signal_connect_swapped (socket->toplevel, "notify::has-toplevel-focus",
|
2002-06-06 15:38:39 +00:00
|
|
|
G_CALLBACK (socket_update_focus_in), socket);
|
2002-07-02 16:22:19 +00:00
|
|
|
g_signal_connect_swapped (socket->toplevel, "notify::is-active",
|
2002-06-06 15:38:39 +00:00
|
|
|
G_CALLBACK (socket_update_active), socket);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
2002-06-06 15:38:39 +00:00
|
|
|
|
|
|
|
socket_update_focus_in (socket);
|
|
|
|
socket_update_active (socket);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_socket_grab_notify (GtkWidget *widget,
|
|
|
|
gboolean was_grabbed)
|
|
|
|
{
|
2002-01-27 00:36:38 +00:00
|
|
|
GtkSocket *socket = GTK_SOCKET (widget);
|
|
|
|
|
|
|
|
if (!socket->same_app)
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_update_modality (socket, !was_grabbed);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2003-08-01 19:51:05 +00:00
|
|
|
gtk_socket_key_event (GtkWidget *widget,
|
|
|
|
GdkEventKey *event)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
|
|
|
GtkSocket *socket = GTK_SOCKET (widget);
|
|
|
|
|
2001-12-27 19:20:23 +00:00
|
|
|
if (GTK_WIDGET_HAS_FOCUS (socket) && socket->plug_window && !socket->plug_widget)
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_send_key_event (socket, (GdkEvent *) event, FALSE);
|
|
|
|
|
2001-04-19 20:36:46 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
static void
|
|
|
|
gtk_socket_notify (GObject *object,
|
|
|
|
GParamSpec *pspec)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2005-03-26 05:49:15 +00:00
|
|
|
if (!strcmp (pspec->name, "is-focus"))
|
2002-06-06 15:38:39 +00:00
|
|
|
return;
|
|
|
|
socket_update_focus_in (GTK_SOCKET (object));
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_claim_focus:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
* @send_event: huh?
|
|
|
|
*
|
|
|
|
* Claims focus for the socket. XXX send_event?
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_claim_focus (GtkSocket *socket,
|
|
|
|
gboolean send_event)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2002-06-06 15:38:39 +00:00
|
|
|
if (!send_event)
|
|
|
|
socket->focus_in = TRUE; /* Otherwise, our notify handler will send FOCUS_IN */
|
1998-11-24 04:45:29 +00:00
|
|
|
|
|
|
|
/* Oh, the trickery... */
|
|
|
|
|
|
|
|
GTK_WIDGET_SET_FLAGS (socket, GTK_CAN_FOCUS);
|
|
|
|
gtk_widget_grab_focus (GTK_WIDGET (socket));
|
|
|
|
GTK_WIDGET_UNSET_FLAGS (socket, GTK_CAN_FOCUS);
|
|
|
|
}
|
|
|
|
|
2001-04-19 20:36:46 +00:00
|
|
|
static gboolean
|
2005-07-21 13:31:03 +00:00
|
|
|
gtk_socket_focus (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
|
|
|
GtkSocket *socket;
|
|
|
|
|
2001-06-08 18:09:34 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_SOCKET (widget), FALSE);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2001-06-08 18:09:34 +00:00
|
|
|
socket = GTK_SOCKET (widget);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
if (socket->plug_widget)
|
|
|
|
return gtk_widget_child_focus (socket->plug_widget, direction);
|
|
|
|
|
2003-11-20 15:03:27 +00:00
|
|
|
if (!gtk_widget_is_focus (widget))
|
2001-04-19 20:36:46 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_focus (socket, direction);
|
|
|
|
_gtk_socket_claim_focus (socket, FALSE);
|
2001-04-19 20:36:46 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
1998-11-24 04:45:29 +00:00
|
|
|
}
|
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
static void
|
|
|
|
gtk_socket_remove (GtkContainer *container,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
GtkSocket *socket = GTK_SOCKET (container);
|
|
|
|
|
|
|
|
g_return_if_fail (child == socket->plug_widget);
|
|
|
|
|
2001-07-05 02:58:34 +00:00
|
|
|
_gtk_plug_remove_from_socket (GTK_PLUG (socket->plug_widget), socket);
|
2001-07-03 14:14:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_socket_forall (GtkContainer *container,
|
|
|
|
gboolean include_internals,
|
|
|
|
GtkCallback callback,
|
|
|
|
gpointer callback_data)
|
|
|
|
{
|
|
|
|
GtkSocket *socket = GTK_SOCKET (container);
|
|
|
|
|
|
|
|
if (socket->plug_widget)
|
|
|
|
(* callback) (socket->plug_widget, callback_data);
|
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_add_window:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
* @xid: the native identifier for a window
|
|
|
|
* @need_reparent: whether the socket's plug's window needs to be
|
|
|
|
* reparented to the socket
|
|
|
|
*
|
|
|
|
* Adds a window to a GtkSocket.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_add_window (GtkSocket *socket,
|
|
|
|
GdkNativeWindow xid,
|
|
|
|
gboolean need_reparent)
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
2001-07-03 14:14:30 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (socket);
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
GdkDisplay *display = gtk_widget_get_display (widget);
|
2001-07-03 14:14:30 +00:00
|
|
|
gpointer user_data = NULL;
|
|
|
|
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
socket->plug_window = gdk_window_lookup_for_display (display, xid);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
if (socket->plug_window)
|
|
|
|
{
|
|
|
|
g_object_ref (socket->plug_window);
|
|
|
|
gdk_window_get_user_data (socket->plug_window, &user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_data) /* A widget's window in this process */
|
|
|
|
{
|
|
|
|
GtkWidget *child_widget = user_data;
|
|
|
|
|
|
|
|
if (!GTK_IS_PLUG (child_widget))
|
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
g_warning (G_STRLOC ": Can't add non-GtkPlug to GtkSocket");
|
2001-07-03 14:14:30 +00:00
|
|
|
socket->plug_window = NULL;
|
|
|
|
gdk_error_trap_pop ();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_gtk_plug_add_to_socket (GTK_PLUG (child_widget), socket);
|
|
|
|
}
|
|
|
|
else /* A foreign window */
|
1998-11-24 04:45:29 +00:00
|
|
|
{
|
|
|
|
GtkWidget *toplevel;
|
|
|
|
GdkDragProtocol protocol;
|
1999-02-21 19:25:53 +00:00
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
2001-07-03 14:14:30 +00:00
|
|
|
|
|
|
|
if (!socket->plug_window)
|
|
|
|
{
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
socket->plug_window = gdk_window_foreign_new_for_display (display, xid);
|
2001-07-03 14:14:30 +00:00
|
|
|
if (!socket->plug_window) /* was deleted before we could get it */
|
|
|
|
{
|
|
|
|
gdk_error_trap_pop ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_select_plug_window_input (socket);
|
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
if (gdk_error_trap_pop ())
|
|
|
|
{
|
2002-10-13 19:34:42 +00:00
|
|
|
g_object_unref (socket->plug_window);
|
2001-07-03 14:14:30 +00:00
|
|
|
socket->plug_window = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* OK, we now will reliably get destroy notification on socket->plug_window */
|
|
|
|
|
|
|
|
gdk_error_trap_push ();
|
|
|
|
|
|
|
|
if (need_reparent)
|
|
|
|
{
|
|
|
|
gdk_window_hide (socket->plug_window); /* Shouldn't actually be necessary for XEMBED, but just in case */
|
|
|
|
gdk_window_reparent (socket->plug_window, widget->window, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
socket->have_size = FALSE;
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_embed_get_info (socket);
|
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
socket->need_map = socket->is_mapped;
|
|
|
|
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
if (gdk_drag_get_protocol_for_display (display, xid, &protocol))
|
1998-11-24 04:45:29 +00:00
|
|
|
gtk_drag_dest_set_proxy (GTK_WIDGET (socket), socket->plug_window,
|
|
|
|
protocol, TRUE);
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
|
|
|
|
gdk_display_sync (display);
|
1999-02-21 19:25:53 +00:00
|
|
|
gdk_error_trap_pop ();
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
gdk_window_add_filter (socket->plug_window,
|
|
|
|
_gtk_socket_windowing_filter_func,
|
|
|
|
socket);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
|
|
|
/* Add a pointer to the socket on our toplevel window */
|
|
|
|
|
|
|
|
toplevel = gtk_widget_get_toplevel (GTK_WIDGET (socket));
|
|
|
|
if (toplevel && GTK_IS_WINDOW (toplevel))
|
2001-07-03 14:14:30 +00:00
|
|
|
gtk_window_add_embedded_xid (GTK_WINDOW (toplevel), xid);
|
2001-04-19 20:36:46 +00:00
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_embed_notify (socket);
|
|
|
|
|
2002-06-06 15:38:39 +00:00
|
|
|
socket_update_active (socket);
|
|
|
|
socket_update_focus_in (socket);
|
|
|
|
|
2001-04-19 20:36:46 +00:00
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (socket));
|
|
|
|
}
|
2001-07-05 02:58:34 +00:00
|
|
|
|
|
|
|
if (socket->plug_window)
|
2002-10-13 19:34:42 +00:00
|
|
|
g_signal_emit (socket, socket_signals[PLUG_ADDED], 0);
|
2001-04-19 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_handle_map_request:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
*
|
|
|
|
* Called from the GtkSocket backend when the plug has been mapped.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_handle_map_request (GtkSocket *socket)
|
2001-07-03 14:14:30 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
if (!socket->is_mapped)
|
2001-07-03 14:14:30 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
socket->is_mapped = TRUE;
|
|
|
|
socket->need_map = TRUE;
|
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (socket));
|
2001-07-03 14:14:30 +00:00
|
|
|
}
|
2005-07-21 13:31:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gtk_socket_unmap_notify:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
*
|
|
|
|
* Called from the GtkSocket backend when the plug has been unmapped ???
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_unmap_notify (GtkSocket *socket)
|
|
|
|
{
|
|
|
|
if (socket->is_mapped)
|
2001-07-03 14:14:30 +00:00
|
|
|
{
|
2005-07-21 13:31:03 +00:00
|
|
|
socket->is_mapped = FALSE;
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (socket));
|
2001-07-03 14:14:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-21 13:31:03 +00:00
|
|
|
/**
|
|
|
|
* _gtk_socket_advance_toplevel_focus:
|
|
|
|
*
|
|
|
|
* @socket: a #GtkSocket
|
|
|
|
* @direction: a direction
|
|
|
|
*
|
|
|
|
* Called from the GtkSocket backend when the corresponding plug
|
|
|
|
* has told the socket to move the focus.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gtk_socket_advance_toplevel_focus (GtkSocket *socket,
|
|
|
|
GtkDirectionType direction)
|
2003-08-25 21:46:57 +00:00
|
|
|
{
|
|
|
|
GtkBin *bin;
|
|
|
|
GtkWindow *window;
|
|
|
|
GtkContainer *container;
|
|
|
|
GtkWidget *toplevel;
|
|
|
|
GtkWidget *old_focus_child;
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
toplevel = gtk_widget_get_toplevel (GTK_WIDGET (socket));
|
|
|
|
if (!toplevel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_TOPLEVEL (toplevel) || GTK_IS_PLUG (toplevel))
|
|
|
|
{
|
|
|
|
gtk_widget_child_focus (toplevel,direction);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
container = GTK_CONTAINER (toplevel);
|
|
|
|
window = GTK_WINDOW (toplevel);
|
|
|
|
bin = GTK_BIN (toplevel);
|
|
|
|
|
|
|
|
/* This is a copy of gtk_window_focus(), modified so that we
|
|
|
|
* can detect wrap-around.
|
|
|
|
*/
|
|
|
|
old_focus_child = container->focus_child;
|
|
|
|
|
|
|
|
if (old_focus_child)
|
|
|
|
{
|
|
|
|
if (gtk_widget_child_focus (old_focus_child, direction))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* We are allowed exactly one wrap-around per sequence of focus
|
|
|
|
* events
|
|
|
|
*/
|
2005-07-21 13:31:03 +00:00
|
|
|
if (_gtk_socket_windowing_embed_get_focus_wrapped ())
|
2003-08-25 21:46:57 +00:00
|
|
|
return;
|
|
|
|
else
|
2005-07-21 13:31:03 +00:00
|
|
|
_gtk_socket_windowing_embed_set_focus_wrapped ();
|
2003-08-25 21:46:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (window->focus_widget)
|
|
|
|
{
|
|
|
|
/* Wrapped off the end, clear the focus setting for the toplevel */
|
|
|
|
parent = window->focus_widget->parent;
|
|
|
|
while (parent)
|
|
|
|
{
|
|
|
|
gtk_container_set_focus_child (GTK_CONTAINER (parent), NULL);
|
|
|
|
parent = GTK_WIDGET (parent)->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_window_set_focus (GTK_WINDOW (container), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now try to focus the first widget in the window */
|
|
|
|
if (bin->child)
|
|
|
|
{
|
|
|
|
if (gtk_widget_child_focus (bin->child, direction))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#define __GTK_SOCKET_C__
|
|
|
|
#include "gtkaliasdef.c"
|