2008-12-17 04:33:56 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Intel Corp.
|
|
|
|
*
|
|
|
|
* Author: Tomas Frydrych <tf@linux.intel.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
2008-12-17 04:33:56 -05:00
|
|
|
*/
|
|
|
|
|
2013-03-11 11:52:36 -04:00
|
|
|
/**
|
|
|
|
* SECTION:meta-plugin
|
|
|
|
* @title: MetaPlugin
|
|
|
|
* @short_description: Entry point for plugins
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "meta/meta-plugin.h"
|
2008-12-17 04:33:56 -05:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/extensions/Xfixes.h>
|
|
|
|
#include <X11/extensions/shape.h>
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "backends/meta-monitor-manager-private.h"
|
2021-05-10 17:40:49 -04:00
|
|
|
#include "backends/x11/meta-clutter-backend-x11.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "compositor/compositor-private.h"
|
|
|
|
#include "compositor/meta-window-actor-private.h"
|
|
|
|
#include "compositor/meta-plugin-manager.h"
|
|
|
|
#include "meta/display.h"
|
|
|
|
#include "meta/util.h"
|
2009-06-26 15:33:20 -04:00
|
|
|
|
2018-10-30 06:19:36 -04:00
|
|
|
|
|
|
|
typedef struct _MetaPluginPrivate
|
2008-12-17 04:33:56 -05:00
|
|
|
{
|
2014-03-18 17:31:22 -04:00
|
|
|
MetaCompositor *compositor;
|
2018-10-30 06:19:36 -04:00
|
|
|
} MetaPluginPrivate;
|
2008-12-17 04:33:56 -05:00
|
|
|
|
2018-07-19 07:40:39 -04:00
|
|
|
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MetaPlugin, meta_plugin, G_TYPE_OBJECT);
|
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
static void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_class_init (MetaPluginClass *klass)
|
2008-12-17 04:33:56 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_init (MetaPlugin *self)
|
2008-12-17 04:33:56 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-18 13:27:14 -04:00
|
|
|
const MetaPluginInfo *
|
|
|
|
meta_plugin_get_info (MetaPlugin *plugin)
|
2008-12-17 04:33:56 -05:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
MetaPluginClass *klass = META_PLUGIN_GET_CLASS (plugin);
|
2008-12-17 04:33:56 -05:00
|
|
|
|
|
|
|
if (klass && klass->plugin_info)
|
|
|
|
return klass->plugin_info (plugin);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-09-04 12:11:43 -04:00
|
|
|
gboolean
|
|
|
|
_meta_plugin_xevent_filter (MetaPlugin *plugin,
|
|
|
|
XEvent *xev)
|
|
|
|
{
|
|
|
|
MetaPluginClass *klass = META_PLUGIN_GET_CLASS (plugin);
|
|
|
|
|
2014-04-22 12:42:14 -04:00
|
|
|
if (klass->xevent_filter)
|
|
|
|
return klass->xevent_filter (plugin, xev);
|
2013-09-04 12:11:43 -04:00
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_switch_workspace_completed (MetaPlugin *plugin)
|
2010-06-16 17:15:56 -04:00
|
|
|
{
|
2018-10-30 06:19:36 -04:00
|
|
|
MetaPluginPrivate *priv = meta_plugin_get_instance_private (plugin);
|
2010-06-16 17:15:56 -04:00
|
|
|
|
2014-03-18 17:31:22 -04:00
|
|
|
meta_switch_workspace_completed (priv->compositor);
|
2010-06-16 17:15:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_window_effect_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor,
|
|
|
|
unsigned long event)
|
2008-12-17 04:33:56 -05:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_window_actor_effect_completed (actor, event);
|
2010-06-16 17:15:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_minimize_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-16 17:15:56 -04:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_MINIMIZE);
|
2010-06-16 17:15:56 -04:00
|
|
|
}
|
|
|
|
|
2013-06-13 21:01:17 -04:00
|
|
|
void
|
|
|
|
meta_plugin_unminimize_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
|
|
|
{
|
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_UNMINIMIZE);
|
|
|
|
}
|
|
|
|
|
2010-06-16 17:15:56 -04:00
|
|
|
void
|
2015-07-06 00:08:08 -04:00
|
|
|
meta_plugin_size_change_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-16 17:15:56 -04:00
|
|
|
{
|
2015-07-06 00:08:08 -04:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_SIZE_CHANGE);
|
2010-06-16 17:15:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_map_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-16 17:15:56 -04:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_MAP);
|
2010-06-16 17:15:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_destroy_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-16 17:15:56 -04:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_DESTROY);
|
2008-12-17 04:33:56 -05:00
|
|
|
}
|
|
|
|
|
2008-11-17 16:34:28 -05:00
|
|
|
/**
|
2017-08-26 15:43:17 -04:00
|
|
|
* meta_plugin_get_display:
|
2010-10-18 13:27:14 -04:00
|
|
|
* @plugin: a #MetaPlugin
|
2008-11-17 16:34:28 -05:00
|
|
|
*
|
2017-08-26 15:43:17 -04:00
|
|
|
* Gets the #MetaDisplay corresponding to a plugin.
|
2008-11-17 16:34:28 -05:00
|
|
|
*
|
2017-08-26 15:43:17 -04:00
|
|
|
* Return value: (transfer none): the #MetaDisplay for the plugin
|
2008-11-17 16:34:28 -05:00
|
|
|
*/
|
2017-08-26 15:43:17 -04:00
|
|
|
MetaDisplay *
|
|
|
|
meta_plugin_get_display (MetaPlugin *plugin)
|
2008-12-17 04:33:56 -05:00
|
|
|
{
|
2018-10-30 06:19:36 -04:00
|
|
|
MetaPluginPrivate *priv = meta_plugin_get_instance_private (plugin);
|
2019-08-14 13:04:41 -04:00
|
|
|
MetaDisplay *display = meta_compositor_get_display (priv->compositor);
|
2008-12-17 04:33:56 -05:00
|
|
|
|
2019-08-14 13:04:41 -04:00
|
|
|
return display;
|
2008-12-17 04:33:56 -05:00
|
|
|
}
|
2013-07-29 04:12:24 -04:00
|
|
|
|
2014-03-18 17:41:22 -04:00
|
|
|
void
|
2014-03-18 17:31:22 -04:00
|
|
|
_meta_plugin_set_compositor (MetaPlugin *plugin, MetaCompositor *compositor)
|
2014-03-18 17:41:22 -04:00
|
|
|
{
|
2018-10-30 06:19:36 -04:00
|
|
|
MetaPluginPrivate *priv = meta_plugin_get_instance_private (plugin);
|
2014-03-18 17:41:22 -04:00
|
|
|
|
2014-03-18 17:31:22 -04:00
|
|
|
priv->compositor = compositor;
|
2014-03-18 17:41:22 -04:00
|
|
|
}
|
|
|
|
|
2013-07-29 04:12:24 -04:00
|
|
|
void
|
|
|
|
meta_plugin_complete_display_change (MetaPlugin *plugin,
|
|
|
|
gboolean ok)
|
|
|
|
{
|
2022-05-27 16:17:13 -04:00
|
|
|
MetaPluginPrivate *priv = meta_plugin_get_instance_private (plugin);
|
|
|
|
MetaBackend *backend = meta_compositor_get_backend (priv->compositor);
|
|
|
|
MetaMonitorManager *monitor_manager =
|
|
|
|
meta_backend_get_monitor_manager (backend);
|
2013-07-29 04:12:24 -04:00
|
|
|
|
2022-05-27 16:17:13 -04:00
|
|
|
meta_monitor_manager_confirm_configuration (monitor_manager, ok);
|
2013-07-29 04:12:24 -04:00
|
|
|
}
|