2009-01-16 09:39:35 +00:00
|
|
|
/*
|
|
|
|
* gtkoffscreenbox.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "gtkoffscreenbox.h"
|
|
|
|
|
|
|
|
static void gtk_offscreen_box_realize (GtkWidget *widget);
|
|
|
|
static void gtk_offscreen_box_unrealize (GtkWidget *widget);
|
|
|
|
static void gtk_offscreen_box_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_offscreen_box_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
|
|
|
static gboolean gtk_offscreen_box_damage (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event);
|
|
|
|
static gboolean gtk_offscreen_box_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *offscreen);
|
|
|
|
|
|
|
|
static void gtk_offscreen_box_add (GtkContainer *container,
|
|
|
|
GtkWidget *child);
|
|
|
|
static void gtk_offscreen_box_remove (GtkContainer *container,
|
|
|
|
GtkWidget *widget);
|
|
|
|
static void gtk_offscreen_box_forall (GtkContainer *container,
|
|
|
|
gboolean include_internals,
|
|
|
|
GtkCallback callback,
|
|
|
|
gpointer callback_data);
|
|
|
|
static GType gtk_offscreen_box_child_type (GtkContainer *container);
|
|
|
|
|
|
|
|
#define CHILD1_SIZE_SCALE 1.0
|
|
|
|
#define CHILD2_SIZE_SCALE 1.0
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GtkOffscreenBox, gtk_offscreen_box, GTK_TYPE_CONTAINER);
|
|
|
|
|
2009-06-04 18:16:51 +00:00
|
|
|
static void
|
|
|
|
to_child_2 (GtkOffscreenBox *offscreen_box,
|
|
|
|
double widget_x, double widget_y,
|
|
|
|
double *x_out, double *y_out)
|
|
|
|
{
|
|
|
|
GtkAllocation child_area;
|
|
|
|
double x, y, xr, yr;
|
|
|
|
double cos_angle, sin_angle;
|
|
|
|
|
|
|
|
x = widget_x;
|
|
|
|
y = widget_y;
|
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child1, &child_area);
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2010-08-15 22:35:15 +00:00
|
|
|
y -= child_area.height;
|
2009-06-04 18:16:51 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child2, &child_area);
|
2009-06-04 18:16:51 +00:00
|
|
|
|
|
|
|
x -= child_area.width / 2;
|
|
|
|
y -= child_area.height / 2;
|
|
|
|
|
|
|
|
cos_angle = cos (-offscreen_box->angle);
|
|
|
|
sin_angle = sin (-offscreen_box->angle);
|
|
|
|
|
|
|
|
xr = x * cos_angle - y * sin_angle;
|
|
|
|
yr = x * sin_angle + y * cos_angle;
|
|
|
|
x = xr;
|
|
|
|
y = yr;
|
|
|
|
|
|
|
|
x += child_area.width / 2;
|
|
|
|
y += child_area.height / 2;
|
|
|
|
|
|
|
|
*x_out = x;
|
|
|
|
*y_out = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
to_parent_2 (GtkOffscreenBox *offscreen_box,
|
|
|
|
double offscreen_x, double offscreen_y,
|
|
|
|
double *x_out, double *y_out)
|
|
|
|
{
|
|
|
|
GtkAllocation child_area;
|
|
|
|
double x, y, xr, yr;
|
|
|
|
double cos_angle, sin_angle;
|
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child2, &child_area);
|
2009-06-04 18:16:51 +00:00
|
|
|
|
|
|
|
x = offscreen_x;
|
|
|
|
y = offscreen_y;
|
|
|
|
|
|
|
|
x -= child_area.width / 2;
|
|
|
|
y -= child_area.height / 2;
|
|
|
|
|
|
|
|
cos_angle = cos (offscreen_box->angle);
|
|
|
|
sin_angle = sin (offscreen_box->angle);
|
|
|
|
|
|
|
|
xr = x * cos_angle - y * sin_angle;
|
|
|
|
yr = x * sin_angle + y * cos_angle;
|
|
|
|
x = xr;
|
|
|
|
y = yr;
|
|
|
|
|
|
|
|
x += child_area.width / 2;
|
|
|
|
y += child_area.height / 2;
|
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child1, &child_area);
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2010-08-15 22:35:15 +00:00
|
|
|
y += child_area.height;
|
2009-06-04 18:16:51 +00:00
|
|
|
|
|
|
|
*x_out = x;
|
|
|
|
*y_out = y;
|
|
|
|
}
|
|
|
|
|
2009-01-16 09:39:35 +00:00
|
|
|
static void
|
|
|
|
gtk_offscreen_box_class_init (GtkOffscreenBoxClass *klass)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass);
|
|
|
|
|
|
|
|
widget_class->realize = gtk_offscreen_box_realize;
|
|
|
|
widget_class->unrealize = gtk_offscreen_box_unrealize;
|
|
|
|
widget_class->size_request = gtk_offscreen_box_size_request;
|
|
|
|
widget_class->size_allocate = gtk_offscreen_box_size_allocate;
|
|
|
|
widget_class->expose_event = gtk_offscreen_box_expose;
|
|
|
|
|
|
|
|
g_signal_override_class_closure (g_signal_lookup ("damage-event", GTK_TYPE_WIDGET),
|
|
|
|
GTK_TYPE_OFFSCREEN_BOX,
|
|
|
|
g_cclosure_new (G_CALLBACK (gtk_offscreen_box_damage),
|
|
|
|
NULL, NULL));
|
|
|
|
|
|
|
|
container_class->add = gtk_offscreen_box_add;
|
|
|
|
container_class->remove = gtk_offscreen_box_remove;
|
|
|
|
container_class->forall = gtk_offscreen_box_forall;
|
|
|
|
container_class->child_type = gtk_offscreen_box_child_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_init (GtkOffscreenBox *offscreen_box)
|
|
|
|
{
|
2010-03-06 10:29:31 +00:00
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (offscreen_box), TRUE);
|
2009-01-16 09:39:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gtk_offscreen_box_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_OFFSCREEN_BOX, NULL);
|
|
|
|
}
|
|
|
|
|
2009-06-04 18:16:51 +00:00
|
|
|
static GdkWindow *
|
|
|
|
pick_offscreen_child (GdkWindow *offscreen_window,
|
|
|
|
double widget_x, double widget_y,
|
|
|
|
GtkOffscreenBox *offscreen_box)
|
|
|
|
{
|
|
|
|
GtkAllocation child_area;
|
|
|
|
double x, y;
|
|
|
|
|
|
|
|
/* First check for child 2 */
|
|
|
|
if (offscreen_box->child2 &&
|
2010-03-01 06:47:38 +00:00
|
|
|
gtk_widget_get_visible (offscreen_box->child2))
|
2009-06-04 18:16:51 +00:00
|
|
|
{
|
|
|
|
to_child_2 (offscreen_box,
|
|
|
|
widget_x, widget_y,
|
|
|
|
&x, &y);
|
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child2, &child_area);
|
2009-06-04 18:16:51 +00:00
|
|
|
|
|
|
|
if (x >= 0 && x < child_area.width &&
|
|
|
|
y >= 0 && y < child_area.height)
|
|
|
|
return offscreen_box->offscreen_window2;
|
|
|
|
}
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2009-06-04 18:16:51 +00:00
|
|
|
{
|
|
|
|
x = widget_x;
|
|
|
|
y = widget_y;
|
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child1, &child_area);
|
2009-06-04 18:16:51 +00:00
|
|
|
|
|
|
|
if (x >= 0 && x < child_area.width &&
|
|
|
|
y >= 0 && y < child_area.height)
|
|
|
|
return offscreen_box->offscreen_window1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
offscreen_window_to_parent1 (GdkWindow *offscreen_window,
|
|
|
|
double offscreen_x,
|
|
|
|
double offscreen_y,
|
|
|
|
double *parent_x,
|
|
|
|
double *parent_y,
|
|
|
|
GtkOffscreenBox *offscreen_box)
|
|
|
|
{
|
|
|
|
*parent_x = offscreen_x;
|
|
|
|
*parent_y = offscreen_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
offscreen_window_from_parent1 (GdkWindow *window,
|
|
|
|
double parent_x,
|
|
|
|
double parent_y,
|
|
|
|
double *offscreen_x,
|
|
|
|
double *offscreen_y,
|
|
|
|
GtkOffscreenBox *offscreen_box)
|
|
|
|
{
|
|
|
|
*offscreen_x = parent_x;
|
|
|
|
*offscreen_y = parent_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
offscreen_window_to_parent2 (GdkWindow *offscreen_window,
|
|
|
|
double offscreen_x,
|
|
|
|
double offscreen_y,
|
|
|
|
double *parent_x,
|
|
|
|
double *parent_y,
|
|
|
|
GtkOffscreenBox *offscreen_box)
|
|
|
|
{
|
|
|
|
to_parent_2 (offscreen_box,
|
|
|
|
offscreen_x, offscreen_y,
|
|
|
|
parent_x, parent_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
offscreen_window_from_parent2 (GdkWindow *window,
|
|
|
|
double parent_x,
|
|
|
|
double parent_y,
|
|
|
|
double *offscreen_x,
|
|
|
|
double *offscreen_y,
|
|
|
|
GtkOffscreenBox *offscreen_box)
|
|
|
|
{
|
|
|
|
to_child_2 (offscreen_box,
|
|
|
|
parent_x, parent_y,
|
|
|
|
offscreen_x, offscreen_y);
|
|
|
|
}
|
|
|
|
|
2009-01-16 09:39:35 +00:00
|
|
|
static void
|
|
|
|
gtk_offscreen_box_realize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (widget);
|
2010-08-15 22:35:15 +00:00
|
|
|
GtkAllocation allocation, child_area;
|
|
|
|
GtkStyle *style;
|
|
|
|
GdkWindow *window;
|
2009-01-16 09:39:35 +00:00
|
|
|
GdkWindowAttr attributes;
|
|
|
|
gint attributes_mask;
|
2010-06-02 04:28:22 +00:00
|
|
|
guint border_width;
|
2009-01-16 09:39:35 +00:00
|
|
|
GtkRequisition child_requisition;
|
|
|
|
int start_y = 0;
|
|
|
|
|
2010-03-06 10:51:33 +00:00
|
|
|
gtk_widget_set_realized (widget, TRUE);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
|
|
|
|
|
|
|
attributes.x = allocation.x + border_width;
|
|
|
|
attributes.y = allocation.y + border_width;
|
|
|
|
attributes.width = allocation.width - 2 * border_width;
|
|
|
|
attributes.height = allocation.height - 2 * border_width;
|
2009-01-16 09:39:35 +00:00
|
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
|
|
|
attributes.event_mask = gtk_widget_get_events (widget)
|
|
|
|
| GDK_EXPOSURE_MASK
|
|
|
|
| GDK_POINTER_MOTION_MASK
|
|
|
|
| GDK_BUTTON_PRESS_MASK
|
|
|
|
| GDK_BUTTON_RELEASE_MASK
|
|
|
|
| GDK_SCROLL_MASK
|
|
|
|
| GDK_ENTER_NOTIFY_MASK
|
|
|
|
| GDK_LEAVE_NOTIFY_MASK;
|
|
|
|
|
|
|
|
attributes.visual = gtk_widget_get_visual (widget);
|
|
|
|
attributes.wclass = GDK_INPUT_OUTPUT;
|
|
|
|
|
2010-08-28 16:05:47 +00:00
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
window = gdk_window_new (gtk_widget_get_parent_window (widget),
|
|
|
|
&attributes, attributes_mask);
|
|
|
|
gtk_widget_set_window (widget, window);
|
|
|
|
gdk_window_set_user_data (window, widget);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
g_signal_connect (window, "pick-embedded-child",
|
2009-06-04 18:16:51 +00:00
|
|
|
G_CALLBACK (pick_offscreen_child), offscreen_box);
|
|
|
|
|
2009-01-16 09:39:35 +00:00
|
|
|
attributes.window_type = GDK_WINDOW_OFFSCREEN;
|
2009-06-04 18:16:51 +00:00
|
|
|
|
2009-01-16 09:39:35 +00:00
|
|
|
/* Child 1 */
|
|
|
|
attributes.x = attributes.y = 0;
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child1, &child_area);
|
|
|
|
|
|
|
|
attributes.width = child_area.width;
|
|
|
|
attributes.height = child_area.height;
|
|
|
|
start_y += child_area.height;
|
2009-01-16 09:39:35 +00:00
|
|
|
}
|
2009-06-04 06:05:51 +00:00
|
|
|
offscreen_box->offscreen_window1 = gdk_window_new (gtk_widget_get_root_window (widget),
|
2009-01-16 09:39:35 +00:00
|
|
|
&attributes, attributes_mask);
|
|
|
|
gdk_window_set_user_data (offscreen_box->offscreen_window1, widget);
|
|
|
|
if (offscreen_box->child1)
|
|
|
|
gtk_widget_set_parent_window (offscreen_box->child1, offscreen_box->offscreen_window1);
|
|
|
|
|
2009-07-01 12:36:36 +00:00
|
|
|
gdk_offscreen_window_set_embedder (offscreen_box->offscreen_window1,
|
2010-08-15 22:35:15 +00:00
|
|
|
window);
|
|
|
|
|
2009-07-01 12:36:36 +00:00
|
|
|
g_signal_connect (offscreen_box->offscreen_window1, "to-embedder",
|
2009-06-04 18:16:51 +00:00
|
|
|
G_CALLBACK (offscreen_window_to_parent1), offscreen_box);
|
2009-07-01 12:36:36 +00:00
|
|
|
g_signal_connect (offscreen_box->offscreen_window1, "from-embedder",
|
2009-06-04 18:16:51 +00:00
|
|
|
G_CALLBACK (offscreen_window_from_parent1), offscreen_box);
|
|
|
|
|
2009-01-16 09:39:35 +00:00
|
|
|
/* Child 2 */
|
|
|
|
attributes.y = start_y;
|
|
|
|
child_requisition.width = child_requisition.height = 0;
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child2 && gtk_widget_get_visible (offscreen_box->child2))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child2, &child_area);
|
|
|
|
|
|
|
|
attributes.width = child_area.width;
|
|
|
|
attributes.height = child_area.height;
|
2009-01-16 09:39:35 +00:00
|
|
|
}
|
2009-06-04 06:05:51 +00:00
|
|
|
offscreen_box->offscreen_window2 = gdk_window_new (gtk_widget_get_root_window (widget),
|
2009-01-16 09:39:35 +00:00
|
|
|
&attributes, attributes_mask);
|
|
|
|
gdk_window_set_user_data (offscreen_box->offscreen_window2, widget);
|
|
|
|
if (offscreen_box->child2)
|
|
|
|
gtk_widget_set_parent_window (offscreen_box->child2, offscreen_box->offscreen_window2);
|
2009-07-01 12:36:36 +00:00
|
|
|
gdk_offscreen_window_set_embedder (offscreen_box->offscreen_window2,
|
2010-08-15 22:35:15 +00:00
|
|
|
window);
|
2009-07-01 12:36:36 +00:00
|
|
|
g_signal_connect (offscreen_box->offscreen_window2, "to-embedder",
|
2009-06-04 18:16:51 +00:00
|
|
|
G_CALLBACK (offscreen_window_to_parent2), offscreen_box);
|
2009-07-01 12:36:36 +00:00
|
|
|
g_signal_connect (offscreen_box->offscreen_window2, "from-embedder",
|
2009-06-04 18:16:51 +00:00
|
|
|
G_CALLBACK (offscreen_window_from_parent2), offscreen_box);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_style_attach (widget);
|
|
|
|
style = gtk_widget_get_style (widget);
|
|
|
|
gtk_style_set_background (style, window, GTK_STATE_NORMAL);
|
|
|
|
gtk_style_set_background (style, offscreen_box->offscreen_window1, GTK_STATE_NORMAL);
|
|
|
|
gtk_style_set_background (style, offscreen_box->offscreen_window2, GTK_STATE_NORMAL);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
gdk_window_show (offscreen_box->offscreen_window1);
|
|
|
|
gdk_window_show (offscreen_box->offscreen_window2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_unrealize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (widget);
|
|
|
|
|
|
|
|
gdk_window_set_user_data (offscreen_box->offscreen_window1, NULL);
|
|
|
|
gdk_window_destroy (offscreen_box->offscreen_window1);
|
|
|
|
offscreen_box->offscreen_window1 = NULL;
|
|
|
|
|
|
|
|
gdk_window_set_user_data (offscreen_box->offscreen_window2, NULL);
|
|
|
|
gdk_window_destroy (offscreen_box->offscreen_window2);
|
|
|
|
offscreen_box->offscreen_window2 = NULL;
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (gtk_offscreen_box_parent_class)->unrealize (widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GType
|
|
|
|
gtk_offscreen_box_child_type (GtkContainer *container)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (container);
|
|
|
|
|
|
|
|
if (offscreen_box->child1 && offscreen_box->child2)
|
|
|
|
return G_TYPE_NONE;
|
|
|
|
|
|
|
|
return GTK_TYPE_WIDGET;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_add (GtkContainer *container,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (container);
|
|
|
|
|
|
|
|
if (!offscreen_box->child1)
|
|
|
|
gtk_offscreen_box_add1 (offscreen_box, widget);
|
|
|
|
else if (!offscreen_box->child2)
|
|
|
|
gtk_offscreen_box_add2 (offscreen_box, widget);
|
|
|
|
else
|
|
|
|
g_warning ("GtkOffscreenBox cannot have more than 2 children\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_offscreen_box_add1 (GtkOffscreenBox *offscreen_box,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_OFFSCREEN_BOX (offscreen_box));
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (child));
|
|
|
|
|
|
|
|
if (offscreen_box->child1 == NULL)
|
|
|
|
{
|
|
|
|
gtk_widget_set_parent_window (child, offscreen_box->offscreen_window1);
|
|
|
|
gtk_widget_set_parent (child, GTK_WIDGET (offscreen_box));
|
|
|
|
offscreen_box->child1 = child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_offscreen_box_add2 (GtkOffscreenBox *offscreen_box,
|
|
|
|
GtkWidget *child)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_OFFSCREEN_BOX (offscreen_box));
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (child));
|
|
|
|
|
|
|
|
if (offscreen_box->child2 == NULL)
|
|
|
|
{
|
|
|
|
gtk_widget_set_parent_window (child, offscreen_box->offscreen_window2);
|
|
|
|
gtk_widget_set_parent (child, GTK_WIDGET (offscreen_box));
|
|
|
|
offscreen_box->child2 = child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_remove (GtkContainer *container,
|
|
|
|
GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (container);
|
|
|
|
gboolean was_visible;
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
was_visible = gtk_widget_get_visible (widget);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
if (offscreen_box->child1 == widget)
|
|
|
|
{
|
|
|
|
gtk_widget_unparent (widget);
|
|
|
|
|
|
|
|
offscreen_box->child1 = NULL;
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (was_visible && gtk_widget_get_visible (GTK_WIDGET (container)))
|
2009-01-16 09:39:35 +00:00
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (container));
|
|
|
|
}
|
|
|
|
else if (offscreen_box->child2 == widget)
|
|
|
|
{
|
|
|
|
gtk_widget_unparent (widget);
|
|
|
|
|
|
|
|
offscreen_box->child2 = NULL;
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (was_visible && gtk_widget_get_visible (GTK_WIDGET (container)))
|
2009-01-16 09:39:35 +00:00
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (container));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_forall (GtkContainer *container,
|
|
|
|
gboolean include_internals,
|
|
|
|
GtkCallback callback,
|
|
|
|
gpointer callback_data)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (container);
|
|
|
|
|
|
|
|
g_return_if_fail (callback != NULL);
|
|
|
|
|
|
|
|
if (offscreen_box->child1)
|
|
|
|
(*callback) (offscreen_box->child1, callback_data);
|
|
|
|
if (offscreen_box->child2)
|
|
|
|
(*callback) (offscreen_box->child2, callback_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_offscreen_box_set_angle (GtkOffscreenBox *offscreen_box,
|
|
|
|
gdouble angle)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_OFFSCREEN_BOX (offscreen_box));
|
|
|
|
|
|
|
|
offscreen_box->angle = angle;
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (offscreen_box));
|
|
|
|
|
|
|
|
/* TODO: Really needs to resent pointer events if over the rotated window */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (widget);
|
|
|
|
int w, h;
|
2010-06-02 04:28:22 +00:00
|
|
|
guint border_width;
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
w = 0;
|
|
|
|
h = 0;
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
|
|
|
GtkRequisition child_requisition;
|
|
|
|
|
2010-09-14 01:33:06 +00:00
|
|
|
gtk_size_request_get_size (GTK_SIZE_REQUEST (offscreen_box->child1),
|
|
|
|
&child_requisition, NULL);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
w = MAX (w, CHILD1_SIZE_SCALE * child_requisition.width);
|
|
|
|
h += CHILD1_SIZE_SCALE * child_requisition.height;
|
|
|
|
}
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child2 && gtk_widget_get_visible (offscreen_box->child2))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
|
|
|
GtkRequisition child_requisition;
|
|
|
|
|
2010-09-14 01:33:06 +00:00
|
|
|
gtk_size_request_get_size (GTK_SIZE_REQUEST (offscreen_box->child2),
|
|
|
|
&child_requisition, NULL);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
w = MAX (w, CHILD2_SIZE_SCALE * child_requisition.width);
|
|
|
|
h += CHILD2_SIZE_SCALE * child_requisition.height;
|
|
|
|
}
|
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
|
|
|
|
requisition->width = border_width * 2 + w;
|
|
|
|
requisition->height = border_width * 2 + h;
|
2009-01-16 09:39:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_offscreen_box_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box;
|
|
|
|
gint start_y;
|
2010-06-02 04:28:22 +00:00
|
|
|
guint border_width;
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
offscreen_box = GTK_OFFSCREEN_BOX (widget);
|
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_set_allocation (widget, allocation);
|
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-03-02 06:16:02 +00:00
|
|
|
if (gtk_widget_get_realized (widget))
|
2010-08-15 22:35:15 +00:00
|
|
|
gdk_window_move_resize (gtk_widget_get_window (widget),
|
2009-01-16 09:39:35 +00:00
|
|
|
allocation->x + border_width,
|
|
|
|
allocation->y + border_width,
|
|
|
|
allocation->width - border_width * 2,
|
|
|
|
allocation->height - border_width * 2);
|
|
|
|
|
|
|
|
start_y = 0;
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
|
|
|
GtkRequisition child_requisition;
|
|
|
|
GtkAllocation child_allocation;
|
|
|
|
|
2010-09-09 13:35:58 +00:00
|
|
|
gtk_size_request_get_size (GTK_SIZE_REQUEST (offscreen_box->child1),
|
|
|
|
&child_requisition, NULL);
|
2009-01-16 09:39:35 +00:00
|
|
|
child_allocation.x = child_requisition.width * (CHILD1_SIZE_SCALE - 1.0) / 2;
|
|
|
|
child_allocation.y = start_y + child_requisition.height * (CHILD1_SIZE_SCALE - 1.0) / 2;
|
2010-08-15 22:35:15 +00:00
|
|
|
child_allocation.width = MAX (1, (gint) allocation->width - 2 * border_width);
|
2009-01-16 09:39:35 +00:00
|
|
|
child_allocation.height = child_requisition.height;
|
|
|
|
|
|
|
|
start_y += CHILD1_SIZE_SCALE * child_requisition.height;
|
|
|
|
|
2010-03-02 06:16:02 +00:00
|
|
|
if (gtk_widget_get_realized (widget))
|
2009-01-16 09:39:35 +00:00
|
|
|
gdk_window_move_resize (offscreen_box->offscreen_window1,
|
|
|
|
child_allocation.x,
|
|
|
|
child_allocation.y,
|
|
|
|
child_allocation.width,
|
|
|
|
child_allocation.height);
|
|
|
|
|
|
|
|
child_allocation.x = child_allocation.y = 0;
|
|
|
|
gtk_widget_size_allocate (offscreen_box->child1, &child_allocation);
|
|
|
|
}
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child2 && gtk_widget_get_visible (offscreen_box->child2))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
|
|
|
GtkRequisition child_requisition;
|
|
|
|
GtkAllocation child_allocation;
|
|
|
|
|
2010-09-09 13:35:58 +00:00
|
|
|
gtk_size_request_get_size (GTK_SIZE_REQUEST (offscreen_box->child2),
|
|
|
|
&child_requisition, NULL);
|
2009-01-16 09:39:35 +00:00
|
|
|
child_allocation.x = child_requisition.width * (CHILD2_SIZE_SCALE - 1.0) / 2;
|
|
|
|
child_allocation.y = start_y + child_requisition.height * (CHILD2_SIZE_SCALE - 1.0) / 2;
|
2010-08-15 22:35:15 +00:00
|
|
|
child_allocation.width = MAX (1, (gint) allocation->width - 2 * border_width);
|
2009-01-16 09:39:35 +00:00
|
|
|
child_allocation.height = child_requisition.height;
|
|
|
|
|
|
|
|
start_y += CHILD2_SIZE_SCALE * child_requisition.height;
|
|
|
|
|
2010-03-02 06:16:02 +00:00
|
|
|
if (gtk_widget_get_realized (widget))
|
2009-01-16 09:39:35 +00:00
|
|
|
gdk_window_move_resize (offscreen_box->offscreen_window2,
|
|
|
|
child_allocation.x,
|
|
|
|
child_allocation.y,
|
|
|
|
child_allocation.width,
|
|
|
|
child_allocation.height);
|
|
|
|
|
|
|
|
child_allocation.x = child_allocation.y = 0;
|
|
|
|
gtk_widget_size_allocate (offscreen_box->child2, &child_allocation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_offscreen_box_damage (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
|
|
|
{
|
2010-08-15 22:35:15 +00:00
|
|
|
gdk_window_invalidate_rect (gtk_widget_get_window (widget),
|
|
|
|
NULL, FALSE);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_offscreen_box_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
|
|
|
{
|
|
|
|
GtkOffscreenBox *offscreen_box = GTK_OFFSCREEN_BOX (widget);
|
2010-08-15 22:35:15 +00:00
|
|
|
GdkWindow *window;
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-01-07 15:47:35 +00:00
|
|
|
if (gtk_widget_is_drawable (widget))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
2010-08-15 22:35:15 +00:00
|
|
|
window = gtk_widget_get_window (widget);
|
|
|
|
if (event->window == window)
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
2010-08-26 11:46:34 +00:00
|
|
|
cairo_surface_t *surface;
|
2009-01-16 09:39:35 +00:00
|
|
|
GtkAllocation child_area;
|
|
|
|
cairo_t *cr;
|
|
|
|
int start_y = 0;
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child1 && gtk_widget_get_visible (offscreen_box->child1))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
2010-08-26 11:46:34 +00:00
|
|
|
surface = gdk_offscreen_window_get_surface (offscreen_box->offscreen_window1);
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child1, &child_area);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
cr = gdk_cairo_create (window);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-26 11:46:34 +00:00
|
|
|
cairo_set_source_surface (cr, surface, 0, 0);
|
2009-01-16 09:39:35 +00:00
|
|
|
cairo_paint (cr);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
|
|
|
|
start_y += child_area.height;
|
|
|
|
}
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
if (offscreen_box->child2 && gtk_widget_get_visible (offscreen_box->child2))
|
2009-01-16 09:39:35 +00:00
|
|
|
{
|
|
|
|
gint w, h;
|
|
|
|
|
2010-08-26 11:46:34 +00:00
|
|
|
surface = gdk_offscreen_window_get_surface (offscreen_box->offscreen_window2);
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_widget_get_allocation (offscreen_box->child2, &child_area);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
2010-08-15 22:35:15 +00:00
|
|
|
cr = gdk_cairo_create (window);
|
2009-01-16 09:39:35 +00:00
|
|
|
|
|
|
|
/* transform */
|
|
|
|
cairo_translate (cr, 0, start_y);
|
|
|
|
cairo_translate (cr, child_area.width / 2, child_area.height / 2);
|
|
|
|
cairo_rotate (cr, offscreen_box->angle);
|
|
|
|
cairo_translate (cr, -child_area.width / 2, -child_area.height / 2);
|
|
|
|
|
|
|
|
/* clip */
|
2010-08-26 11:46:34 +00:00
|
|
|
gdk_drawable_get_size (offscreen_box->offscreen_window2, &w, &h);
|
2009-01-16 09:39:35 +00:00
|
|
|
cairo_rectangle (cr, 0, 0, w, h);
|
|
|
|
cairo_clip (cr);
|
|
|
|
|
|
|
|
/* paint */
|
2010-08-26 11:46:34 +00:00
|
|
|
cairo_set_source_surface (cr, surface, 0, 0);
|
2009-01-16 09:39:35 +00:00
|
|
|
cairo_paint (cr);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->window == offscreen_box->offscreen_window1)
|
|
|
|
{
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_paint_flat_box (gtk_widget_get_style (widget), event->window,
|
2009-01-16 09:39:35 +00:00
|
|
|
GTK_STATE_NORMAL, GTK_SHADOW_NONE,
|
|
|
|
&event->area, widget, "blah",
|
|
|
|
0, 0, -1, -1);
|
|
|
|
|
|
|
|
if (offscreen_box->child1)
|
|
|
|
gtk_container_propagate_expose (GTK_CONTAINER (widget),
|
|
|
|
offscreen_box->child1,
|
|
|
|
event);
|
|
|
|
}
|
|
|
|
else if (event->window == offscreen_box->offscreen_window2)
|
|
|
|
{
|
2010-08-15 22:35:15 +00:00
|
|
|
gtk_paint_flat_box (gtk_widget_get_style (widget), event->window,
|
2009-01-16 09:39:35 +00:00
|
|
|
GTK_STATE_NORMAL, GTK_SHADOW_NONE,
|
|
|
|
&event->area, widget, "blah",
|
|
|
|
0, 0, -1, -1);
|
|
|
|
|
|
|
|
if (offscreen_box->child2)
|
|
|
|
gtk_container_propagate_expose (GTK_CONTAINER (widget),
|
|
|
|
offscreen_box->child2,
|
|
|
|
event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|