2003-11-15 23:35:16 -05:00
|
|
|
/*
|
2006-01-20 16:43:13 -05:00
|
|
|
* Copyright (C) 2003, 2004, 2005, 2006 Red Hat, Inc.
|
2003-11-23 13:16:01 -05:00
|
|
|
* Copyright (C) 2003 Keith Packard
|
2003-11-15 23:35:16 -05:00
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "compositor.h"
|
2003-11-23 13:16:01 -05:00
|
|
|
#include "screen.h"
|
|
|
|
#include "errors.h"
|
2003-11-29 22:30:27 -05:00
|
|
|
#include "window.h"
|
|
|
|
#include "frame.h"
|
2006-01-13 14:41:01 -05:00
|
|
|
#include "workspace.h"
|
|
|
|
|
|
|
|
#include <math.h>
|
2006-02-15 14:50:12 -05:00
|
|
|
#include <stdlib.h>
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-14 16:51:46 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-01-13 14:41:01 -05:00
|
|
|
#include <cm/node.h>
|
|
|
|
#include <cm/drawable-node.h>
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#include <GL/glu.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
|
|
|
|
#include <cm/ws.h>
|
|
|
|
#include <cm/wsint.h>
|
2006-02-28 14:51:45 -05:00
|
|
|
#include <cm/stacker.h>
|
|
|
|
#include <cm/cube.h>
|
|
|
|
#include <cm/rotation.h>
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-14 16:51:46 -05:00
|
|
|
#include <X11/extensions/shape.h>
|
2003-11-15 23:35:16 -05:00
|
|
|
#include <X11/extensions/Xcomposite.h>
|
|
|
|
#include <X11/extensions/Xdamage.h>
|
2006-01-14 16:51:46 -05:00
|
|
|
#include <X11/extensions/Xfixes.h>
|
2003-11-15 23:35:16 -05:00
|
|
|
#include <X11/extensions/Xrender.h>
|
2006-02-25 11:54:39 -05:00
|
|
|
#include "spring-model.h"
|
2006-02-28 14:51:45 -05:00
|
|
|
#include <cm/state.h>
|
2006-03-03 10:53:10 -05:00
|
|
|
|
|
|
|
#include "c-screen.h"
|
2003-11-15 23:35:16 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
2003-11-29 22:30:27 -05:00
|
|
|
#define FRAME_INTERVAL_MILLISECONDS ((int)(1000.0/40.0))
|
|
|
|
|
2006-01-14 16:51:46 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2003-11-15 23:35:16 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
/* Screen specific information */
|
2006-02-25 11:54:39 -05:00
|
|
|
typedef struct MoveInfo MoveInfo;
|
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
struct MetaCompositor
|
|
|
|
{
|
2006-01-19 16:51:54 -05:00
|
|
|
MetaDisplay *meta_display;
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
WsDisplay *display;
|
2003-11-23 13:16:01 -05:00
|
|
|
|
|
|
|
guint repair_idle;
|
2003-11-15 23:35:16 -05:00
|
|
|
|
|
|
|
guint enabled : 1;
|
2003-11-24 18:00:52 -05:00
|
|
|
guint have_composite : 1;
|
|
|
|
guint have_damage : 1;
|
|
|
|
guint have_fixes : 1;
|
2004-08-26 23:27:43 -04:00
|
|
|
guint have_name_window_pixmap : 1;
|
2006-01-13 14:41:01 -05:00
|
|
|
guint debug_updates : 1;
|
2003-11-23 13:16:01 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
GList *ignored_damage;
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-25 11:54:39 -05:00
|
|
|
MoveInfo *move_info;
|
2006-01-13 14:41:01 -05:00
|
|
|
};
|
2006-01-14 16:51:46 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
2003-11-23 13:16:01 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
|
2006-02-15 18:44:15 -05:00
|
|
|
static WsDisplay *compositor_display;
|
2006-02-16 16:03:02 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
handle_error (Display *dpy, XErrorEvent *ev, gpointer data)
|
|
|
|
{
|
|
|
|
WsDisplay *display = data;
|
|
|
|
|
|
|
|
ws_display_process_error (display, ev);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
MetaCompositor *
|
2003-11-15 23:35:16 -05:00
|
|
|
meta_compositor_new (MetaDisplay *display)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
MetaCompositor *compositor;
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
compositor = g_new0 (MetaCompositor, 1);
|
|
|
|
|
2006-02-15 18:44:15 -05:00
|
|
|
if (!compositor_display)
|
2006-02-17 11:58:08 -05:00
|
|
|
{
|
|
|
|
gboolean has_extensions;
|
|
|
|
|
|
|
|
compositor_display = ws_display_new (NULL);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
|
|
|
meta_errors_register_foreign_display (
|
|
|
|
compositor_display->xdisplay, handle_error, compositor_display);
|
2006-02-25 11:54:39 -05:00
|
|
|
|
2006-02-17 11:58:08 -05:00
|
|
|
has_extensions =
|
|
|
|
ws_display_init_composite (compositor_display) &&
|
|
|
|
ws_display_init_damage (compositor_display) &&
|
|
|
|
ws_display_init_fixes (compositor_display) &&
|
|
|
|
ws_display_init_test (compositor_display);
|
|
|
|
|
|
|
|
if (!has_extensions)
|
|
|
|
{
|
|
|
|
g_warning ("Disabling compositor since the server is missing at "
|
|
|
|
"least one of the COMPOSITE, DAMAGE, FIXES or TEST "
|
|
|
|
"extensions");
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-02-25 11:54:39 -05:00
|
|
|
|
2006-02-23 15:41:53 -05:00
|
|
|
ws_display_set_ignore_grabs (compositor_display, TRUE);
|
2006-02-17 11:58:08 -05:00
|
|
|
}
|
|
|
|
|
2006-02-15 18:44:15 -05:00
|
|
|
compositor->display = compositor_display;
|
|
|
|
|
|
|
|
ws_display_set_synchronize (compositor_display,
|
2006-02-02 18:02:21 -05:00
|
|
|
getenv ("METACITY_SYNC") != NULL);
|
2003-11-15 23:35:16 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
compositor->meta_display = display;
|
2003-11-15 23:35:16 -05:00
|
|
|
|
|
|
|
compositor->enabled = TRUE;
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
return compositor;
|
|
|
|
#else /* HAVE_COMPOSITE_EXTENSIONS */
|
2006-01-13 14:41:01 -05:00
|
|
|
return NULL;
|
2003-11-15 23:35:16 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
}
|
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
void
|
|
|
|
meta_compositor_set_debug_updates (MetaCompositor *compositor,
|
|
|
|
gboolean debug_updates)
|
|
|
|
{
|
2006-01-14 16:51:46 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-01-13 14:41:01 -05:00
|
|
|
compositor->debug_updates = !!debug_updates;
|
2006-01-14 16:51:46 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
2006-01-13 14:41:01 -05:00
|
|
|
}
|
|
|
|
|
2003-11-23 13:16:01 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
remove_repair_idle (MetaCompositor *compositor)
|
|
|
|
{
|
2006-01-13 14:41:01 -05:00
|
|
|
if (compositor->repair_idle)
|
2003-11-23 13:16:01 -05:00
|
|
|
{
|
2006-01-13 14:41:01 -05:00
|
|
|
meta_topic (META_DEBUG_COMPOSITOR, "Damage idle removed\n");
|
|
|
|
|
2003-11-23 13:16:01 -05:00
|
|
|
g_source_remove (compositor->repair_idle);
|
|
|
|
compositor->repair_idle = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
void
|
|
|
|
meta_compositor_unref (MetaCompositor *compositor)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
/* There isn't really a refcount at the moment since
|
|
|
|
* there's no ref()
|
|
|
|
*/
|
2003-11-23 13:16:01 -05:00
|
|
|
remove_repair_idle (compositor);
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
g_free (compositor);
|
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
}
|
|
|
|
|
2003-11-23 13:16:01 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
2006-01-13 14:41:01 -05:00
|
|
|
draw_windows (MetaScreen *screen,
|
|
|
|
GList *list)
|
2003-11-23 13:16:01 -05:00
|
|
|
{
|
2006-01-17 17:27:10 -05:00
|
|
|
CmNode *node;
|
2003-11-29 22:30:27 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
if (!list)
|
|
|
|
return;
|
2003-11-23 13:16:01 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
node = list->data;
|
2003-11-23 13:16:01 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
draw_windows (screen, list->next);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-17 17:27:10 -05:00
|
|
|
#if 0
|
|
|
|
g_print ("rendering: %p\n", node);
|
|
|
|
#endif
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
cm_node_render (node, NULL);
|
2003-11-23 13:16:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
process_configure_notify (MetaCompositor *compositor,
|
|
|
|
XConfigureEvent *event)
|
|
|
|
{
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreenInfo *minfo = meta_screen_info_get_by_xwindow (event->window);
|
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-03-03 10:53:10 -05:00
|
|
|
g_print ("minfo: %lx => %p\n", event->window, minfo);
|
2006-03-15 16:31:12 -05:00
|
|
|
#endif
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-03-15 16:31:12 -05:00
|
|
|
#if 0
|
|
|
|
g_print ("configure on %lx (above: %lx) %d %d %d %d\n", event->window, event->above,
|
|
|
|
event->x, event->y, event->width, event->height);
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
if (!minfo)
|
|
|
|
{
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-03-03 10:53:10 -05:00
|
|
|
g_print (" --- ignoring configure (no screen info)\n");
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
2006-03-03 10:53:10 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
meta_screen_info_restack (minfo, event->window, event->above);
|
|
|
|
meta_screen_info_set_size (minfo,
|
|
|
|
event->window,
|
|
|
|
event->x, event->y,
|
|
|
|
event->width, event->height);
|
2003-11-23 13:16:01 -05:00
|
|
|
}
|
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
2003-11-29 22:30:27 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
process_expose (MetaCompositor *compositor,
|
|
|
|
XExposeEvent *event)
|
|
|
|
{
|
2006-01-13 14:41:01 -05:00
|
|
|
/* FIXME: queue repaint */
|
2003-11-29 22:30:27 -05:00
|
|
|
}
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2003-11-29 22:30:27 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
2006-02-07 00:58:52 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-02-06 17:47:13 -05:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
CmDrawableNode *node;
|
|
|
|
GTimer *timer;
|
2006-02-06 17:47:13 -05:00
|
|
|
} FadeInfo;
|
|
|
|
|
|
|
|
#define FADE_TIME 0.3
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
fade_out (gpointer data)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
FadeInfo *info = data;
|
|
|
|
gdouble elapsed = g_timer_elapsed (info->timer, NULL);
|
|
|
|
gdouble alpha;
|
|
|
|
|
|
|
|
if (elapsed > FADE_TIME)
|
|
|
|
alpha = 0.0;
|
|
|
|
else
|
|
|
|
alpha = 1 - (elapsed / FADE_TIME);
|
|
|
|
|
|
|
|
cm_drawable_node_set_alpha (info->node, alpha);
|
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print ("fade out: %f\n", alpha);
|
2006-02-15 14:50:12 -05:00
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
if (elapsed >= FADE_TIME)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-03-03 10:53:10 -05:00
|
|
|
g_object_unref (info->node);
|
|
|
|
|
|
|
|
cm_drawable_node_set_viewable (info->node, FALSE);
|
|
|
|
|
|
|
|
return FALSE;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
return TRUE;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
}
|
2006-02-07 00:58:52 -05:00
|
|
|
#endif
|
2006-02-06 17:47:13 -05:00
|
|
|
|
2003-12-25 19:05:26 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
process_map (MetaCompositor *compositor,
|
|
|
|
XMapEvent *event)
|
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-20 16:43:13 -05:00
|
|
|
/* FIXME: do we sometimes get mapnotifies for windows that are
|
|
|
|
* not (direct) children of the root?
|
|
|
|
*/
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2003-12-25 19:05:26 -05:00
|
|
|
/* See if window was mapped as child of root */
|
2006-01-19 16:51:54 -05:00
|
|
|
screen = meta_display_screen_for_root (compositor->meta_display,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->event);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
if (screen == NULL)
|
2003-12-25 21:42:38 -05:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"MapNotify received on non-root 0x%lx for 0x%lx\n",
|
|
|
|
event->event, event->window);
|
2003-12-25 19:05:26 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
/* MapNotify wasn't for a child of the root */
|
|
|
|
return;
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
meta_screen_info_add_window (screen->compositor_data,
|
|
|
|
event->window);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2003-12-25 19:05:26 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
process_unmap (MetaCompositor *compositor,
|
|
|
|
XUnmapEvent *event)
|
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2003-12-25 19:05:26 -05:00
|
|
|
/* See if window was unmapped as child of root */
|
2006-01-19 16:51:54 -05:00
|
|
|
screen = meta_display_screen_for_root (compositor->meta_display,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->event);
|
|
|
|
|
|
|
|
if (screen == NULL)
|
2003-12-25 21:42:38 -05:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"UnmapNotify received on non-root 0x%lx for 0x%lx\n",
|
|
|
|
event->event, event->window);
|
2006-02-06 17:47:13 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
/* UnmapNotify wasn't for a child of the root */
|
|
|
|
return;
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
|
|
|
|
meta_screen_info_unmap (screen->compositor_data, event->window);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2003-12-25 19:05:26 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
process_create (MetaCompositor *compositor,
|
|
|
|
XCreateWindowEvent *event)
|
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
|
|
|
XWindowAttributes attrs;
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
screen = meta_display_screen_for_root (compositor->meta_display,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->parent);
|
|
|
|
|
|
|
|
if (screen == NULL)
|
2003-12-25 21:42:38 -05:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"CreateNotify received on non-root 0x%lx for 0x%lx\n",
|
|
|
|
event->parent, event->window);
|
2003-12-25 21:42:38 -05:00
|
|
|
return;
|
|
|
|
}
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
meta_error_trap_push_with_return (compositor->meta_display);
|
2003-12-25 19:05:26 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
XGetWindowAttributes (compositor->meta_display->xdisplay,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->window, &attrs);
|
2003-12-25 19:05:26 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
if (meta_error_trap_pop_with_return (compositor->meta_display, TRUE) != Success)
|
2003-12-25 19:05:26 -05:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_COMPOSITOR, "Failed to get attributes for window 0x%lx\n",
|
2006-01-13 14:41:01 -05:00
|
|
|
event->window);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-15 14:50:12 -05:00
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print (//META_DEBUG_COMPOSITOR,
|
|
|
|
"Create window 0x%lx, adding\n", event->window);
|
2006-02-15 14:50:12 -05:00
|
|
|
#endif
|
2003-12-25 19:05:26 -05:00
|
|
|
meta_compositor_add_window (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->window, &attrs);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
process_destroy (MetaCompositor *compositor,
|
|
|
|
XDestroyWindowEvent *event)
|
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
screen = meta_display_screen_for_root (compositor->meta_display,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->event);
|
2006-03-22 13:34:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
g_print ("destroywindow\n");
|
|
|
|
#endif
|
2006-01-13 14:41:01 -05:00
|
|
|
|
|
|
|
if (screen == NULL)
|
2003-12-25 21:42:38 -05:00
|
|
|
{
|
2006-03-22 13:34:18 -05:00
|
|
|
#if 0
|
|
|
|
g_print ("ignoring\n");
|
|
|
|
#endif
|
2003-12-25 21:42:38 -05:00
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"DestroyNotify received on non-root 0x%lx for 0x%lx\n",
|
|
|
|
event->event, event->window);
|
2003-12-25 21:42:38 -05:00
|
|
|
return;
|
|
|
|
}
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2003-12-25 21:42:38 -05:00
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"Destroy window 0x%lx\n", event->window);
|
2003-12-25 19:05:26 -05:00
|
|
|
meta_compositor_remove_window (compositor, event->window);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
2003-12-25 21:42:38 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
process_reparent (MetaCompositor *compositor,
|
|
|
|
XReparentEvent *event)
|
|
|
|
{
|
|
|
|
/* Reparent from one screen to another doesn't happen now, but
|
|
|
|
* it's been suggested as a future extension
|
|
|
|
*/
|
|
|
|
MetaScreen *event_screen;
|
|
|
|
MetaScreen *parent_screen;
|
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
event_screen = meta_display_screen_for_root (compositor->meta_display,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->event);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
if (event_screen == NULL)
|
2003-12-25 21:42:38 -05:00
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"ReparentNotify received on non-root 0x%lx for 0x%lx\n",
|
|
|
|
event->event, event->window);
|
2003-12-25 21:42:38 -05:00
|
|
|
return;
|
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
parent_screen = meta_display_screen_for_root (compositor->meta_display,
|
2006-01-13 14:41:01 -05:00
|
|
|
event->parent);
|
2003-12-25 21:42:38 -05:00
|
|
|
|
|
|
|
if (parent_screen == NULL)
|
|
|
|
{
|
|
|
|
meta_topic (META_DEBUG_COMPOSITOR,
|
2006-01-13 14:41:01 -05:00
|
|
|
"ReparentNotify 0x%lx to a non-screen or unmanaged screen 0x%lx\n",
|
|
|
|
event->window, event->parent);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2003-12-25 21:42:38 -05:00
|
|
|
meta_compositor_remove_window (compositor, event->window);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-03 10:53:10 -05:00
|
|
|
meta_screen_info_raise_window (parent_screen->compositor_data,
|
|
|
|
event->window);
|
2003-12-25 21:42:38 -05:00
|
|
|
}
|
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2003-12-25 21:42:38 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
void
|
|
|
|
meta_compositor_process_event (MetaCompositor *compositor,
|
2003-11-23 13:16:01 -05:00
|
|
|
XEvent *event,
|
2003-11-15 23:35:16 -05:00
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
if (!compositor->enabled)
|
|
|
|
return; /* no extension */
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2003-12-25 21:42:38 -05:00
|
|
|
/* FIXME support CirculateNotify */
|
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
if (event->type == ConfigureNotify)
|
2003-11-23 13:16:01 -05:00
|
|
|
{
|
|
|
|
process_configure_notify (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XConfigureEvent*) event);
|
2003-11-23 13:16:01 -05:00
|
|
|
}
|
2003-11-29 22:30:27 -05:00
|
|
|
else if (event->type == Expose)
|
|
|
|
{
|
|
|
|
process_expose (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XExposeEvent*) event);
|
2003-11-29 22:30:27 -05:00
|
|
|
}
|
2003-12-25 19:05:26 -05:00
|
|
|
else if (event->type == UnmapNotify)
|
|
|
|
{
|
|
|
|
process_unmap (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XUnmapEvent*) event);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
|
|
|
else if (event->type == MapNotify)
|
|
|
|
{
|
|
|
|
process_map (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XMapEvent*) event);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
2003-12-25 21:42:38 -05:00
|
|
|
else if (event->type == ReparentNotify)
|
|
|
|
{
|
|
|
|
process_reparent (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XReparentEvent*) event);
|
2003-12-25 21:42:38 -05:00
|
|
|
}
|
2003-12-25 19:05:26 -05:00
|
|
|
else if (event->type == CreateNotify)
|
|
|
|
{
|
|
|
|
process_create (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XCreateWindowEvent*) event);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
|
|
|
else if (event->type == DestroyNotify)
|
|
|
|
{
|
|
|
|
process_destroy (compositor,
|
2006-01-13 14:41:01 -05:00
|
|
|
(XDestroyWindowEvent*) event);
|
2003-12-25 19:05:26 -05:00
|
|
|
}
|
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
}
|
|
|
|
|
2006-01-14 16:51:46 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-01-13 14:41:01 -05:00
|
|
|
static void
|
|
|
|
wavy (double time,
|
|
|
|
double in_x, double in_y,
|
|
|
|
double *out_x, double *out_y,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
static int m;
|
|
|
|
time = time * 5;
|
|
|
|
double dx = 0.0025 * sin (time + 35 * in_y);
|
|
|
|
double dy = 0.0025 * cos (time + 35 * in_x);
|
|
|
|
|
|
|
|
*out_x = in_x + dx;
|
|
|
|
*out_y = in_y + dy;
|
|
|
|
|
|
|
|
m++;
|
|
|
|
}
|
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
static GTimer *timer;
|
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
#if 0
|
2006-01-13 16:38:56 -05:00
|
|
|
static gboolean
|
|
|
|
update (gpointer data)
|
|
|
|
{
|
|
|
|
MetaScreen *screen = data;
|
|
|
|
ScreenInfo *scr_info = screen->compositor_data;
|
|
|
|
WsWindow *gl_window = scr_info->glw;
|
2006-02-28 14:51:45 -05:00
|
|
|
gdouble angle;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
glViewport (0, 0, screen->rect.width, screen->rect.height);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
if (!timer)
|
|
|
|
timer = g_timer_new ();
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-02-28 14:51:45 -05:00
|
|
|
g_print ("rotation: %f\n", 360 * g_timer_elapsed (timer, NULL));
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
angle = g_timer_elapsed (timer, NULL) * 90;
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
angle = 180.0;
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
cm_rotation_set_rotation (screen->display->compositor->rotation,
|
|
|
|
angle,
|
|
|
|
0.0, 1.0, 0.0);
|
|
|
|
|
|
|
|
glClearColor (0.0, 0.0, 0.0, 0.0);
|
|
|
|
glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
2006-01-13 16:38:56 -05:00
|
|
|
|
|
|
|
glDisable (GL_TEXTURE_2D);
|
2006-02-02 18:02:21 -05:00
|
|
|
glDisable (GL_DEPTH_TEST);
|
2006-02-28 14:51:45 -05:00
|
|
|
ws_window_raise (gl_window);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
#if 0
|
|
|
|
glMatrixMode (GL_MODELVIEW);
|
2006-01-13 16:38:56 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
glLoadIdentity();
|
|
|
|
#endif
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
#if 0
|
|
|
|
glTranslatef (-1.0, -1.0, 0.0);
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
2006-01-19 16:51:54 -05:00
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-02-28 14:51:45 -05:00
|
|
|
glMatrixMode (GL_PROJECTION);
|
|
|
|
glLoadIdentity();
|
|
|
|
gluPerspective( 45.0f, 1.0, 0.1f, 10.0f );
|
|
|
|
|
|
|
|
glMatrixMode (GL_MODELVIEW);
|
|
|
|
glLoadIdentity();
|
|
|
|
glTranslatef (0, 0, -3);
|
|
|
|
|
|
|
|
glEnable (GL_DEPTH_TEST);
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
#if 0
|
2006-01-19 16:51:54 -05:00
|
|
|
draw_windows (screen, scr_info->compositor_nodes);
|
2006-02-28 14:51:45 -05:00
|
|
|
#endif
|
2006-01-13 16:38:56 -05:00
|
|
|
|
2006-01-19 18:06:19 -05:00
|
|
|
/* FIXME: we should probably grab the server around the raise/swap
|
|
|
|
*/
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
CmState *state = cm_state_new ();
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
cm_state_disable_depth_buffer_update (state);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
cm_node_render (CM_NODE (screen->display->compositor->stacker), state);
|
|
|
|
|
|
|
|
cm_state_enable_depth_buffer_update (state);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-28 14:51:45 -05:00
|
|
|
g_object_unref (state);
|
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
#if 0
|
|
|
|
ws_display_grab (ws_drawable_get_display ((WsDrawable *)gl_window));
|
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 16:38:56 -05:00
|
|
|
ws_window_gl_swap_buffers (gl_window);
|
2006-01-16 11:56:09 -05:00
|
|
|
glFinish();
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
update_frame_counter ();
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 16:38:56 -05:00
|
|
|
scr_info->idle_id = 0;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 16:38:56 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
#endif
|
2006-01-13 16:38:56 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
#if 0
|
2006-01-13 16:38:56 -05:00
|
|
|
static void
|
2006-01-20 16:43:13 -05:00
|
|
|
queue_repaint (CmDrawableNode *node, gpointer data)
|
2006-01-13 16:38:56 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
MetaScreen *screen = data;
|
|
|
|
ScreenInfo *scr_info = screen->compositor_data;
|
|
|
|
|
2006-01-19 16:51:54 -05:00
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print ("metacity queueing repaint for %p\n", node);
|
2006-01-19 16:51:54 -05:00
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
if (!scr_info)
|
2006-01-20 16:43:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
/* compositor has been turned off */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!scr_info->idle_id)
|
|
|
|
{
|
|
|
|
scr_info->idle_id = g_idle_add (update, screen);
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print ("done\n");
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else
|
2006-02-02 18:02:21 -05:00
|
|
|
{
|
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print ("one was queued already\n");
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
2006-01-20 16:43:13 -05:00
|
|
|
}
|
2006-01-13 16:38:56 -05:00
|
|
|
}
|
2006-01-14 16:51:46 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
2006-03-03 10:53:10 -05:00
|
|
|
#endif
|
2006-01-13 16:38:56 -05:00
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
static void
|
|
|
|
dump_stacking_order (GList *nodes)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = nodes; list != NULL; list = list->next)
|
2006-02-02 18:02:21 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
CmDrawableNode *node = list->data;
|
|
|
|
|
|
|
|
g_print ("%lx, ", WS_RESOURCE_XID (node->drawable));
|
2006-02-02 18:02:21 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print ("\n");
|
2006-02-02 18:02:21 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-11-15 23:35:16 -05:00
|
|
|
/* This is called when metacity does its XQueryTree() on startup
|
2003-11-23 13:16:01 -05:00
|
|
|
* and when a new window is mapped.
|
2003-11-15 23:35:16 -05:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_compositor_add_window (MetaCompositor *compositor,
|
|
|
|
Window xwindow,
|
|
|
|
XWindowAttributes *attrs)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreen *screen = meta_screen_for_x_screen (attrs->screen);
|
|
|
|
MetaScreenInfo *minfo = screen->compositor_data;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
meta_screen_info_add_window (minfo, xwindow);
|
2006-02-23 15:41:53 -05:00
|
|
|
#endif
|
2003-11-15 23:35:16 -05:00
|
|
|
}
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2003-11-20 21:32:05 -05:00
|
|
|
void
|
|
|
|
meta_compositor_remove_window (MetaCompositor *compositor,
|
|
|
|
Window xwindow)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreenInfo *minfo;
|
2003-11-23 13:16:01 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
minfo = meta_screen_info_get_by_xwindow (xwindow);
|
2006-03-22 13:34:18 -05:00
|
|
|
|
|
|
|
if (minfo)
|
|
|
|
meta_screen_info_remove_window (minfo, xwindow);
|
2003-11-20 21:32:05 -05:00
|
|
|
#endif /* HAVE_COMPOSITE_EXTENSIONS */
|
|
|
|
}
|
2003-11-15 23:35:16 -05:00
|
|
|
|
2003-11-20 21:32:05 -05:00
|
|
|
void
|
|
|
|
meta_compositor_manage_screen (MetaCompositor *compositor,
|
|
|
|
MetaScreen *screen)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreenInfo *info;
|
|
|
|
|
|
|
|
if (screen->compositor_data)
|
|
|
|
return;
|
|
|
|
|
|
|
|
info = meta_screen_info_new (compositor->display, screen);
|
|
|
|
|
|
|
|
screen->compositor_data = info;
|
|
|
|
|
|
|
|
meta_screen_info_redirect (info);
|
2006-01-13 14:41:01 -05:00
|
|
|
#endif
|
2003-11-20 21:32:05 -05:00
|
|
|
}
|
2003-11-15 23:35:16 -05:00
|
|
|
|
2003-11-20 21:32:05 -05:00
|
|
|
void
|
|
|
|
meta_compositor_unmanage_screen (MetaCompositor *compositor,
|
|
|
|
MetaScreen *screen)
|
|
|
|
{
|
2006-03-03 10:53:10 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
MetaScreenInfo *info = screen->compositor_data;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
meta_screen_info_unredirect (info);
|
2006-02-15 18:44:15 -05:00
|
|
|
screen->compositor_data = NULL;
|
2006-03-03 10:53:10 -05:00
|
|
|
#endif
|
2003-11-20 21:32:05 -05:00
|
|
|
}
|
2003-11-15 23:35:16 -05:00
|
|
|
|
2006-01-14 16:51:46 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-02-15 14:50:12 -05:00
|
|
|
#endif
|
2003-11-29 22:30:27 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
double x;
|
|
|
|
double y;
|
|
|
|
double width;
|
|
|
|
double height;
|
|
|
|
} DoubleRect;
|
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
#if 0
|
2006-01-13 14:41:01 -05:00
|
|
|
static gdouble
|
|
|
|
interpolate (gdouble t, gdouble begin, gdouble end, double power)
|
|
|
|
{
|
|
|
|
return (begin + (end - begin) * pow (t, power));
|
|
|
|
}
|
2006-02-06 17:47:13 -05:00
|
|
|
#endif
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-01-13 14:41:01 -05:00
|
|
|
static gboolean
|
|
|
|
stop_minimize (gpointer data)
|
|
|
|
{
|
|
|
|
MiniInfo *info = data;
|
|
|
|
|
2006-01-20 16:43:13 -05:00
|
|
|
g_source_remove (info->repaint_id);
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-01-20 16:43:13 -05:00
|
|
|
cm_drawable_node_set_deformation_func (info->node, NULL, NULL);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
if (info->finished_func)
|
|
|
|
info->finished_func (info->finished_data);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
g_free (info);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2006-02-02 18:02:21 -05:00
|
|
|
#endif
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-02-02 18:02:21 -05:00
|
|
|
#if 0
|
2006-01-13 14:41:01 -05:00
|
|
|
static void
|
|
|
|
minimize_deformation (gdouble time,
|
|
|
|
double in_x,
|
|
|
|
double in_y,
|
|
|
|
double *out_x,
|
|
|
|
double *out_y,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
#define MINIMIZE_TIME 0.5
|
|
|
|
MiniInfo *info = data;
|
|
|
|
gdouble elapsed;
|
|
|
|
gdouble pos;
|
|
|
|
|
|
|
|
if (info->start_time == -1)
|
|
|
|
info->start_time = time;
|
|
|
|
|
|
|
|
elapsed = time - info->start_time;
|
|
|
|
pos = elapsed / MINIMIZE_TIME;
|
|
|
|
|
|
|
|
*out_x = interpolate (pos, in_x, info->target.x + info->target.width * ((in_x - info->start.x) / info->start.width), 10 * in_y);
|
|
|
|
*out_y = interpolate (pos, in_y, info->target.y + info->target.height * ((in_y - info->start.y) / info->start.height), 1.0);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-01-13 14:41:01 -05:00
|
|
|
if (elapsed > MINIMIZE_TIME)
|
|
|
|
{
|
|
|
|
g_assert (info->node);
|
|
|
|
if (!info->idle_id)
|
|
|
|
info->idle_id = g_idle_add (stop_minimize, info);
|
|
|
|
}
|
|
|
|
}
|
2006-02-16 19:00:24 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-01-13 14:41:01 -05:00
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
static gdouble
|
|
|
|
interpolate (gdouble t, gdouble begin, gdouble end, double power)
|
2006-01-20 16:43:13 -05:00
|
|
|
{
|
2006-02-06 17:47:13 -05:00
|
|
|
return (begin + (end - begin) * pow (t, power));
|
|
|
|
}
|
2006-02-02 18:02:21 -05:00
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
static void
|
|
|
|
interpolate_rectangle (gdouble t,
|
|
|
|
WsRectangle * from,
|
|
|
|
WsRectangle * to,
|
|
|
|
WsRectangle * result)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
if (!result)
|
|
|
|
return;
|
|
|
|
|
|
|
|
result->x = interpolate (t, from->x, to->x, 1);
|
|
|
|
result->y = interpolate (t, from->y, to->y, 1);
|
|
|
|
result->width = interpolate (t, from->width, to->width, 1);
|
|
|
|
result->height = interpolate (t, from->height, to->height, 1);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-02 18:02:21 -05:00
|
|
|
|
2006-02-16 19:00:24 -05:00
|
|
|
#endif
|
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
#define MINIMIZE_STYLE 1
|
2006-02-15 14:50:12 -05:00
|
|
|
|
|
|
|
#ifndef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
#undef MINIMIZE_STYLE
|
|
|
|
#define MINIMIZE_STYLE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MINIMIZE_STYLE == 0
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_minimize (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
2006-02-16 19:00:24 -05:00
|
|
|
MetaAnimationFinishedFunc finished,
|
2006-02-15 14:50:12 -05:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif MINIMIZE_STYLE == 1
|
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
typedef struct
|
|
|
|
{
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaWindow *window;
|
2006-02-15 18:44:15 -05:00
|
|
|
GTimer *timer;
|
|
|
|
|
|
|
|
MetaCompositor *compositor;
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreenInfo *scr_info;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-23 15:41:53 -05:00
|
|
|
MetaAnimationFinishedFunc finished_func;
|
2006-02-15 18:44:15 -05:00
|
|
|
gpointer finished_data;
|
|
|
|
|
|
|
|
gdouble aspect_ratio;
|
|
|
|
|
|
|
|
WsRectangle current_geometry;
|
|
|
|
WsRectangle target_geometry;
|
|
|
|
gdouble current_alpha;
|
|
|
|
gdouble target_alpha;
|
|
|
|
|
|
|
|
int button_x;
|
|
|
|
int button_y;
|
|
|
|
int button_width;
|
|
|
|
int button_height;
|
|
|
|
|
|
|
|
/* FIXME: maybe would be simpler if all of this was an array */
|
|
|
|
gboolean phase_1_started;
|
|
|
|
gboolean phase_2_started;
|
|
|
|
gboolean phase_3_started;
|
|
|
|
gboolean phase_4_started;
|
|
|
|
gboolean phase_5_started;
|
2006-02-06 17:47:13 -05:00
|
|
|
} MiniInfo;
|
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
static Window
|
|
|
|
get_xid (MetaWindow *window)
|
|
|
|
{
|
|
|
|
if (window->frame)
|
|
|
|
return window->frame->xwindow;
|
|
|
|
else
|
|
|
|
return window->xwindow;
|
|
|
|
}
|
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
static void
|
|
|
|
set_geometry (MiniInfo *info, gdouble elapsed)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
WsRectangle rect;
|
|
|
|
|
|
|
|
interpolate_rectangle (elapsed, &info->current_geometry, &info->target_geometry, &rect);
|
|
|
|
|
|
|
|
g_print ("y: %d %d (%f => %d)\n", info->current_geometry.y, info->target_geometry.y,
|
|
|
|
elapsed, rect.y);
|
|
|
|
|
|
|
|
g_print ("setting: %d %d %d %d\n", rect.x, rect.y, rect.width, rect.height);
|
|
|
|
|
2006-03-15 16:31:12 -05:00
|
|
|
meta_screen_info_set_target_rect (info->scr_info,
|
|
|
|
get_xid (info->window), &rect);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
center (gdouble what, gdouble in)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
return (in - what) / 2.0 + 0.5;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_phase_1 (MiniInfo *info, gdouble elapsed)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
if (!info->phase_1_started)
|
2006-02-02 18:02:21 -05:00
|
|
|
{
|
2006-02-23 15:41:53 -05:00
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
g_print ("starting phase 1\n");
|
2006-02-23 15:41:53 -05:00
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
info->phase_1_started = TRUE;
|
2006-03-03 10:53:10 -05:00
|
|
|
|
|
|
|
meta_screen_info_get_real_size (info->scr_info, get_xid (info->window),
|
|
|
|
&info->current_geometry);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
#if 0
|
2006-02-15 18:44:15 -05:00
|
|
|
info->current_geometry.x = info->node->real_x;
|
|
|
|
info->current_geometry.y = info->node->real_y;
|
|
|
|
info->current_geometry.width = info->node->real_width;
|
|
|
|
info->current_geometry.height = info->node->real_height;
|
2006-03-03 10:53:10 -05:00
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
info->target_geometry.height = info->button_height;
|
|
|
|
info->target_geometry.width = info->button_height * info->aspect_ratio;
|
|
|
|
info->target_geometry.x = info->button_x + center (info->target_geometry.width, info->button_width);
|
2006-03-03 10:53:10 -05:00
|
|
|
info->target_geometry.y = info->current_geometry.y + center (info->button_height, info->current_geometry.height);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
set_geometry (info, elapsed);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_phase_2 (MiniInfo *info, gdouble elapsed)
|
|
|
|
{
|
|
|
|
#define WOBBLE_FACTOR 3
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
if (!info->phase_2_started)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
WsRectangle cur = info->target_geometry;
|
|
|
|
|
|
|
|
g_print ("starting phase 2\n");
|
|
|
|
|
|
|
|
info->phase_2_started = TRUE;
|
|
|
|
|
|
|
|
info->current_geometry = cur;
|
|
|
|
|
|
|
|
info->target_geometry.x = cur.x + center (WOBBLE_FACTOR * cur.width, cur.width);
|
|
|
|
info->target_geometry.y = cur.y + center (WOBBLE_FACTOR * cur.height, cur.height);
|
|
|
|
info->target_geometry.width = cur.width * WOBBLE_FACTOR;
|
|
|
|
info->target_geometry.height = cur.height * WOBBLE_FACTOR;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
set_geometry (info, elapsed);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_phase_3 (MiniInfo *info, gdouble elapsed)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
if (!info->phase_3_started)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
WsRectangle cur = info->target_geometry;
|
2006-03-03 10:53:10 -05:00
|
|
|
WsRectangle real;
|
|
|
|
|
|
|
|
meta_screen_info_get_real_size (info->scr_info, get_xid (info->window),
|
|
|
|
&real);
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
g_print ("starting phase 3\n");
|
|
|
|
info->phase_3_started = TRUE;
|
|
|
|
|
|
|
|
info->current_geometry = cur;
|
|
|
|
|
|
|
|
info->target_geometry.height = info->button_height;
|
|
|
|
info->target_geometry.width = info->button_height * info->aspect_ratio;
|
|
|
|
info->target_geometry.x = info->button_x + center (info->target_geometry.width, info->button_width);
|
2006-03-03 10:53:10 -05:00
|
|
|
info->target_geometry.y = real.y + center (info->button_height, real.height);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
set_geometry (info, elapsed);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_phase_4 (MiniInfo *info, gdouble elapsed)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
if (!info->phase_4_started)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
WsRectangle cur = info->target_geometry;
|
|
|
|
|
|
|
|
g_print ("starting phase 4\n");
|
|
|
|
info->phase_4_started = TRUE;
|
|
|
|
|
|
|
|
info->current_geometry = cur;
|
|
|
|
|
|
|
|
info->target_geometry.height = info->button_height;
|
|
|
|
info->target_geometry.width = info->button_height * info->aspect_ratio;
|
|
|
|
info->target_geometry.x = cur.x;
|
|
|
|
g_print ("button y: %d\n", info->button_y);
|
|
|
|
info->target_geometry.y = info->button_y;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
set_geometry (info, elapsed);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_phase_5 (MiniInfo *info, gdouble elapsed)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
if (!info->phase_5_started)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
WsRectangle cur = info->target_geometry;
|
|
|
|
|
|
|
|
g_print ("starting phase 5\n");
|
|
|
|
info->phase_5_started = TRUE;
|
|
|
|
|
|
|
|
info->current_geometry = cur;
|
|
|
|
info->target_geometry.x = info->button_x;
|
|
|
|
info->target_geometry.y = info->button_y;
|
|
|
|
info->target_geometry.width = info->button_width;
|
|
|
|
info->target_geometry.height = info->button_height;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
set_geometry (info, elapsed);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
|
|
|
meta_screen_info_set_alpha (info->scr_info,
|
|
|
|
get_xid (info->window), 1 - elapsed);
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
run_animation_01 (gpointer data)
|
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
MiniInfo *info = data;
|
|
|
|
gdouble elapsed;
|
|
|
|
|
|
|
|
elapsed = g_timer_elapsed (info->timer, NULL);
|
|
|
|
|
2006-02-06 17:47:13 -05:00
|
|
|
#define PHASE_0 0.0
|
|
|
|
#define PHASE_1 0.225 /* scale to size of button */
|
|
|
|
#define PHASE_2 0.325 /* scale up a little */
|
|
|
|
#define PHASE_3 0.425 /* scale back a little */
|
|
|
|
#define PHASE_4 0.650 /* move to button */
|
|
|
|
#define PHASE_5 1.0 /* fade out */
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
if (elapsed < PHASE_1)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
/* phase one */
|
|
|
|
run_phase_1 (info, (elapsed - PHASE_0)/(PHASE_1 - PHASE_0));
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else if (elapsed < PHASE_2)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
/* phase two */
|
|
|
|
run_phase_2 (info, (elapsed - PHASE_1)/(PHASE_2 - PHASE_1));
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else if (elapsed < PHASE_3)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
/* phase three */
|
|
|
|
run_phase_3 (info, (elapsed - PHASE_2)/(PHASE_3 - PHASE_2));
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else if (elapsed < PHASE_4)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
/* phase four */
|
|
|
|
run_phase_4 (info, (elapsed - PHASE_3)/(PHASE_4 - PHASE_3));
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else if (elapsed < PHASE_5)
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
/* phase five */
|
|
|
|
run_phase_5 (info, (elapsed - PHASE_4)/(PHASE_5 - PHASE_4));
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
else
|
2006-02-06 17:47:13 -05:00
|
|
|
{
|
2006-02-15 18:44:15 -05:00
|
|
|
if (info->finished_func)
|
|
|
|
info->finished_func (info->finished_data);
|
|
|
|
|
|
|
|
return FALSE;
|
2006-02-02 18:02:21 -05:00
|
|
|
}
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
return TRUE;
|
2006-02-06 17:47:13 -05:00
|
|
|
}
|
|
|
|
|
2006-03-30 16:14:56 -05:00
|
|
|
#define EXPLODE_TIME 1.0
|
|
|
|
|
|
|
|
#define BASE 0.5
|
|
|
|
|
|
|
|
static double
|
|
|
|
transform (double in)
|
|
|
|
{
|
|
|
|
return (pow (BASE, in) - 1) / (BASE - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MetaWindow * window;
|
|
|
|
gdouble level;
|
|
|
|
GTimer * timer;
|
|
|
|
MetaAnimationFinishedFunc func;
|
|
|
|
gpointer data;
|
|
|
|
MetaScreenInfo * minfo;
|
|
|
|
} ExplodeInfo;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
update_explosion (gpointer data)
|
|
|
|
{
|
|
|
|
ExplodeInfo *info = data;
|
|
|
|
gdouble elapsed = g_timer_elapsed (info->timer, NULL);
|
|
|
|
gdouble t = elapsed / EXPLODE_TIME;
|
|
|
|
|
|
|
|
meta_screen_info_set_explode (info->minfo, get_xid (info->window), transform (t));
|
|
|
|
|
|
|
|
if (elapsed > EXPLODE_TIME)
|
|
|
|
{
|
|
|
|
if (info->func)
|
|
|
|
info->func (info->data);
|
|
|
|
|
|
|
|
meta_screen_info_hide_window (info->minfo, get_xid (info->window));
|
|
|
|
meta_screen_info_set_explode (info->minfo, get_xid (info->window), 0.0);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_minimize (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
MetaAnimationFinishedFunc finished,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
ExplodeInfo *info = g_new0 (ExplodeInfo, 1);
|
|
|
|
|
|
|
|
info->window = window;
|
|
|
|
info->level = 0.0;
|
|
|
|
info->timer = g_timer_new ();
|
|
|
|
info->func = finished;
|
|
|
|
info->data = data;
|
|
|
|
info->minfo = meta_screen_info_get_by_xwindow (get_xid (window));
|
|
|
|
|
|
|
|
g_idle_add (update_explosion, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2006-02-15 14:50:12 -05:00
|
|
|
void
|
|
|
|
meta_compositor_minimize (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
2006-02-23 15:41:53 -05:00
|
|
|
MetaAnimationFinishedFunc finished,
|
2006-02-15 14:50:12 -05:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
MiniInfo *info = g_new (MiniInfo, 1);
|
|
|
|
WsRectangle start;
|
|
|
|
MetaScreen *screen = window->screen;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
info->window = window;
|
2006-02-15 14:50:12 -05:00
|
|
|
info->timer = g_timer_new ();
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
info->finished_func = finished;
|
|
|
|
info->finished_data = data;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
info->phase_1_started = FALSE;
|
|
|
|
info->phase_2_started = FALSE;
|
|
|
|
info->phase_3_started = FALSE;
|
|
|
|
info->phase_4_started = FALSE;
|
|
|
|
info->phase_5_started = FALSE;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
info->button_x = x;
|
|
|
|
info->button_y = y;
|
|
|
|
info->button_width = width;
|
|
|
|
info->button_height = height;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
info->compositor = compositor;
|
|
|
|
info->scr_info = screen->compositor_data;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
cm_drawable_node_set_deformation_func (node, minimize_deformation, info);
|
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
info->aspect_ratio = 1.3;
|
|
|
|
|
|
|
|
g_idle_add (run_animation_01, info);
|
|
|
|
}
|
2006-03-30 16:14:56 -05:00
|
|
|
#endif
|
2006-02-15 14:50:12 -05:00
|
|
|
|
2006-02-23 15:41:53 -05:00
|
|
|
#endif
|
|
|
|
|
2006-02-15 14:50:12 -05:00
|
|
|
void
|
|
|
|
meta_compositor_set_updates (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window,
|
|
|
|
gboolean updates)
|
|
|
|
{
|
2006-02-16 16:03:02 -05:00
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreenInfo *info = window->screen->compositor_data;
|
2006-02-15 18:44:15 -05:00
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
meta_screen_info_set_updates (info, get_xid (window), updates);
|
2006-02-16 16:03:02 -05:00
|
|
|
#endif
|
2006-02-15 14:50:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
|
|
|
|
#define BALLOON_TIME 2
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
CmDrawableNode *node;
|
|
|
|
MetaAnimationFinishedFunc finished;
|
|
|
|
gpointer finished_data;
|
|
|
|
GTimer *timer;
|
|
|
|
} BalloonInfo;
|
|
|
|
|
2006-02-16 16:03:02 -05:00
|
|
|
#endif
|
2006-02-15 18:44:15 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_destroy (MetaCompositor *compositor)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
g_free (compositor);
|
|
|
|
#endif
|
|
|
|
}
|
2006-02-25 11:54:39 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
|
|
|
|
struct MoveInfo
|
|
|
|
{
|
|
|
|
GTimer *timer;
|
|
|
|
gboolean finished;
|
|
|
|
Model *model;
|
|
|
|
MetaScreen *screen;
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaWindow *window;
|
2006-02-25 11:54:39 -05:00
|
|
|
gdouble last_time;
|
2006-03-14 12:00:56 -05:00
|
|
|
gboolean window_destroyed;
|
2006-02-25 11:54:39 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
static void
|
|
|
|
get_patch_points (Model *model,
|
|
|
|
CmPoint points[4][4])
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < 4; j++)
|
|
|
|
{
|
|
|
|
double obj_x, obj_y;
|
|
|
|
|
|
|
|
model_get_position (model, i, j, &obj_x, &obj_y);
|
|
|
|
|
|
|
|
points[j][i].x = obj_x;
|
|
|
|
points[j][i].y = obj_y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-25 11:54:39 -05:00
|
|
|
static gboolean
|
|
|
|
wobble (gpointer data)
|
|
|
|
{
|
|
|
|
MoveInfo *info = data;
|
2006-03-03 10:53:10 -05:00
|
|
|
MetaScreenInfo *minfo = info->screen->compositor_data;
|
2006-02-25 11:54:39 -05:00
|
|
|
double t = g_timer_elapsed (info->timer, NULL);
|
2006-03-14 12:00:56 -05:00
|
|
|
|
2006-03-30 16:14:56 -05:00
|
|
|
#if 0
|
2006-03-14 12:00:56 -05:00
|
|
|
g_print ("info->window_destroyed: %d\n",
|
|
|
|
info->window_destroyed);
|
2006-03-30 16:14:56 -05:00
|
|
|
#endif
|
2006-03-14 12:00:56 -05:00
|
|
|
if ((info->finished && model_is_calm (info->model)) ||
|
|
|
|
info->window_destroyed)
|
2006-02-25 11:54:39 -05:00
|
|
|
{
|
2006-03-14 12:00:56 -05:00
|
|
|
if (!info->window_destroyed)
|
|
|
|
meta_screen_info_unset_patch (minfo, get_xid (info->window));
|
2006-02-25 11:54:39 -05:00
|
|
|
g_free (info);
|
|
|
|
info = NULL;
|
2006-03-03 10:53:10 -05:00
|
|
|
g_print ("stop wobb\n");
|
2006-02-25 11:54:39 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int n_steps;
|
2006-03-03 10:53:10 -05:00
|
|
|
CmPoint points[4][4];
|
2006-02-25 11:54:39 -05:00
|
|
|
n_steps = floor ((t - info->last_time) * 75);
|
|
|
|
|
|
|
|
for (i = 0; i < n_steps; ++i)
|
|
|
|
model_step (info->model);
|
2006-03-03 10:53:10 -05:00
|
|
|
|
2006-02-25 11:54:39 -05:00
|
|
|
if (i > 0)
|
|
|
|
info->last_time = t;
|
|
|
|
|
2006-03-03 10:53:10 -05:00
|
|
|
get_patch_points (info->model, points);
|
|
|
|
meta_screen_info_set_patch (minfo,
|
|
|
|
get_xid (info->window),
|
|
|
|
points);
|
2006-02-25 11:54:39 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
compute_window_rect (MetaWindow *window,
|
|
|
|
MetaRectangle *rect)
|
|
|
|
{
|
|
|
|
/* FIXME: does metacity include this function somewhere? */
|
|
|
|
|
|
|
|
if (window->frame)
|
|
|
|
{
|
|
|
|
*rect = window->frame->rect;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*rect = window->user_rect;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_begin_move (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window,
|
|
|
|
MetaRectangle *initial,
|
|
|
|
int grab_x, int grab_y)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
MetaRectangle rect;
|
2006-03-03 10:53:10 -05:00
|
|
|
|
|
|
|
g_print ("begin move\n");
|
2006-02-25 11:54:39 -05:00
|
|
|
|
|
|
|
compositor->move_info = g_new0 (MoveInfo, 1);
|
|
|
|
|
|
|
|
compositor->move_info->last_time = 0.0;
|
|
|
|
compositor->move_info->timer = g_timer_new ();
|
2006-03-14 12:00:56 -05:00
|
|
|
compositor->move_info->window_destroyed = FALSE;
|
2006-02-25 11:54:39 -05:00
|
|
|
|
|
|
|
compute_window_rect (window, &rect);
|
|
|
|
|
|
|
|
g_print ("init: %d %d\n", initial->x, initial->y);
|
|
|
|
g_print ("window: %d %d\n", window->rect.x, window->rect.y);
|
|
|
|
g_print ("frame: %d %d\n", rect.x, rect.y);
|
|
|
|
g_print ("grab: %d %d\n", grab_x, grab_y);
|
|
|
|
|
|
|
|
compositor->move_info->model = model_new (&rect, TRUE);
|
2006-03-03 10:53:10 -05:00
|
|
|
compositor->move_info->window = window;
|
2006-02-25 11:54:39 -05:00
|
|
|
compositor->move_info->screen = window->screen;
|
|
|
|
|
|
|
|
model_begin_move (compositor->move_info->model, grab_x, grab_y);
|
|
|
|
|
|
|
|
g_idle_add (wobble, compositor->move_info);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_update_move (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window,
|
|
|
|
int x, int y)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
model_update_move (compositor->move_info->model, x, y);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_end_move (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
compositor->move_info->finished = TRUE;
|
2006-03-14 12:00:56 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_compositor_free_window (MetaCompositor *compositor,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_COMPOSITE_EXTENSIONS
|
|
|
|
g_print ("freeing\n");
|
|
|
|
if (compositor->move_info)
|
|
|
|
{
|
|
|
|
g_print ("setting moveinfo to destroyed\n");
|
|
|
|
compositor->move_info->window_destroyed = TRUE;
|
|
|
|
compositor->move_info = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2006-02-25 11:54:39 -05:00
|
|
|
}
|