2007-11-15 09:45:27 -05:00
|
|
|
/* Clutter.
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
* Copyright (C) 2006-2007 OpenedHand
|
|
|
|
*
|
|
|
|
* 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, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "clutter-backend-x11.h"
|
|
|
|
#include "clutter-stage-x11.h"
|
|
|
|
#include "clutter-x11.h"
|
|
|
|
|
|
|
|
#include "../clutter-main.h"
|
|
|
|
#include "../clutter-feature.h"
|
|
|
|
#include "../clutter-color.h"
|
|
|
|
#include "../clutter-util.h"
|
|
|
|
#include "../clutter-event.h"
|
|
|
|
#include "../clutter-enum-types.h"
|
|
|
|
#include "../clutter-private.h"
|
|
|
|
#include "../clutter-debug.h"
|
|
|
|
#include "../clutter-units.h"
|
|
|
|
|
|
|
|
#include "cogl.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_XFIXES
|
|
|
|
#include <X11/extensions/Xfixes.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gdk-pixbuf-xlib/gdk-pixbuf-xlib.h>
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (ClutterStageX11, clutter_stage_x11, CLUTTER_TYPE_STAGE);
|
|
|
|
|
|
|
|
#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
|
|
|
|
#define _NET_WM_STATE_ADD 1 /* add/set property */
|
|
|
|
#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
|
|
|
|
|
|
|
|
static void
|
|
|
|
send_wmspec_change_state (ClutterBackendX11 *backend_x11,
|
2008-01-31 06:24:11 -05:00
|
|
|
Window window,
|
|
|
|
Atom state,
|
|
|
|
gboolean add)
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
|
|
|
XClientMessageEvent xclient;
|
|
|
|
|
|
|
|
memset (&xclient, 0, sizeof (xclient));
|
|
|
|
|
|
|
|
xclient.type = ClientMessage;
|
|
|
|
xclient.window = window;
|
2007-11-17 13:11:14 -05:00
|
|
|
xclient.message_type = backend_x11->atom_NET_WM_STATE;
|
2007-11-15 09:45:27 -05:00
|
|
|
xclient.format = 32;
|
|
|
|
|
|
|
|
xclient.data.l[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
|
|
|
|
xclient.data.l[1] = state;
|
|
|
|
xclient.data.l[2] = 0;
|
|
|
|
xclient.data.l[3] = 0;
|
|
|
|
xclient.data.l[4] = 0;
|
|
|
|
|
|
|
|
XSendEvent (backend_x11->xdpy,
|
2008-01-31 06:24:11 -05:00
|
|
|
DefaultRootWindow(backend_x11->xdpy),
|
|
|
|
False,
|
2007-11-15 09:45:27 -05:00
|
|
|
SubstructureRedirectMask|SubstructureNotifyMask,
|
|
|
|
(XEvent *)&xclient);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clutter_stage_x11_fix_window_size (ClutterStageX11 *stage_x11)
|
|
|
|
{
|
|
|
|
gboolean resize;
|
|
|
|
|
|
|
|
resize = clutter_stage_get_user_resizable (CLUTTER_STAGE (stage_x11));
|
|
|
|
|
|
|
|
if (stage_x11->xwin != None && stage_x11->is_foreign_xwin == FALSE)
|
|
|
|
{
|
|
|
|
XSizeHints *size_hints;
|
|
|
|
|
|
|
|
size_hints = XAllocSizeHints();
|
|
|
|
|
|
|
|
if (!resize)
|
2008-01-31 06:24:11 -05:00
|
|
|
{
|
|
|
|
size_hints->max_width = size_hints->min_width =
|
2007-11-26 07:07:25 -05:00
|
|
|
stage_x11->xwin_width;
|
2008-01-31 06:24:11 -05:00
|
|
|
size_hints->max_height = size_hints->min_height =
|
2007-11-26 07:07:25 -05:00
|
|
|
stage_x11->xwin_height;
|
2008-01-31 06:24:11 -05:00
|
|
|
size_hints->flags = PMinSize|PMaxSize;
|
|
|
|
}
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
XSetWMNormalHints (stage_x11->xdpy, stage_x11->xwin, size_hints);
|
|
|
|
|
|
|
|
XFree(size_hints);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_show (ClutterActor *actor)
|
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (actor);
|
|
|
|
|
|
|
|
if (stage_x11->xwin)
|
|
|
|
{
|
|
|
|
/* Fire off a redraw to avoid flicker on first map.
|
|
|
|
* Appears not to work perfectly on intel drivers at least.
|
|
|
|
*/
|
|
|
|
clutter_redraw();
|
2007-11-26 07:07:25 -05:00
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
XSync (stage_x11->xdpy, FALSE);
|
|
|
|
XMapWindow (stage_x11->xdpy, stage_x11->xwin);
|
|
|
|
}
|
2007-11-23 08:07:04 -05:00
|
|
|
|
2007-11-26 07:07:25 -05:00
|
|
|
/* chain up */
|
2007-11-23 08:07:04 -05:00
|
|
|
CLUTTER_ACTOR_CLASS (clutter_stage_x11_parent_class)->show (actor);
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_hide (ClutterActor *actor)
|
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (actor);
|
|
|
|
|
|
|
|
if (stage_x11->xwin)
|
|
|
|
XUnmapWindow (stage_x11->xdpy, stage_x11->xwin);
|
2007-11-23 08:07:04 -05:00
|
|
|
|
2007-11-26 07:07:25 -05:00
|
|
|
/* chain up */
|
2007-11-23 08:07:04 -05:00
|
|
|
CLUTTER_ACTOR_CLASS (clutter_stage_x11_parent_class)->hide (actor);
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-11-17 13:11:14 -05:00
|
|
|
clutter_stage_x11_set_wm_protocols (ClutterStageX11 *stage_x11)
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
2007-11-17 13:11:14 -05:00
|
|
|
ClutterBackendX11 *backend_x11 = stage_x11->backend;
|
2007-11-15 09:45:27 -05:00
|
|
|
Atom protocols[2];
|
|
|
|
int n = 0;
|
|
|
|
|
2007-11-17 13:11:14 -05:00
|
|
|
protocols[n++] = backend_x11->atom_WM_DELETE_WINDOW;
|
|
|
|
protocols[n++] = backend_x11->atom_NET_WM_PING;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2007-11-17 13:11:14 -05:00
|
|
|
XSetWMProtocols (stage_x11->xdpy, stage_x11->xwin, protocols, n);
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_query_coords (ClutterActor *self,
|
2008-01-31 06:24:11 -05:00
|
|
|
ClutterActorBox *box)
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (self);
|
|
|
|
|
|
|
|
box->x1 = box->y1 = 0;
|
|
|
|
box->x2 = box->x1 + CLUTTER_UNITS_FROM_INT (stage_x11->xwin_width);
|
|
|
|
box->y2 = box->y1 + CLUTTER_UNITS_FROM_INT (stage_x11->xwin_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_request_coords (ClutterActor *self,
|
2008-01-31 06:24:11 -05:00
|
|
|
ClutterActorBox *box)
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (self);
|
|
|
|
gint new_width, new_height;
|
|
|
|
|
|
|
|
new_width = ABS (CLUTTER_UNITS_TO_INT (box->x2 - box->x1));
|
|
|
|
new_height = ABS (CLUTTER_UNITS_TO_INT (box->y2 - box->y1));
|
|
|
|
|
|
|
|
if (new_width != stage_x11->xwin_width ||
|
|
|
|
new_height != stage_x11->xwin_height)
|
|
|
|
{
|
|
|
|
stage_x11->xwin_width = new_width;
|
|
|
|
stage_x11->xwin_height = new_height;
|
|
|
|
|
2008-02-21 07:17:01 -05:00
|
|
|
if (stage_x11->xwin != None &&
|
|
|
|
!stage_x11->is_foreign_xwin)
|
2008-01-31 06:24:11 -05:00
|
|
|
{
|
|
|
|
XResizeWindow (stage_x11->xdpy,
|
|
|
|
stage_x11->xwin,
|
|
|
|
stage_x11->xwin_width,
|
|
|
|
stage_x11->xwin_height);
|
|
|
|
|
|
|
|
clutter_stage_x11_fix_window_size (stage_x11);
|
|
|
|
}
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
if (stage_x11->xpixmap != None)
|
2008-01-31 06:24:11 -05:00
|
|
|
{
|
|
|
|
/* Need to recreate to resize */
|
|
|
|
clutter_actor_unrealize (self);
|
|
|
|
clutter_actor_realize (self);
|
|
|
|
}
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
CLUTTER_SET_PRIVATE_FLAGS(self, CLUTTER_ACTOR_SYNC_MATRICES);
|
|
|
|
}
|
|
|
|
|
2008-02-21 07:17:01 -05:00
|
|
|
if (stage_x11->xwin != None &&
|
|
|
|
!stage_x11->is_foreign_xwin) /* Do we want to bother ? */
|
2007-11-15 09:45:27 -05:00
|
|
|
XMoveWindow (stage_x11->xdpy,
|
2008-01-31 06:24:11 -05:00
|
|
|
stage_x11->xwin,
|
|
|
|
CLUTTER_UNITS_TO_INT (box->x1),
|
|
|
|
CLUTTER_UNITS_TO_INT (box->y1));
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_set_fullscreen (ClutterStage *stage,
|
|
|
|
gboolean fullscreen)
|
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage);
|
|
|
|
ClutterBackendX11 *backend_x11 = stage_x11->backend;
|
|
|
|
|
|
|
|
static gboolean was_resizeable = FALSE;
|
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
{
|
|
|
|
if (stage_x11->xwin != None)
|
2008-01-31 06:24:11 -05:00
|
|
|
{
|
2007-11-26 07:07:25 -05:00
|
|
|
/* if the actor is not mapped we resize the stage window to match
|
|
|
|
* the size of the screen; this is useful for e.g. EGLX to avoid
|
|
|
|
* a resize when calling clutter_stage_fullscreen() before showing
|
|
|
|
* the stage
|
|
|
|
*/
|
2008-01-31 06:24:11 -05:00
|
|
|
if (!CLUTTER_ACTOR_IS_MAPPED (stage_x11))
|
|
|
|
{
|
|
|
|
gint width, height;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2008-01-31 06:24:11 -05:00
|
|
|
width = DisplayWidth (stage_x11->xdpy, stage_x11->xscreen);
|
|
|
|
height = DisplayHeight (stage_x11->xdpy, stage_x11->xscreen);
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2008-01-31 06:24:11 -05:00
|
|
|
clutter_actor_set_size (CLUTTER_ACTOR (stage_x11),
|
|
|
|
width, height);
|
2007-11-26 07:07:25 -05:00
|
|
|
|
2008-01-31 06:24:11 -05:00
|
|
|
/* FIXME: This wont work if we support more states */
|
|
|
|
XChangeProperty (stage_x11->xdpy,
|
2007-11-26 07:07:25 -05:00
|
|
|
stage_x11->xwin,
|
|
|
|
backend_x11->atom_NET_WM_STATE, XA_ATOM, 32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char *) &backend_x11->atom_NET_WM_STATE_FULLSCREEN, 1);
|
2008-01-31 06:24:11 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We need to set window user resize-able for metacity at
|
|
|
|
* at least to allow the window to fullscreen *sigh*
|
|
|
|
*/
|
|
|
|
if (clutter_stage_get_user_resizable (stage) == TRUE)
|
|
|
|
was_resizeable = TRUE;
|
|
|
|
else
|
|
|
|
clutter_stage_set_user_resizable (stage, TRUE);
|
|
|
|
|
|
|
|
send_wmspec_change_state(backend_x11, stage_x11->xwin,
|
|
|
|
backend_x11->atom_NET_WM_STATE_FULLSCREEN,
|
|
|
|
TRUE);
|
|
|
|
}
|
2007-11-26 07:07:25 -05:00
|
|
|
|
|
|
|
stage_x11->fullscreen_on_map = TRUE;
|
2008-01-31 06:24:11 -05:00
|
|
|
}
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (stage_x11->xwin != None)
|
2008-01-31 06:24:11 -05:00
|
|
|
{
|
|
|
|
if (!CLUTTER_ACTOR_IS_MAPPED (stage_x11))
|
|
|
|
{
|
|
|
|
/* FIXME: This wont work if we support more states */
|
|
|
|
XDeleteProperty (stage_x11->xdpy,
|
|
|
|
stage_x11->xwin,
|
|
|
|
backend_x11->atom_NET_WM_STATE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clutter_stage_set_user_resizable (stage, TRUE);
|
|
|
|
|
|
|
|
send_wmspec_change_state(backend_x11,
|
|
|
|
stage_x11->xwin,
|
|
|
|
backend_x11->atom_NET_WM_STATE_FULLSCREEN,
|
|
|
|
FALSE);
|
|
|
|
|
|
|
|
/* reset the windows state - this isn't fun - see above */
|
|
|
|
if (!was_resizeable)
|
|
|
|
clutter_stage_set_user_resizable (stage, FALSE);
|
|
|
|
|
|
|
|
was_resizeable = FALSE;
|
|
|
|
}
|
2007-11-26 07:07:25 -05:00
|
|
|
|
|
|
|
stage_x11->fullscreen_on_map = FALSE;
|
2008-01-31 06:24:11 -05:00
|
|
|
}
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
2007-11-26 07:07:25 -05:00
|
|
|
CLUTTER_SET_PRIVATE_FLAGS (stage, CLUTTER_ACTOR_SYNC_MATRICES);
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_set_cursor_visible (ClutterStage *stage,
|
|
|
|
gboolean show_cursor)
|
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage);
|
|
|
|
|
|
|
|
if (stage_x11->xwin == None)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CLUTTER_NOTE (BACKEND, "setting cursor state ('%s') over stage window (%u)",
|
|
|
|
show_cursor ? "visible" : "invisible",
|
|
|
|
(unsigned int) stage_x11->xwin);
|
|
|
|
|
|
|
|
if (show_cursor)
|
|
|
|
{
|
2008-02-01 10:29:00 -05:00
|
|
|
#if 0 /* HAVE_XFIXES - seems buggy/unreliable */
|
2007-11-15 09:45:27 -05:00
|
|
|
XFixesShowCursor (stage_x11->xdpy, stage_x11->xwin);
|
|
|
|
#else
|
|
|
|
XUndefineCursor (stage_x11->xdpy, stage_x11->xwin);
|
|
|
|
#endif /* HAVE_XFIXES */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-02-01 10:29:00 -05:00
|
|
|
#if 0 /* HAVE_XFIXES - seems buggy/unreliable, check cursor in firefox
|
|
|
|
* loading page after hiding.
|
|
|
|
*/
|
2007-11-15 09:45:27 -05:00
|
|
|
XFixesHideCursor (stage_x11->xdpy, stage_x11->xwin);
|
|
|
|
#else
|
|
|
|
XColor col;
|
|
|
|
Pixmap pix;
|
|
|
|
Cursor curs;
|
|
|
|
|
|
|
|
pix = XCreatePixmap (stage_x11->xdpy, stage_x11->xwin, 1, 1, 1);
|
|
|
|
memset (&col, 0, sizeof (col));
|
|
|
|
curs = XCreatePixmapCursor (stage_x11->xdpy,
|
|
|
|
pix, pix,
|
|
|
|
&col, &col,
|
|
|
|
1, 1);
|
|
|
|
XFreePixmap (stage_x11->xdpy, pix);
|
|
|
|
XDefineCursor (stage_x11->xdpy, stage_x11->xwin, curs);
|
|
|
|
#endif /* HAVE_XFIXES */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_set_title (ClutterStage *stage,
|
2008-01-31 06:24:11 -05:00
|
|
|
const gchar *title)
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage);
|
2007-11-17 13:11:14 -05:00
|
|
|
ClutterBackendX11 *backend_x11 = stage_x11->backend;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
if (stage_x11->xwin == None)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (title == NULL)
|
|
|
|
{
|
|
|
|
XDeleteProperty (stage_x11->xdpy,
|
2008-01-31 06:24:11 -05:00
|
|
|
stage_x11->xwin,
|
|
|
|
backend_x11->atom_NET_WM_NAME);
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XChangeProperty (stage_x11->xdpy,
|
2008-01-31 06:24:11 -05:00
|
|
|
stage_x11->xwin,
|
|
|
|
backend_x11->atom_NET_WM_NAME,
|
|
|
|
backend_x11->atom_UTF8_STRING,
|
|
|
|
8,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char*)title,
|
|
|
|
(int)strlen(title));
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_set_user_resize (ClutterStage *stage,
|
2008-01-31 06:24:11 -05:00
|
|
|
gboolean value)
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage);
|
|
|
|
|
|
|
|
clutter_stage_x11_fix_window_size (stage_x11);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_dispose (GObject *gobject)
|
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (gobject);
|
|
|
|
|
|
|
|
if (stage_x11->xwin)
|
|
|
|
clutter_actor_unrealize (CLUTTER_ACTOR (stage_x11));
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_stage_x11_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_class_init (ClutterStageX11Class *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
ClutterActorClass *actor_class = CLUTTER_ACTOR_CLASS (klass);
|
|
|
|
ClutterStageClass *stage_class = CLUTTER_STAGE_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->dispose = clutter_stage_x11_dispose;
|
|
|
|
|
|
|
|
actor_class->show = clutter_stage_x11_show;
|
|
|
|
actor_class->hide = clutter_stage_x11_hide;
|
|
|
|
actor_class->request_coords = clutter_stage_x11_request_coords;
|
|
|
|
actor_class->query_coords = clutter_stage_x11_query_coords;
|
|
|
|
|
|
|
|
stage_class->set_fullscreen = clutter_stage_x11_set_fullscreen;
|
|
|
|
stage_class->set_cursor_visible = clutter_stage_x11_set_cursor_visible;
|
|
|
|
stage_class->set_title = clutter_stage_x11_set_title;
|
|
|
|
stage_class->set_user_resize = clutter_stage_x11_set_user_resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_x11_init (ClutterStageX11 *stage)
|
|
|
|
{
|
|
|
|
stage->xdpy = NULL;
|
|
|
|
stage->xwin_root = None;
|
|
|
|
stage->xscreen = 0;
|
|
|
|
|
|
|
|
stage->xwin = None;
|
|
|
|
stage->xwin_width = 640;
|
|
|
|
stage->xwin_height = 480;
|
|
|
|
stage->xvisinfo = None;
|
|
|
|
|
|
|
|
stage->is_foreign_xwin = FALSE;
|
2007-11-26 07:07:25 -05:00
|
|
|
stage->fullscreen_on_map = FALSE;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2007-11-26 07:07:25 -05:00
|
|
|
CLUTTER_SET_PRIVATE_FLAGS (stage, CLUTTER_ACTOR_SYNC_MATRICES);
|
2007-11-15 09:45:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_x11_get_stage_window:
|
|
|
|
* @stage: a #ClutterStage
|
|
|
|
*
|
|
|
|
* Gets the stages X Window.
|
|
|
|
*
|
|
|
|
* Return value: An XID for the stage window.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
Window
|
|
|
|
clutter_x11_get_stage_window (ClutterStage *stage)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_STAGE_X11 (stage), None);
|
|
|
|
|
|
|
|
return CLUTTER_STAGE_X11 (stage)->xwin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_x11_get_stage_visual:
|
|
|
|
* @stage: a #ClutterStage
|
|
|
|
*
|
|
|
|
* Returns the stage XVisualInfo
|
|
|
|
*
|
|
|
|
* Return value: The XVisualInfo for the stage.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
XVisualInfo *
|
|
|
|
clutter_x11_get_stage_visual (ClutterStage *stage)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_STAGE_X11 (stage), NULL);
|
|
|
|
|
|
|
|
return CLUTTER_STAGE_X11 (stage)->xvisinfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_x11_set_stage_foreign:
|
|
|
|
* @stage: a #ClutterStage
|
|
|
|
* @xwindow: an existing X Window id
|
|
|
|
*
|
|
|
|
* Target the #ClutterStage to use an existing external X Window
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if foreign window is valid
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
clutter_x11_set_stage_foreign (ClutterStage *stage,
|
|
|
|
Window xwindow)
|
|
|
|
{
|
|
|
|
ClutterStageX11 *stage_x11;
|
|
|
|
ClutterActor *actor;
|
|
|
|
gint x, y;
|
|
|
|
guint width, height, border, depth;
|
|
|
|
Window root_return;
|
|
|
|
Status status;
|
|
|
|
ClutterGeometry geom;
|
|
|
|
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_STAGE_X11 (stage), FALSE);
|
|
|
|
g_return_val_if_fail (xwindow != None, FALSE);
|
|
|
|
|
|
|
|
stage_x11 = CLUTTER_STAGE_X11 (stage);
|
|
|
|
actor = CLUTTER_ACTOR (stage);
|
|
|
|
|
|
|
|
clutter_x11_trap_x_errors ();
|
|
|
|
|
|
|
|
status = XGetGeometry (stage_x11->xdpy,
|
|
|
|
xwindow,
|
|
|
|
&root_return,
|
|
|
|
&x, &y,
|
|
|
|
&width, &height,
|
|
|
|
&border,
|
|
|
|
&depth);
|
|
|
|
|
|
|
|
if (clutter_x11_untrap_x_errors () ||
|
|
|
|
!status ||
|
|
|
|
width == 0 || height == 0 ||
|
|
|
|
depth != stage_x11->xvisinfo->depth)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
clutter_actor_unrealize (actor);
|
|
|
|
|
|
|
|
stage_x11->xwin = xwindow;
|
|
|
|
stage_x11->is_foreign_xwin = TRUE;
|
|
|
|
|
|
|
|
geom.x = x;
|
|
|
|
geom.y = y;
|
|
|
|
geom.width = stage_x11->xwin_width = width;
|
|
|
|
geom.height = stage_x11->xwin_height = height;
|
|
|
|
|
|
|
|
clutter_actor_set_geometry (actor, &geom);
|
|
|
|
clutter_actor_realize (actor);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-11-26 07:07:25 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
clutter_stage_x11_map (ClutterStageX11 *stage_x11)
|
|
|
|
{
|
|
|
|
CLUTTER_ACTOR_SET_FLAGS (stage_x11, CLUTTER_ACTOR_MAPPED);
|
|
|
|
|
|
|
|
if (stage_x11->fullscreen_on_map)
|
|
|
|
clutter_stage_fullscreen (CLUTTER_STAGE (stage_x11));
|
|
|
|
else
|
|
|
|
clutter_stage_unfullscreen (CLUTTER_STAGE (stage_x11));
|
|
|
|
|
|
|
|
clutter_actor_queue_redraw (CLUTTER_ACTOR (stage_x11));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
clutter_stage_x11_unmap (ClutterStageX11 *stage_x11)
|
|
|
|
{
|
|
|
|
CLUTTER_ACTOR_UNSET_FLAGS (stage_x11, CLUTTER_ACTOR_MAPPED);
|
|
|
|
}
|
|
|
|
|