summaryrefslogtreecommitdiff
path: root/gtk/gtkoffscreenwindow.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2016-10-25 09:54:37 +0200
committerAlexander Larsson <alexl@redhat.com>2016-10-25 09:54:37 +0200
commit70935f09526ba9f1d0b2f6af10e18712df73eda9 (patch)
tree5faccfc562bcf8dee34ebbd6424d86f31af236c5 /gtk/gtkoffscreenwindow.c
parent639898000e8e1f8bf1a72b778978a2c8e30c2d9b (diff)
downloadgtk+-70935f09526ba9f1d0b2f6af10e18712df73eda9.tar.gz
Drop support for offscreen GdkWindowswip/alexl/no-offscreen
These complicate a lot of GdkWindow internals to implement features that not a lot of apps use, and will be better achieved using gsk. So, we just drop it all.
Diffstat (limited to 'gtk/gtkoffscreenwindow.c')
-rw-r--r--gtk/gtkoffscreenwindow.c308
1 files changed, 0 insertions, 308 deletions
diff --git a/gtk/gtkoffscreenwindow.c b/gtk/gtkoffscreenwindow.c
deleted file mode 100644
index 1c6204c27f..0000000000
--- a/gtk/gtkoffscreenwindow.c
+++ /dev/null
@@ -1,308 +0,0 @@
-/*
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
- *
- * Authors: Cody Russell <crussell@canonical.com>
- * Alexander Larsson <alexl@redhat.com>
- */
-
-#include "config.h"
-
-#include "gtkoffscreenwindow.h"
-#include "gtkwidgetprivate.h"
-#include "gtkcontainerprivate.h"
-#include "gtkprivate.h"
-
-/**
- * SECTION:gtkoffscreenwindow
- * @short_description: A toplevel to manage offscreen rendering of child widgets
- * @title: GtkOffscreenWindow
- *
- * GtkOffscreenWindow is strictly intended to be used for obtaining
- * snapshots of widgets that are not part of a normal widget hierarchy.
- * Since #GtkOffscreenWindow is a toplevel widget you cannot obtain
- * snapshots of a full window with it since you cannot pack a toplevel
- * widget in another toplevel.
- *
- * The idea is to take a widget and manually set the state of it,
- * add it to a GtkOffscreenWindow and then retrieve the snapshot
- * as a #cairo_surface_t or #GdkPixbuf.
- *
- * GtkOffscreenWindow derives from #GtkWindow only as an implementation
- * detail. Applications should not use any API specific to #GtkWindow
- * to operate on this object. It should be treated as a #GtkBin that
- * has no parent widget.
- *
- * When contained offscreen widgets are redrawn, GtkOffscreenWindow
- * will emit a #GtkWidget::damage-event signal.
- */
-
-G_DEFINE_TYPE (GtkOffscreenWindow, gtk_offscreen_window, GTK_TYPE_WINDOW);
-
-static void
-gtk_offscreen_window_measure (GtkWidget *widget,
- GtkOrientation orientation,
- int for_size,
- int *minimum,
- int *natural,
- int *minimum_baseline,
- int *natural_baseline)
-{
- GtkBin *bin = GTK_BIN (widget);
- GtkWidget *child = gtk_bin_get_child (bin);
- int default_size;
-
- *minimum = 0;
- *natural = 0;
-
- if (child != NULL && gtk_widget_get_visible (child))
- {
- int child_min, child_nat;
-
- gtk_widget_measure (child, orientation, for_size, &child_min, &child_nat, NULL, NULL);
- *minimum += child_min;
- *natural += child_nat;
- }
-
- if (orientation == GTK_ORIENTATION_HORIZONTAL)
- gtk_window_get_default_size (GTK_WINDOW (widget), &default_size, NULL);
- else
- gtk_window_get_default_size (GTK_WINDOW (widget), NULL, &default_size);
-
- *minimum = MAX (*minimum, default_size);
- *natural = MAX (*natural, default_size);
-}
-
-static void
-gtk_offscreen_window_size_allocate (GtkWidget *widget,
- GtkAllocation *allocation)
-{
- GtkBin *bin = GTK_BIN (widget);
- GtkWidget *child;
-
- gtk_widget_set_allocation (widget, allocation);
-
- if (gtk_widget_get_realized (widget))
- gdk_window_move_resize (gtk_widget_get_window (widget),
- allocation->x,
- allocation->y,
- allocation->width,
- allocation->height);
-
- child = gtk_bin_get_child (bin);
-
- if (child != NULL && gtk_widget_get_visible (child))
- {
- GtkAllocation child_alloc;
-
- child_alloc.x = 0;
- child_alloc.y = 0;
- child_alloc.width = allocation->width;
- child_alloc.height = allocation->height;
-
- gtk_widget_size_allocate (child, &child_alloc);
- }
-
- gtk_widget_queue_draw (widget);
-}
-
-static void
-gtk_offscreen_window_realize (GtkWidget *widget)
-{
- GtkAllocation allocation;
- GtkBin *bin;
- GtkWidget *child;
- GdkWindow *window;
- GdkWindowAttr attributes;
- gint attributes_mask;
-
- bin = GTK_BIN (widget);
-
- gtk_widget_set_realized (widget, TRUE);
-
- gtk_widget_get_allocation (widget, &allocation);
-
- attributes.x = allocation.x;
- attributes.y = allocation.y;
- attributes.width = allocation.width;
- attributes.height = allocation.height;
- attributes.window_type = GDK_WINDOW_OFFSCREEN;
- attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
- attributes.wclass = GDK_INPUT_OUTPUT;
-
- attributes_mask = GDK_WA_X | GDK_WA_Y;
-
- window = gdk_window_new (gtk_widget_get_parent_window (widget),
- &attributes, attributes_mask);
- gtk_widget_set_window (widget, window);
- gtk_widget_register_window (widget, window);
-
- child = gtk_bin_get_child (bin);
- if (child)
- gtk_widget_set_parent_window (child, window);
-}
-
-static void
-gtk_offscreen_window_resize (GtkWidget *widget)
-{
- GtkAllocation allocation = { 0, 0 };
- GtkRequisition requisition;
-
- gtk_widget_get_preferred_size (widget, &requisition, NULL);
-
- allocation.width = requisition.width;
- allocation.height = requisition.height;
- gtk_widget_size_allocate (widget, &allocation);
-}
-
-static void
-move_focus (GtkWidget *widget,
- GtkDirectionType dir)
-{
- gtk_widget_child_focus (widget, dir);
-
- if (!gtk_container_get_focus_child (GTK_CONTAINER (widget)))
- gtk_window_set_focus (GTK_WINDOW (widget), NULL);
-}
-
-static void
-gtk_offscreen_window_show (GtkWidget *widget)
-{
- gboolean need_resize;
-
- _gtk_widget_set_visible_flag (widget, TRUE);
-
- need_resize = _gtk_widget_get_alloc_needed (widget) || !gtk_widget_get_realized (widget);
-
- if (need_resize)
- gtk_offscreen_window_resize (widget);
-
- gtk_widget_map (widget);
-
- /* Try to make sure that we have some focused widget */
- if (!gtk_window_get_focus (GTK_WINDOW (widget)))
- move_focus (widget, GTK_DIR_TAB_FORWARD);
-}
-
-static void
-gtk_offscreen_window_hide (GtkWidget *widget)
-{
- _gtk_widget_set_visible_flag (widget, FALSE);
- gtk_widget_unmap (widget);
-}
-
-static void
-gtk_offscreen_window_check_resize (GtkContainer *container)
-{
- GtkWidget *widget = GTK_WIDGET (container);
-
- if (gtk_widget_get_visible (widget))
- gtk_offscreen_window_resize (widget);
-}
-
-static void
-gtk_offscreen_window_class_init (GtkOffscreenWindowClass *class)
-{
- GtkWidgetClass *widget_class;
- GtkContainerClass *container_class;
-
- widget_class = GTK_WIDGET_CLASS (class);
- container_class = GTK_CONTAINER_CLASS (class);
-
- widget_class->realize = gtk_offscreen_window_realize;
- widget_class->show = gtk_offscreen_window_show;
- widget_class->hide = gtk_offscreen_window_hide;
- widget_class->measure = gtk_offscreen_window_measure;
- widget_class->size_allocate = gtk_offscreen_window_size_allocate;
-
- container_class->check_resize = gtk_offscreen_window_check_resize;
-}
-
-static void
-gtk_offscreen_window_init (GtkOffscreenWindow *window)
-{
-}
-
-/* --- functions --- */
-/**
- * gtk_offscreen_window_new:
- *
- * Creates a toplevel container widget that is used to retrieve
- * snapshots of widgets without showing them on the screen.
- *
- * Returns: A pointer to a #GtkWidget
- *
- * Since: 2.20
- */
-GtkWidget *
-gtk_offscreen_window_new (void)
-{
- return g_object_new (gtk_offscreen_window_get_type (), NULL);
-}
-
-/**
- * gtk_offscreen_window_get_surface:
- * @offscreen: the #GtkOffscreenWindow contained widget.
- *
- * Retrieves a snapshot of the contained widget in the form of
- * a #cairo_surface_t. If you need to keep this around over window
- * resizes then you should add a reference to it.
- *
- * Returns: (nullable) (transfer none): A #cairo_surface_t pointer to the offscreen
- * surface, or %NULL.
- *
- * Since: 2.20
- */
-cairo_surface_t *
-gtk_offscreen_window_get_surface (GtkOffscreenWindow *offscreen)
-{
- g_return_val_if_fail (GTK_IS_OFFSCREEN_WINDOW (offscreen), NULL);
-
- return gdk_offscreen_window_get_surface (gtk_widget_get_window (GTK_WIDGET (offscreen)));
-}
-
-/**
- * gtk_offscreen_window_get_pixbuf:
- * @offscreen: the #GtkOffscreenWindow contained widget.
- *
- * Retrieves a snapshot of the contained widget in the form of
- * a #GdkPixbuf. This is a new pixbuf with a reference count of 1,
- * and the application should unreference it once it is no longer
- * needed.
- *
- * Returns: (nullable) (transfer full): A #GdkPixbuf pointer, or %NULL.
- *
- * Since: 2.20
- */
-GdkPixbuf *
-gtk_offscreen_window_get_pixbuf (GtkOffscreenWindow *offscreen)
-{
- cairo_surface_t *surface;
- GdkPixbuf *pixbuf = NULL;
- GdkWindow *window;
-
- g_return_val_if_fail (GTK_IS_OFFSCREEN_WINDOW (offscreen), NULL);
-
- window = gtk_widget_get_window (GTK_WIDGET (offscreen));
- surface = gdk_offscreen_window_get_surface (window);
-
- if (surface != NULL)
- {
- pixbuf = gdk_pixbuf_get_from_surface (surface,
- 0, 0,
- gdk_window_get_width (window),
- gdk_window_get_height (window));
- }
-
- return pixbuf;
-}