2010-10-18 13:27:14 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Matthew Allum
|
|
|
|
* Copyright (C) 2007 Iain Holmes
|
|
|
|
* Based on xcompmgr - (c) 2003 Keith Packard
|
|
|
|
* xfwm4 - (c) 2005-2007 Olivier Fourdan
|
|
|
|
*
|
|
|
|
* 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
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2010-10-18 13:27:14 -04:00
|
|
|
*/
|
|
|
|
|
2023-07-21 09:37:20 -04:00
|
|
|
#pragma once
|
2010-10-18 13:27:14 -04:00
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "meta/compositor.h"
|
2018-12-26 10:41:26 -05:00
|
|
|
#include "meta/meta-shaped-texture.h"
|
2010-10-18 13:27:14 -04:00
|
|
|
|
2018-10-31 06:47:17 -04:00
|
|
|
#define META_TYPE_WINDOW_ACTOR (meta_window_actor_get_type ())
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2018-12-21 15:12:49 -05:00
|
|
|
G_DECLARE_DERIVABLE_TYPE (MetaWindowActor,
|
|
|
|
meta_window_actor,
|
|
|
|
META, WINDOW_ACTOR,
|
|
|
|
ClutterActor)
|
2010-10-18 13:27:14 -04:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2010-10-18 13:27:14 -04:00
|
|
|
MetaWindow * meta_window_actor_get_meta_window (MetaWindowActor *self);
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2018-12-26 10:41:26 -05:00
|
|
|
MetaShapedTexture *meta_window_actor_get_texture (MetaWindowActor *self);
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2016-09-15 09:10:18 -04:00
|
|
|
void meta_window_actor_sync_visibility (MetaWindowActor *self);
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2011-01-18 13:34:15 -05:00
|
|
|
gboolean meta_window_actor_is_destroyed (MetaWindowActor *self);
|
2010-10-18 13:27:14 -04:00
|
|
|
|
2019-08-26 09:29:33 -04:00
|
|
|
META_EXPORT
|
2023-07-19 19:46:15 -04:00
|
|
|
cairo_surface_t * meta_window_actor_get_image (MetaWindowActor *self,
|
|
|
|
MtkRectangle *clip);
|
2019-08-26 09:29:33 -04:00
|
|
|
|
2021-08-22 07:21:56 -04:00
|
|
|
META_EXPORT
|
|
|
|
ClutterContent * meta_window_actor_paint_to_content (MetaWindowActor *self,
|
2023-07-19 19:46:15 -04:00
|
|
|
MtkRectangle *clip,
|
2021-08-22 07:21:56 -04:00
|
|
|
GError **error);
|
|
|
|
|
2020-05-12 06:04:28 -04:00
|
|
|
META_EXPORT
|
|
|
|
void meta_window_actor_freeze (MetaWindowActor *self);
|
|
|
|
|
|
|
|
META_EXPORT
|
|
|
|
void meta_window_actor_thaw (MetaWindowActor *self);
|
|
|
|
|
2018-12-19 03:04:25 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
2015-07-06 02:27:49 -04:00
|
|
|
META_SHADOW_MODE_AUTO,
|
|
|
|
META_SHADOW_MODE_FORCED_OFF,
|
|
|
|
META_SHADOW_MODE_FORCED_ON,
|
|
|
|
} MetaShadowMode;
|