2008-12-17 09:33:56 +00: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-12 08:42:06 +07:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2008-12-17 09:33:56 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-11 16:52:36 +01:00
|
|
|
/**
|
2023-03-28 16:35:11 +02:00
|
|
|
* MetaPlugin:
|
2023-05-23 20:25:54 +02:00
|
|
|
*
|
2023-03-28 16:35:11 +02:00
|
|
|
* Entry point for plugins
|
2013-03-11 16:52:36 +01:00
|
|
|
*/
|
|
|
|
|
2018-07-10 10:36:24 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "meta/meta-plugin.h"
|
2008-12-17 09:33:56 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-07-10 10:36:24 +02:00
|
|
|
#include "backends/meta-monitor-manager-private.h"
|
|
|
|
#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 11:19:36 +01:00
|
|
|
|
|
|
|
typedef struct _MetaPluginPrivate
|
2008-12-17 09:33:56 +00:00
|
|
|
{
|
2014-03-18 17:31:22 -04:00
|
|
|
MetaCompositor *compositor;
|
2018-10-30 11:19:36 +01:00
|
|
|
} MetaPluginPrivate;
|
2008-12-17 09:33:56 +00:00
|
|
|
|
2018-07-19 13:40:39 +02:00
|
|
|
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MetaPlugin, meta_plugin, G_TYPE_OBJECT);
|
|
|
|
|
2008-12-17 09:33:56 +00:00
|
|
|
static void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_class_init (MetaPluginClass *klass)
|
2008-12-17 09:33:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_init (MetaPlugin *self)
|
2008-12-17 09:33:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-10-18 13:27:14 -04:00
|
|
|
const MetaPluginInfo *
|
|
|
|
meta_plugin_get_info (MetaPlugin *plugin)
|
2008-12-17 09:33:56 +00:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
MetaPluginClass *klass = META_PLUGIN_GET_CLASS (plugin);
|
2008-12-17 09:33:56 +00:00
|
|
|
|
|
|
|
if (klass && klass->plugin_info)
|
|
|
|
return klass->plugin_info (plugin);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_switch_workspace_completed (MetaPlugin *plugin)
|
2010-06-17 01:15:56 +04:00
|
|
|
{
|
2018-10-30 11:19:36 +01:00
|
|
|
MetaPluginPrivate *priv = meta_plugin_get_instance_private (plugin);
|
2010-06-17 01:15:56 +04:00
|
|
|
|
2014-03-18 17:31:22 -04:00
|
|
|
meta_switch_workspace_completed (priv->compositor);
|
2010-06-17 01: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 09:33:56 +00:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_window_actor_effect_completed (actor, event);
|
2010-06-17 01:15:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_minimize_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-17 01:15:56 +04:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_MINIMIZE);
|
2010-06-17 01:15:56 +04:00
|
|
|
}
|
|
|
|
|
2013-06-13 18:01:17 -07:00
|
|
|
void
|
|
|
|
meta_plugin_unminimize_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
|
|
|
{
|
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_UNMINIMIZE);
|
|
|
|
}
|
|
|
|
|
2010-06-17 01:15:56 +04:00
|
|
|
void
|
2015-07-05 21:08:08 -07:00
|
|
|
meta_plugin_size_change_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-17 01:15:56 +04:00
|
|
|
{
|
2015-07-05 21:08:08 -07:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_SIZE_CHANGE);
|
2010-06-17 01:15:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_map_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-17 01:15:56 +04:00
|
|
|
{
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_window_effect_completed (plugin, actor, META_PLUGIN_MAP);
|
2010-06-17 01:15:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-18 13:27:14 -04:00
|
|
|
meta_plugin_destroy_completed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-17 01: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 09:33:56 +00:00
|
|
|
}
|
|
|
|
|
2008-11-17 16:34:28 -05:00
|
|
|
/**
|
2017-08-26 21:43:17 +02: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 21:43:17 +02:00
|
|
|
* Gets the #MetaDisplay corresponding to a plugin.
|
2008-11-17 16:34:28 -05:00
|
|
|
*
|
2017-08-26 21:43:17 +02:00
|
|
|
* Return value: (transfer none): the #MetaDisplay for the plugin
|
2008-11-17 16:34:28 -05:00
|
|
|
*/
|
2017-08-26 21:43:17 +02:00
|
|
|
MetaDisplay *
|
|
|
|
meta_plugin_get_display (MetaPlugin *plugin)
|
2008-12-17 09:33:56 +00:00
|
|
|
{
|
2018-10-30 11:19:36 +01:00
|
|
|
MetaPluginPrivate *priv = meta_plugin_get_instance_private (plugin);
|
2019-08-14 19:04:41 +02:00
|
|
|
MetaDisplay *display = meta_compositor_get_display (priv->compositor);
|
2008-12-17 09:33:56 +00:00
|
|
|
|
2019-08-14 19:04:41 +02:00
|
|
|
return display;
|
2008-12-17 09:33:56 +00:00
|
|
|
}
|
2013-07-29 10:12:24 +02: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 11:19:36 +01: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 10:12:24 +02:00
|
|
|
void
|
|
|
|
meta_plugin_complete_display_change (MetaPlugin *plugin,
|
|
|
|
gboolean ok)
|
|
|
|
{
|
2022-05-27 22:17:13 +02: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 10:12:24 +02:00
|
|
|
|
2022-05-27 22:17:13 +02:00
|
|
|
meta_monitor_manager_confirm_configuration (monitor_manager, ok);
|
2013-07-29 10:12:24 +02:00
|
|
|
}
|