2004-08-23 21:22:55 +00:00
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdkx.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <X11/extensions/shape.h>
|
|
|
|
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include "widgets.h"
|
|
|
|
#include "shadow.h"
|
|
|
|
|
|
|
|
#define MAXIMUM_WM_REPARENTING_DEPTH 4
|
|
|
|
#ifndef _
|
|
|
|
#define _(x) (x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static Window
|
|
|
|
find_toplevel_window (Window xid)
|
|
|
|
{
|
|
|
|
Window root, parent, *children;
|
2008-02-26 14:14:40 +00:00
|
|
|
guint nchildren;
|
2004-08-23 21:22:55 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2010-09-10 01:55:28 +00:00
|
|
|
if (XQueryTree (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), xid, &root,
|
2004-08-23 21:22:55 +00:00
|
|
|
&parent, &children, &nchildren) == 0)
|
|
|
|
{
|
|
|
|
g_warning ("Couldn't find window manager window");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root == parent)
|
|
|
|
return xid;
|
|
|
|
|
|
|
|
xid = parent;
|
|
|
|
}
|
|
|
|
while (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
add_border_to_shot (GdkPixbuf *pixbuf)
|
|
|
|
{
|
|
|
|
GdkPixbuf *retval;
|
|
|
|
|
|
|
|
retval = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8,
|
|
|
|
gdk_pixbuf_get_width (pixbuf) + 2,
|
|
|
|
gdk_pixbuf_get_height (pixbuf) + 2);
|
|
|
|
|
|
|
|
/* Fill with solid black */
|
|
|
|
gdk_pixbuf_fill (retval, 0xFF);
|
|
|
|
gdk_pixbuf_copy_area (pixbuf,
|
|
|
|
0, 0,
|
|
|
|
gdk_pixbuf_get_width (pixbuf),
|
|
|
|
gdk_pixbuf_get_height (pixbuf),
|
|
|
|
retval, 1, 1);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
remove_shaped_area (GdkPixbuf *pixbuf,
|
|
|
|
Window window)
|
|
|
|
{
|
|
|
|
GdkPixbuf *retval;
|
|
|
|
XRectangle *rectangles;
|
|
|
|
int rectangle_count, rectangle_order;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
retval = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8,
|
|
|
|
gdk_pixbuf_get_width (pixbuf),
|
|
|
|
gdk_pixbuf_get_height (pixbuf));
|
|
|
|
|
|
|
|
gdk_pixbuf_fill (retval, 0);
|
2010-09-10 01:55:28 +00:00
|
|
|
rectangles = XShapeGetRectangles (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), window,
|
2004-08-23 21:22:55 +00:00
|
|
|
ShapeBounding, &rectangle_count, &rectangle_order);
|
|
|
|
|
|
|
|
for (i = 0; i < rectangle_count; i++)
|
|
|
|
{
|
|
|
|
int y, x;
|
|
|
|
|
|
|
|
for (y = rectangles[i].y; y < rectangles[i].y + rectangles[i].height; y++)
|
|
|
|
{
|
|
|
|
guchar *src_pixels, *dest_pixels;
|
|
|
|
|
|
|
|
src_pixels = gdk_pixbuf_get_pixels (pixbuf) +
|
|
|
|
y * gdk_pixbuf_get_rowstride (pixbuf) +
|
|
|
|
rectangles[i].x * (gdk_pixbuf_get_has_alpha (pixbuf) ? 4 : 3);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (retval) +
|
|
|
|
y * gdk_pixbuf_get_rowstride (retval) +
|
|
|
|
rectangles[i].x * 4;
|
|
|
|
|
|
|
|
for (x = rectangles[i].x; x < rectangles[i].x + rectangles[i].width; x++)
|
|
|
|
{
|
|
|
|
*dest_pixels++ = *src_pixels ++;
|
|
|
|
*dest_pixels++ = *src_pixels ++;
|
|
|
|
*dest_pixels++ = *src_pixels ++;
|
|
|
|
*dest_pixels++ = 255;
|
|
|
|
|
|
|
|
if (gdk_pixbuf_get_has_alpha (pixbuf))
|
|
|
|
src_pixels++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
take_window_shot (Window child,
|
|
|
|
gboolean include_decoration)
|
|
|
|
{
|
|
|
|
GdkWindow *window;
|
|
|
|
Display *disp;
|
|
|
|
Window w, xid;
|
|
|
|
gint x_orig, y_orig;
|
|
|
|
gint x = 0, y = 0;
|
|
|
|
gint width, height;
|
|
|
|
|
|
|
|
GdkPixbuf *tmp, *tmp2;
|
|
|
|
GdkPixbuf *retval;
|
|
|
|
|
2010-09-10 01:55:28 +00:00
|
|
|
disp = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ());
|
2004-08-23 21:22:55 +00:00
|
|
|
w = GDK_ROOT_WINDOW ();
|
|
|
|
|
|
|
|
if (include_decoration)
|
|
|
|
xid = find_toplevel_window (child);
|
|
|
|
else
|
|
|
|
xid = child;
|
|
|
|
|
|
|
|
window = gdk_window_foreign_new (xid);
|
|
|
|
|
2010-09-20 14:55:33 +00:00
|
|
|
width = gdk_window_get_width (window);
|
|
|
|
height = gdk_window_get_height (window);
|
2004-08-23 21:22:55 +00:00
|
|
|
gdk_window_get_origin (window, &x_orig, &y_orig);
|
|
|
|
|
|
|
|
if (x_orig < 0)
|
|
|
|
{
|
|
|
|
x = - x_orig;
|
|
|
|
width = width + x_orig;
|
|
|
|
x_orig = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (y_orig < 0)
|
|
|
|
{
|
|
|
|
y = - y_orig;
|
|
|
|
height = height + y_orig;
|
|
|
|
y_orig = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x_orig + width > gdk_screen_width ())
|
|
|
|
width = gdk_screen_width () - x_orig;
|
|
|
|
|
|
|
|
if (y_orig + height > gdk_screen_height ())
|
|
|
|
height = gdk_screen_height () - y_orig;
|
|
|
|
|
2010-08-28 21:51:58 +00:00
|
|
|
tmp = gdk_pixbuf_get_from_window (NULL, window,
|
|
|
|
x, y, 0, 0, width, height);
|
2004-08-23 21:22:55 +00:00
|
|
|
|
|
|
|
if (include_decoration)
|
|
|
|
tmp2 = remove_shaped_area (tmp, xid);
|
|
|
|
else
|
|
|
|
tmp2 = add_border_to_shot (tmp);
|
|
|
|
|
|
|
|
retval = create_shadowed_pixbuf (tmp2);
|
|
|
|
g_object_unref (tmp);
|
|
|
|
g_object_unref (tmp2);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
GList *toplevels;
|
|
|
|
GdkPixbuf *screenshot = NULL;
|
|
|
|
GList *node;
|
|
|
|
|
|
|
|
/* If there's no DISPLAY, we silently error out. We don't want to break
|
|
|
|
* headless builds. */
|
|
|
|
if (! gtk_init_check (&argc, &argv))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
toplevels = get_all_widgets ();
|
|
|
|
|
|
|
|
for (node = toplevels; node; node = g_list_next (node))
|
|
|
|
{
|
2010-08-15 22:35:56 +00:00
|
|
|
GtkAllocation allocation;
|
2004-08-23 21:22:55 +00:00
|
|
|
GdkWindow *window;
|
|
|
|
WidgetInfo *info;
|
|
|
|
XID id;
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
info = node->data;
|
|
|
|
|
|
|
|
gtk_widget_show (info->window);
|
|
|
|
|
2010-08-15 22:35:56 +00:00
|
|
|
window = gtk_widget_get_window (info->window);
|
|
|
|
gtk_widget_get_allocation (info->window, &allocation);
|
2004-08-23 21:22:55 +00:00
|
|
|
|
|
|
|
gtk_widget_show_now (info->window);
|
2009-10-16 14:40:18 +00:00
|
|
|
gtk_widget_queue_draw_area (info->window,
|
2010-08-15 22:35:56 +00:00
|
|
|
allocation.x, allocation.y,
|
|
|
|
allocation.width, allocation.height);
|
|
|
|
gdk_window_process_updates (window, TRUE);
|
2004-08-23 21:22:55 +00:00
|
|
|
|
|
|
|
while (gtk_events_pending ())
|
|
|
|
{
|
|
|
|
gtk_main_iteration ();
|
|
|
|
}
|
|
|
|
sleep (1);
|
2004-11-16 05:10:18 +00:00
|
|
|
|
2004-08-23 21:22:55 +00:00
|
|
|
while (gtk_events_pending ())
|
|
|
|
{
|
|
|
|
gtk_main_iteration ();
|
|
|
|
}
|
|
|
|
|
|
|
|
id = gdk_x11_drawable_get_xid (GDK_DRAWABLE (window));
|
|
|
|
screenshot = take_window_shot (id, info->include_decorations);
|
|
|
|
filename = g_strdup_printf ("./%s.png", info->name);
|
|
|
|
gdk_pixbuf_save (screenshot, filename, "png", NULL, NULL);
|
|
|
|
g_free(filename);
|
|
|
|
gtk_widget_hide (info->window);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|