mirror of https://github.com/GNOME/gimp.git
332 lines
9.0 KiB
C
332 lines
9.0 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimp-remote-x11.c
|
|
* Copyright (C) 2000-2007 Sven Neumann <sven@gimp.org>
|
|
* Simon Budig <simon@gimp.org>
|
|
*
|
|
* X11 specific routines for gimp-remote.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include <gdk/gdkx.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <X11/Xmu/WinUtil.h>
|
|
|
|
#include "libgimpbase/gimpversion.h"
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include "gimp-remote.h"
|
|
|
|
|
|
#define GIMP_BINARY "gimp-" GIMP_APP_VERSION
|
|
|
|
|
|
static void
|
|
source_selection_get (GtkWidget *widget,
|
|
GtkSelectionData *selection_data,
|
|
guint info,
|
|
guint time,
|
|
const gchar *uri)
|
|
{
|
|
gtk_selection_data_set (selection_data,
|
|
gtk_selection_data_get_target (selection_data),
|
|
8, (const guchar *) uri, strlen (uri));
|
|
gtk_main_quit ();
|
|
}
|
|
|
|
static gboolean
|
|
toolbox_hidden (gpointer data)
|
|
{
|
|
g_printerr ("%s\n%s\n",
|
|
_("Could not connect to GIMP."),
|
|
_("Make sure that the Toolbox is visible!"));
|
|
gtk_main_quit ();
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
GdkWindow *
|
|
gimp_remote_find_toolbox (GdkDisplay *display,
|
|
GdkScreen *screen)
|
|
{
|
|
GdkWindow *result = NULL;
|
|
Display *xdisplay;
|
|
Window root, parent;
|
|
Window *children;
|
|
Atom role_atom;
|
|
Atom string_atom;
|
|
guint nchildren;
|
|
gint i;
|
|
|
|
GdkWindow *root_window = gdk_screen_get_root_window (screen);
|
|
|
|
xdisplay = gdk_x11_display_get_xdisplay (display);
|
|
|
|
role_atom = XInternAtom (xdisplay, "WM_WINDOW_ROLE", TRUE);
|
|
string_atom = XInternAtom (xdisplay, "STRING", TRUE);
|
|
|
|
if (role_atom == None || string_atom == None)
|
|
return NULL;
|
|
|
|
if (XQueryTree (xdisplay, GDK_WINDOW_XID (root_window),
|
|
&root, &parent, &children, &nchildren) == 0)
|
|
return NULL;
|
|
|
|
if (! (children && nchildren))
|
|
return NULL;
|
|
|
|
for (i = nchildren - 1; i >= 0; i--)
|
|
{
|
|
Window window;
|
|
Atom ret_type;
|
|
gint ret_format;
|
|
gulong bytes_after;
|
|
gulong nitems;
|
|
guchar *data;
|
|
|
|
/* The XmuClientWindow() function finds a window at or below the
|
|
* specified window, that has a WM_STATE property. If such a
|
|
* window is found, it is returned; otherwise the argument window
|
|
* is returned.
|
|
*/
|
|
|
|
window = XmuClientWindow (xdisplay, children[i]);
|
|
|
|
/* We are searching for the GIMP toolbox: Its WM_WINDOW_ROLE Property
|
|
* (as set by gtk_window_set_role ()) has the value "gimp-toolbox".
|
|
* This is pretty reliable, since it ask for a special property,
|
|
* explicitly set by GIMP. See below... :-)
|
|
*/
|
|
|
|
if (XGetWindowProperty (xdisplay, window,
|
|
role_atom,
|
|
0, 32,
|
|
FALSE,
|
|
string_atom,
|
|
&ret_type, &ret_format, &nitems, &bytes_after,
|
|
&data) == Success && ret_type)
|
|
{
|
|
if (nitems > 11 &&
|
|
strcmp ((const gchar *) data, "gimp-toolbox") == 0)
|
|
{
|
|
XFree (data);
|
|
result = gdk_window_foreign_new_for_display (display, window);
|
|
break;
|
|
}
|
|
|
|
XFree (data);
|
|
}
|
|
}
|
|
|
|
XFree (children);
|
|
|
|
return result;
|
|
}
|
|
|
|
void
|
|
gimp_remote_launch (GdkScreen *screen,
|
|
const gchar *argv0,
|
|
const gchar *startup_id,
|
|
gboolean no_splash,
|
|
GString *file_list)
|
|
{
|
|
gchar *display_name;
|
|
gchar **argv;
|
|
gchar *gimp, *path, *name, *pwd;
|
|
const gchar *spath;
|
|
gint i;
|
|
|
|
if (startup_id)
|
|
g_setenv ("DESKTOP_STARTUP_ID", startup_id, TRUE);
|
|
|
|
if (file_list->len > 0)
|
|
file_list = g_string_prepend (file_list, "\n");
|
|
|
|
display_name = gdk_screen_make_display_name (screen);
|
|
file_list = g_string_prepend (file_list, display_name);
|
|
file_list = g_string_prepend (file_list, "--display\n");
|
|
g_free (display_name);
|
|
|
|
if (no_splash)
|
|
file_list = g_string_prepend (file_list, "--no-splash\n");
|
|
|
|
file_list = g_string_prepend (file_list, "gimp\n");
|
|
|
|
argv = g_strsplit (file_list->str, "\n", 0);
|
|
|
|
/* We are searching for the path the gimp-remote executable lives in */
|
|
|
|
/*
|
|
* the "_" environment variable usually gets set by the sh-family of
|
|
* shells. We have to sanity-check it. If we do not find anything
|
|
* usable in it try argv[0], then fall back to search the path.
|
|
*/
|
|
|
|
gimp = NULL;
|
|
spath = NULL;
|
|
|
|
for (i = 0; i < 2; i++)
|
|
{
|
|
if (i == 0)
|
|
{
|
|
spath = g_getenv ("_");
|
|
}
|
|
else if (i == 1)
|
|
{
|
|
spath = argv0;
|
|
}
|
|
|
|
if (spath)
|
|
{
|
|
name = g_path_get_basename (spath);
|
|
|
|
if (! strncmp (name, "gimp-remote", 11))
|
|
{
|
|
path = g_path_get_dirname (spath);
|
|
|
|
if (g_path_is_absolute (spath))
|
|
{
|
|
gimp = g_build_filename (path, GIMP_BINARY, NULL);
|
|
}
|
|
else
|
|
{
|
|
pwd = g_get_current_dir ();
|
|
gimp = g_build_filename (pwd, path, GIMP_BINARY, NULL);
|
|
g_free (pwd);
|
|
}
|
|
|
|
g_free (path);
|
|
}
|
|
|
|
g_free (name);
|
|
}
|
|
|
|
if (gimp)
|
|
break;
|
|
}
|
|
|
|
/* We must ensure that gimp is started with a different PID.
|
|
Otherwise it could happen that (when it opens it's display) it sends
|
|
the same auth token again (because that one is uniquified with PID
|
|
and time()), which the server would deny. */
|
|
switch (fork ())
|
|
{
|
|
case -1:
|
|
exit (EXIT_FAILURE);
|
|
|
|
case 0: /* child */
|
|
execv (gimp, argv);
|
|
execvp (GIMP_BINARY, argv);
|
|
|
|
/* if execv and execvp return, there was an error */
|
|
g_printerr (_("Couldn't start '%s': %s"),
|
|
GIMP_BINARY, g_strerror (errno));
|
|
g_printerr ("\n");
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
default: /* parent */
|
|
break;
|
|
}
|
|
|
|
exit (EXIT_SUCCESS);
|
|
}
|
|
|
|
gboolean
|
|
gimp_remote_drop_files (GdkDisplay *display,
|
|
GdkWindow *window,
|
|
GString *file_list)
|
|
{
|
|
GdkDragContext *context;
|
|
GdkDragProtocol protocol;
|
|
GtkWidget *source;
|
|
GdkAtom sel_type;
|
|
GdkAtom sel_id;
|
|
GList *targetlist;
|
|
guint timeout;
|
|
|
|
gdk_drag_get_protocol_for_display (display,
|
|
GDK_WINDOW_XID (window),
|
|
&protocol);
|
|
if (protocol != GDK_DRAG_PROTO_XDND)
|
|
{
|
|
g_printerr ("GIMP Window doesnt use Xdnd-Protocol - huh?\n");
|
|
return FALSE;
|
|
}
|
|
|
|
/* Problem: If the Toolbox is hidden via Tab (gtk_widget_hide)
|
|
* it does not accept DnD-Operations and gtk_main() will not be
|
|
* terminated. If the Toolbox is simply unmapped (by the WM)
|
|
* DnD works. But in both cases gdk_window_is_visible() returns
|
|
* FALSE. To work around this we add a timeout and abort after
|
|
* 5 seconds.
|
|
*/
|
|
|
|
timeout = g_timeout_add (5000, toolbox_hidden, NULL);
|
|
|
|
/* set up an DND-source */
|
|
source = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
g_signal_connect (source, "selection-get",
|
|
G_CALLBACK (source_selection_get),
|
|
file_list->str);
|
|
gtk_widget_realize (source);
|
|
|
|
|
|
/* specify the id and the content-type of the selection used to
|
|
* pass the URIs to GIMP.
|
|
*/
|
|
sel_id = gdk_atom_intern ("XdndSelection", FALSE);
|
|
sel_type = gdk_atom_intern ("text/uri-list", FALSE);
|
|
targetlist = g_list_prepend (NULL, GUINT_TO_POINTER (sel_type));
|
|
|
|
/* assign the selection to our DnD-source */
|
|
gtk_selection_owner_set (source, sel_id, GDK_CURRENT_TIME);
|
|
gtk_selection_add_target (source, sel_id, sel_type, 0);
|
|
|
|
/* drag_begin/motion/drop */
|
|
context = gdk_drag_begin (gtk_widget_get_window (source), targetlist);
|
|
|
|
gdk_drag_motion (context, window, protocol, 0, 0,
|
|
GDK_ACTION_COPY, GDK_ACTION_COPY, GDK_CURRENT_TIME);
|
|
|
|
gdk_drag_drop (context, GDK_CURRENT_TIME);
|
|
|
|
/* finally enter the mainloop to handle the events */
|
|
gtk_main ();
|
|
|
|
g_source_remove (timeout);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
void
|
|
gimp_remote_print_id (GdkWindow *window)
|
|
{
|
|
g_print ("0x%lx\n", GDK_WINDOW_XID (window));
|
|
}
|