1999-12-08 21:17:53 +00:00
|
|
|
/* GdkPixbuf library - convert X drawable information to RGB
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Michael Zucchi
|
|
|
|
*
|
|
|
|
* Authors: Michael Zucchi <zucchi@zedzone.mmc.com.au>
|
|
|
|
* Cody Russell <bratsche@dfw.net>
|
2000-01-02 03:59:22 +00:00
|
|
|
* Federico Mena-Quintero <federico@gimp.org>
|
1999-12-08 21:17:53 +00:00
|
|
|
*
|
|
|
|
* 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
|
1999-12-08 21:17:53 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
1999-10-07 05:11:27 +00:00
|
|
|
*
|
1999-12-08 21:17:53 +00:00
|
|
|
* 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.
|
1999-11-20 05:39:54 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-12-08 21:17:53 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1999-10-07 05:11:27 +00:00
|
|
|
*/
|
1999-11-13 01:27:21 +00:00
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2010-06-26 05:06:30 +00:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
|
2000-06-21 20:47:22 +00:00
|
|
|
#include "gdkcolor.h"
|
|
|
|
#include "gdkwindow.h"
|
|
|
|
#include "gdkpixbuf.h"
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
#include "gdkinternals.h"
|
2010-07-09 00:34:45 +00:00
|
|
|
|
1999-11-13 01:27:21 +00:00
|
|
|
|
1999-12-08 21:17:53 +00:00
|
|
|
/* Exported functions */
|
1999-10-18 19:29:45 +00:00
|
|
|
|
1999-12-08 21:17:53 +00:00
|
|
|
/**
|
2010-08-28 21:51:58 +00:00
|
|
|
* gdk_pixbuf_get_from_window:
|
2010-10-01 13:38:36 +00:00
|
|
|
* @dest: (allow-none): Destination pixbuf, or %NULL if a new pixbuf
|
|
|
|
* should be created
|
|
|
|
* @window: Source window
|
|
|
|
* @src_x: Source X coordinate within @window
|
|
|
|
* @src_y: Source Y coordinate within @window
|
|
|
|
* @dest_x: Destination X coordinate in @dest, or 0 if @dest is NULL
|
|
|
|
* @dest_y: Destination Y coordinate in @dest, or 0 if @dest is NULL
|
|
|
|
* @width: Width in pixels of region to get
|
|
|
|
* @height: Height in pixels of region to get
|
1999-12-08 21:17:53 +00:00
|
|
|
*
|
2010-10-01 13:38:36 +00:00
|
|
|
* Transfers image data from a #GdkWindow and converts it to an RGB(A)
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
* representation inside a #GdkPixbuf. In other words, copies
|
|
|
|
* image data from a server-side drawable to a client-side RGB(A) buffer.
|
|
|
|
* This allows you to efficiently read individual pixels on the client side.
|
2010-10-01 13:38:36 +00:00
|
|
|
*
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
* If the specified destination pixbuf @dest is %NULL, then this
|
|
|
|
* function will create an RGB pixbuf with 8 bits per channel and no
|
|
|
|
* alpha, with the same size specified by the @width and @height
|
|
|
|
* arguments. In this case, the @dest_x and @dest_y arguments must be
|
|
|
|
* specified as 0. If the specified destination pixbuf is not %NULL
|
|
|
|
* and it contains alpha information, then the filled pixels will be
|
|
|
|
* set to full opacity (alpha = 255).
|
1999-12-08 21:17:53 +00:00
|
|
|
*
|
2010-10-01 13:38:36 +00:00
|
|
|
* If the window is off the screen, then there is no image data in the
|
|
|
|
* obscured/offscreen regions to be placed in the pixbuf. The contents
|
|
|
|
* of portions of the pixbuf corresponding to the offscreen region are
|
|
|
|
* undefined.
|
1999-12-08 21:17:53 +00:00
|
|
|
*
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
* If the window you're obtaining data from is partially obscured by
|
|
|
|
* other windows, then the contents of the pixbuf areas corresponding
|
|
|
|
* to the obscured regions are undefined.
|
2010-10-01 13:38:36 +00:00
|
|
|
*
|
|
|
|
* If the window is not mapped (typically because it's iconified/minimized
|
|
|
|
* or not on the current workspace), then %NULL will be returned.
|
1999-12-08 21:17:53 +00:00
|
|
|
*
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
* If memory can't be allocated for the return value, %NULL will be returned
|
|
|
|
* instead.
|
1999-12-08 21:17:53 +00:00
|
|
|
*
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
* (In short, there are several ways this function can fail, and if it fails
|
|
|
|
* it returns %NULL; so check the return value.)
|
|
|
|
*
|
2010-10-01 13:38:36 +00:00
|
|
|
* Return value: The same pixbuf as @dest if it was non-%NULL, or a
|
|
|
|
* newly-created pixbuf with a reference count of 1 if no destinatio
|
|
|
|
* pixbuf was specified, or %NULL on error
|
1999-12-08 21:17:53 +00:00
|
|
|
**/
|
1999-10-18 19:29:45 +00:00
|
|
|
GdkPixbuf *
|
2010-08-28 21:51:58 +00:00
|
|
|
gdk_pixbuf_get_from_window (GdkPixbuf *dest,
|
|
|
|
GdkWindow *src,
|
|
|
|
int src_x, int src_y,
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
int width, int height)
|
1999-10-07 05:11:27 +00:00
|
|
|
{
|
2010-07-13 19:39:16 +00:00
|
|
|
cairo_surface_t *surface;
|
2000-11-01 07:07:46 +00:00
|
|
|
|
2010-08-28 21:51:58 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (src), NULL);
|
|
|
|
g_return_val_if_fail (gdk_window_is_viewable (src), NULL);
|
2000-06-21 23:29:51 +00:00
|
|
|
|
|
|
|
if (!dest)
|
|
|
|
g_return_val_if_fail (dest_x == 0 && dest_y == 0, NULL);
|
|
|
|
else
|
|
|
|
{
|
2010-06-26 05:06:30 +00:00
|
|
|
g_return_val_if_fail (gdk_pixbuf_get_colorspace (dest) == GDK_COLORSPACE_RGB, NULL);
|
|
|
|
g_return_val_if_fail (gdk_pixbuf_get_n_channels (dest) == 3 ||
|
|
|
|
gdk_pixbuf_get_n_channels (dest) == 4, NULL);
|
|
|
|
g_return_val_if_fail (gdk_pixbuf_get_bits_per_sample (dest) == 8, NULL);
|
2000-06-21 23:29:51 +00:00
|
|
|
}
|
|
|
|
|
2010-07-13 19:39:16 +00:00
|
|
|
surface = _gdk_drawable_ref_cairo_surface (src);
|
|
|
|
dest = gdk_pixbuf_get_from_surface (dest,
|
|
|
|
surface,
|
|
|
|
src_x, src_y,
|
|
|
|
dest_x, dest_y,
|
|
|
|
width, height);
|
|
|
|
cairo_surface_destroy (surface);
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2010-07-13 17:44:41 +00:00
|
|
|
static cairo_format_t
|
|
|
|
gdk_cairo_format_for_content (cairo_content_t content)
|
|
|
|
{
|
|
|
|
switch (content)
|
|
|
|
{
|
|
|
|
case CAIRO_CONTENT_COLOR:
|
|
|
|
return CAIRO_FORMAT_RGB24;
|
|
|
|
case CAIRO_CONTENT_ALPHA:
|
|
|
|
return CAIRO_FORMAT_A8;
|
|
|
|
case CAIRO_CONTENT_COLOR_ALPHA:
|
|
|
|
default:
|
|
|
|
return CAIRO_FORMAT_ARGB32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static cairo_surface_t *
|
|
|
|
gdk_cairo_surface_coerce_to_image (cairo_surface_t *surface,
|
|
|
|
cairo_content_t content,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
cairo_surface_t *copy;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
if (cairo_surface_get_type (surface) == CAIRO_SURFACE_TYPE_IMAGE &&
|
|
|
|
cairo_surface_get_content (surface) == content &&
|
|
|
|
cairo_image_surface_get_width (surface) >= width &&
|
|
|
|
cairo_image_surface_get_height (surface) >= height)
|
|
|
|
return cairo_surface_reference (surface);
|
|
|
|
|
|
|
|
copy = cairo_image_surface_create (gdk_cairo_format_for_content (content),
|
|
|
|
width,
|
|
|
|
height);
|
|
|
|
|
|
|
|
cr = cairo_create (copy);
|
|
|
|
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
|
|
|
cairo_set_source_surface (cr, surface, 0, 0);
|
|
|
|
cairo_paint (cr);
|
|
|
|
cairo_destroy (cr);
|
|
|
|
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
convert_alpha (guchar *dest_data,
|
|
|
|
int dest_stride,
|
|
|
|
guchar *src_data,
|
|
|
|
int src_stride,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int dest_x,
|
|
|
|
int dest_y,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
dest_data += dest_stride * dest_y + dest_x * 4;
|
|
|
|
src_data += src_stride * src_y + src_x * 4;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
guint32 *src = (guint32 *) src_data;
|
|
|
|
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
guint alpha = src[x] >> 24;
|
|
|
|
|
|
|
|
if (alpha == 0)
|
|
|
|
{
|
|
|
|
dest_data[x * 4 + 0] = 0;
|
|
|
|
dest_data[x * 4 + 1] = 0;
|
|
|
|
dest_data[x * 4 + 2] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dest_data[x * 4 + 0] = (((src[x] & 0xff0000) >> 16) * 255 + alpha / 2) / alpha;
|
|
|
|
dest_data[x * 4 + 1] = (((src[x] & 0x00ff00) >> 8) * 255 + alpha / 2) / alpha;
|
|
|
|
dest_data[x * 4 + 2] = (((src[x] & 0x0000ff) >> 0) * 255 + alpha / 2) / alpha;
|
|
|
|
}
|
|
|
|
dest_data[x * 4 + 3] = alpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
src_data += src_stride;
|
|
|
|
dest_data += dest_stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
convert_no_alpha (guchar *dest_data,
|
|
|
|
int dest_stride,
|
|
|
|
guchar *src_data,
|
|
|
|
int src_stride,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int dest_x,
|
|
|
|
int dest_y,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
dest_data += dest_stride * dest_y + dest_x * 3;
|
|
|
|
src_data += src_stride * src_y + src_x * 4;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
guint32 *src = (guint32 *) src_data;
|
|
|
|
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
dest_data[x * 3 + 0] = src[x] >> 16;
|
|
|
|
dest_data[x * 3 + 1] = src[x] >> 8;
|
|
|
|
dest_data[x * 3 + 2] = src[x];
|
|
|
|
}
|
|
|
|
|
|
|
|
src_data += src_stride;
|
|
|
|
dest_data += dest_stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_pixbuf_get_from_surface:
|
2010-10-01 13:38:36 +00:00
|
|
|
* @dest: (allow-none): Destination pixbuf, or %NULL if a new pixbuf
|
|
|
|
* should be created
|
2010-07-13 17:44:41 +00:00
|
|
|
* @surface: surface to copy from
|
2010-10-01 13:38:36 +00:00
|
|
|
* @src_x: Source X coordinate within @surface
|
|
|
|
* @src_y: Source Y coordinate within @surface
|
|
|
|
* @dest_x: Destination X coordinate in @dest, or 0 if @dest is NULL
|
|
|
|
* @dest_y: Destination Y coordinate in @dest, or 0 if @dest is NULL
|
|
|
|
* @width: Width in pixels of region to get
|
|
|
|
* @height: Height in pixels of region to get
|
2010-07-13 17:44:41 +00:00
|
|
|
*
|
|
|
|
* Transfers image data from a #cairo_surface_t and converts it to an RGB(A)
|
2010-10-01 13:38:36 +00:00
|
|
|
* representation inside a #GdkPixbuf. This allows you to efficiently read
|
|
|
|
* individual pixels from cairo surfaces. For #GdkWindows, use
|
|
|
|
* gdk_pixbuf_get_from_surface() instead.
|
2010-07-13 17:44:41 +00:00
|
|
|
*
|
2010-10-01 13:38:36 +00:00
|
|
|
* If the specified destination pixbuf @dest is %NULL, then this function
|
|
|
|
* will create an RGB pixbuf with 8 bits per channel. The pixbuf will contain
|
|
|
|
* an alpha channel if the @surface contains one. In this case, the @dest_x
|
|
|
|
* and @dest_y arguments must be specified as 0.
|
2010-07-13 17:44:41 +00:00
|
|
|
*
|
2010-10-01 13:38:36 +00:00
|
|
|
* Return value: The same pixbuf as @dest if it was non-%NULL, or a
|
|
|
|
* newly-created pixbuf with a reference count of 1 if no destination
|
|
|
|
* pixbuf was specified, or %NULL on error
|
2010-07-13 17:44:41 +00:00
|
|
|
**/
|
|
|
|
GdkPixbuf *
|
|
|
|
gdk_pixbuf_get_from_surface (GdkPixbuf *dest,
|
|
|
|
cairo_surface_t *surface,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int dest_x,
|
|
|
|
int dest_y,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
cairo_content_t content;
|
|
|
|
|
|
|
|
/* General sanity checks */
|
|
|
|
g_return_val_if_fail (surface != NULL, NULL);
|
|
|
|
g_return_val_if_fail (src_x >= 0 && src_y >= 0, NULL);
|
|
|
|
g_return_val_if_fail (width > 0 && height > 0, NULL);
|
|
|
|
|
|
|
|
if (!dest)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (dest_x == 0 && dest_y == 0, NULL);
|
2010-10-01 13:38:36 +00:00
|
|
|
|
2010-07-13 17:44:41 +00:00
|
|
|
content = cairo_surface_get_content (surface) | CAIRO_CONTENT_COLOR;
|
2010-10-01 13:38:36 +00:00
|
|
|
dest = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
|
2010-07-13 17:44:41 +00:00
|
|
|
!!(content & CAIRO_CONTENT_ALPHA),
|
|
|
|
8,
|
|
|
|
width, height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (gdk_pixbuf_get_colorspace (dest) == GDK_COLORSPACE_RGB, NULL);
|
|
|
|
g_return_val_if_fail (gdk_pixbuf_get_n_channels (dest) == 3 ||
|
|
|
|
gdk_pixbuf_get_n_channels (dest) == 4, NULL);
|
|
|
|
g_return_val_if_fail (gdk_pixbuf_get_bits_per_sample (dest) == 8, NULL);
|
|
|
|
g_return_val_if_fail (dest_x >= 0 && dest_y >= 0, NULL);
|
|
|
|
g_return_val_if_fail (dest_x + width <= gdk_pixbuf_get_width (dest), NULL);
|
|
|
|
g_return_val_if_fail (dest_y + height <= gdk_pixbuf_get_height (dest), NULL);
|
|
|
|
|
|
|
|
content = gdk_pixbuf_get_has_alpha (dest) ? CAIRO_CONTENT_COLOR_ALPHA : CAIRO_CONTENT_COLOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
surface = gdk_cairo_surface_coerce_to_image (surface, content, src_x + width, src_y + height);
|
|
|
|
cairo_surface_flush (surface);
|
|
|
|
if (cairo_surface_status (surface) || dest == NULL)
|
|
|
|
{
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_pixbuf_get_has_alpha (dest))
|
|
|
|
convert_alpha (gdk_pixbuf_get_pixels (dest),
|
|
|
|
gdk_pixbuf_get_rowstride (dest),
|
|
|
|
cairo_image_surface_get_data (surface),
|
|
|
|
cairo_image_surface_get_stride (surface),
|
|
|
|
src_x, src_y,
|
|
|
|
dest_x, dest_y,
|
|
|
|
width, height);
|
|
|
|
else
|
|
|
|
convert_no_alpha (gdk_pixbuf_get_pixels (dest),
|
|
|
|
gdk_pixbuf_get_rowstride (dest),
|
|
|
|
cairo_image_surface_get_data (surface),
|
|
|
|
cairo_image_surface_get_stride (surface),
|
|
|
|
src_x, src_y,
|
|
|
|
dest_x, dest_y,
|
|
|
|
width, height);
|
|
|
|
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|