2008-09-18 11:09:11 -04: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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2008-10-16 07:50:01 -04:00
|
|
|
#ifndef MUTTER_PLUGIN_H_
|
|
|
|
#define MUTTER_PLUGIN_H_
|
2008-09-18 11:09:11 -04:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
#include "compositor.h"
|
2008-10-16 07:50:01 -04:00
|
|
|
#include "compositor-mutter.h"
|
2008-09-18 11:09:11 -04:00
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
2008-10-29 09:03:03 -04:00
|
|
|
#include <X11/extensions/Xfixes.h>
|
2008-11-20 06:51:56 -05:00
|
|
|
#include <gmodule.h>
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
#define MUTTER_TYPE_PLUGIN (mutter_plugin_get_type ())
|
|
|
|
#define MUTTER_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MUTTER_TYPE_PLUGIN, MutterPlugin))
|
|
|
|
#define MUTTER_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MUTTER_TYPE_PLUGIN, MutterPluginClass))
|
2009-06-21 22:36:06 -04:00
|
|
|
#define MUTTER_IS_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MUTTER_TYPE_PLUGIN))
|
2008-12-17 04:33:56 -05:00
|
|
|
#define MUTTER_IS_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MUTTER_TYPE_PLUGIN))
|
|
|
|
#define MUTTER_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MUTTER_TYPE_PLUGIN, MutterPluginClass))
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* MetaMutterPlugin: (skip)
|
|
|
|
*
|
|
|
|
*/
|
2008-12-17 04:33:56 -05:00
|
|
|
typedef struct _MutterPlugin MutterPlugin;
|
2010-09-01 15:39:53 -04:00
|
|
|
/**
|
|
|
|
* MetaMutterPluginClass: (skip)
|
|
|
|
*
|
|
|
|
*/
|
2008-12-17 04:33:56 -05:00
|
|
|
typedef struct _MutterPluginClass MutterPluginClass;
|
|
|
|
typedef struct _MutterPluginVersion MutterPluginVersion;
|
|
|
|
typedef struct _MutterPluginInfo MutterPluginInfo;
|
|
|
|
typedef struct _MutterPluginPrivate MutterPluginPrivate;
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
struct _MutterPlugin
|
|
|
|
{
|
|
|
|
GObject parent;
|
2008-10-16 18:02:34 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
MutterPluginPrivate *priv;
|
|
|
|
};
|
2008-10-13 07:23:47 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
struct _MutterPluginClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2010-04-12 17:34:49 -04:00
|
|
|
void (*start) (MutterPlugin *plugin);
|
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void (*minimize) (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void (*maximize) (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor,
|
2008-09-18 11:09:11 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void (*unmaximize) (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor,
|
2008-09-18 11:09:11 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void (*map) (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void (*destroy) (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
void (*switch_workspace) (MutterPlugin *plugin,
|
2008-09-18 11:09:11 -04:00
|
|
|
gint from,
|
2008-10-09 12:57:12 -04:00
|
|
|
gint to,
|
|
|
|
MetaMotionDirection direction);
|
2008-09-18 11:09:11 -04:00
|
|
|
|
|
|
|
/*
|
2010-06-16 17:15:56 -04:00
|
|
|
* Called if an effects should be killed prematurely; the plugin must
|
2008-09-18 11:09:11 -04:00
|
|
|
* call the completed() callback as if the effect terminated naturally.
|
|
|
|
*/
|
2010-06-16 17:15:56 -04:00
|
|
|
void (*kill_window_effects) (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
|
|
|
|
|
|
|
void (*kill_switch_workspace) (MutterPlugin *plugin);
|
2008-09-18 11:09:11 -04:00
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
/* General XEvent filter. This is fired *before* mutter itself handles
|
2008-10-07 11:29:03 -04:00
|
|
|
* an event. Return TRUE to block any further processing.
|
2008-10-13 07:23:47 -04:00
|
|
|
*/
|
2008-12-17 04:33:56 -05:00
|
|
|
gboolean (*xevent_filter) (MutterPlugin *plugin,
|
|
|
|
XEvent *event);
|
|
|
|
|
|
|
|
const MutterPluginInfo * (*plugin_info) (MutterPlugin *plugin);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _MutterPluginInfo
|
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
const gchar *version;
|
|
|
|
const gchar *author;
|
|
|
|
const gchar *license;
|
|
|
|
const gchar *description;
|
|
|
|
};
|
2008-10-02 07:16:15 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
GType mutter_plugin_get_type (void);
|
2008-10-16 18:02:34 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
gulong mutter_plugin_features (MutterPlugin *plugin);
|
|
|
|
gboolean mutter_plugin_disabled (MutterPlugin *plugin);
|
|
|
|
gboolean mutter_plugin_running (MutterPlugin *plugin);
|
|
|
|
gboolean mutter_plugin_debug_mode (MutterPlugin *plugin);
|
|
|
|
const MutterPluginInfo * mutter_plugin_get_info (MutterPlugin *plugin);
|
|
|
|
|
|
|
|
struct _MutterPluginVersion
|
|
|
|
{
|
|
|
|
/*
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
* Version information; the first three numbers match the Mutter version
|
2008-12-17 04:33:56 -05:00
|
|
|
* with which the plugin was compiled (see clutter-plugins/simple.c for sample
|
|
|
|
* code).
|
|
|
|
*/
|
|
|
|
guint version_major;
|
|
|
|
guint version_minor;
|
|
|
|
guint version_micro;
|
2008-09-18 11:09:11 -04:00
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
/*
|
|
|
|
* Version of the plugin API; this is unrelated to the matacity version
|
|
|
|
* per se. The API version is checked by the plugin manager and must match
|
|
|
|
* the one used by it (see clutter-plugins/default.c for sample code).
|
|
|
|
*/
|
|
|
|
guint version_api;
|
2008-09-18 11:09:11 -04:00
|
|
|
};
|
|
|
|
|
2008-12-17 04:33:56 -05:00
|
|
|
/*
|
|
|
|
* Convenience macro to set up the plugin type. Based on GEdit.
|
|
|
|
*/
|
|
|
|
#define MUTTER_PLUGIN_DECLARE(ObjectName, object_name) \
|
|
|
|
G_MODULE_EXPORT MutterPluginVersion mutter_plugin_version = \
|
|
|
|
{ \
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
MUTTER_MAJOR_VERSION, \
|
|
|
|
MUTTER_MINOR_VERSION, \
|
|
|
|
MUTTER_MICRO_VERSION, \
|
|
|
|
MUTTER_PLUGIN_API_VERSION \
|
2008-12-17 04:33:56 -05:00
|
|
|
}; \
|
|
|
|
\
|
|
|
|
static GType g_define_type_id = 0; \
|
|
|
|
\
|
|
|
|
/* Prototypes */ \
|
|
|
|
G_MODULE_EXPORT \
|
|
|
|
GType object_name##_get_type (void); \
|
|
|
|
\
|
|
|
|
G_MODULE_EXPORT \
|
|
|
|
GType object_name##_register_type (GTypeModule *type_module); \
|
|
|
|
\
|
|
|
|
G_MODULE_EXPORT \
|
|
|
|
GType mutter_plugin_register_type (GTypeModule *type_module); \
|
|
|
|
\
|
|
|
|
GType \
|
|
|
|
object_name##_get_type () \
|
|
|
|
{ \
|
|
|
|
return g_define_type_id; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static void object_name##_init (ObjectName *self); \
|
|
|
|
static void object_name##_class_init (ObjectName##Class *klass); \
|
|
|
|
static gpointer object_name##_parent_class = NULL; \
|
|
|
|
static void object_name##_class_intern_init (gpointer klass) \
|
|
|
|
{ \
|
|
|
|
object_name##_parent_class = g_type_class_peek_parent (klass); \
|
|
|
|
object_name##_class_init ((ObjectName##Class *) klass); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
GType \
|
|
|
|
object_name##_register_type (GTypeModule *type_module) \
|
|
|
|
{ \
|
|
|
|
static const GTypeInfo our_info = \
|
|
|
|
{ \
|
|
|
|
sizeof (ObjectName##Class), \
|
|
|
|
NULL, /* base_init */ \
|
|
|
|
NULL, /* base_finalize */ \
|
|
|
|
(GClassInitFunc) object_name##_class_intern_init, \
|
|
|
|
NULL, \
|
|
|
|
NULL, /* class_data */ \
|
|
|
|
sizeof (ObjectName), \
|
|
|
|
0, /* n_preallocs */ \
|
|
|
|
(GInstanceInitFunc) object_name##_init \
|
|
|
|
}; \
|
|
|
|
\
|
|
|
|
g_define_type_id = g_type_module_register_type (type_module, \
|
|
|
|
MUTTER_TYPE_PLUGIN, \
|
|
|
|
#ObjectName, \
|
|
|
|
&our_info, \
|
|
|
|
0); \
|
|
|
|
\
|
|
|
|
\
|
|
|
|
return g_define_type_id; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
G_MODULE_EXPORT GType \
|
|
|
|
mutter_plugin_register_type (GTypeModule *type_module) \
|
|
|
|
{ \
|
|
|
|
return object_name##_register_type (type_module); \
|
|
|
|
} \
|
2008-10-27 06:34:32 -04:00
|
|
|
|
2008-10-08 11:01:04 -04:00
|
|
|
void
|
2010-06-16 17:15:56 -04:00
|
|
|
mutter_plugin_switch_workspace_completed (MutterPlugin *plugin);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_minimize_completed (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_maximize_completed (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_unmaximize_completed (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_map_completed (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_destroy_completed (MutterPlugin *plugin,
|
|
|
|
MutterWindow *actor);
|
2008-10-16 18:02:34 -04:00
|
|
|
|
|
|
|
ClutterActor *
|
|
|
|
mutter_plugin_get_overlay_group (MutterPlugin *plugin);
|
|
|
|
|
2008-10-28 07:30:29 -04:00
|
|
|
ClutterActor *
|
|
|
|
mutter_plugin_get_window_group (MutterPlugin *plugin);
|
|
|
|
|
2008-10-16 18:02:34 -04:00
|
|
|
ClutterActor *
|
|
|
|
mutter_plugin_get_stage (MutterPlugin *plugin);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_query_screen_size (MutterPlugin *plugin,
|
|
|
|
int *width,
|
|
|
|
int *height);
|
2008-10-08 11:01:04 -04:00
|
|
|
|
2008-10-16 18:02:34 -04:00
|
|
|
void
|
|
|
|
mutter_plugin_set_stage_reactive (MutterPlugin *plugin,
|
|
|
|
gboolean reactive);
|
2008-10-13 07:23:47 -04:00
|
|
|
|
|
|
|
void
|
2008-10-16 18:02:34 -04:00
|
|
|
mutter_plugin_set_stage_input_area (MutterPlugin *plugin,
|
|
|
|
gint x, gint y, gint width, gint height);
|
2008-10-13 07:23:47 -04:00
|
|
|
|
2008-10-29 09:03:03 -04:00
|
|
|
void
|
|
|
|
mutter_plugin_set_stage_input_region (MutterPlugin *plugin,
|
|
|
|
XserverRegion region);
|
|
|
|
|
2009-08-12 00:12:52 -04:00
|
|
|
/**
|
|
|
|
* MetaModalOptions:
|
|
|
|
* @META_MODAL_POINTER_ALREADY_GRABBED: if set the pointer is already
|
|
|
|
* grabbed by the plugin and should not be grabbed again.
|
|
|
|
* @META_MODAL_KEYBOARD_ALREADY_GRABBED: if set the keyboard is already
|
|
|
|
* grabbed by the plugin and should not be grabbed again.
|
|
|
|
*
|
|
|
|
* Options that can be provided when calling mutter_plugin_begin_modal().
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
META_MODAL_POINTER_ALREADY_GRABBED = 1 << 0,
|
|
|
|
META_MODAL_KEYBOARD_ALREADY_GRABBED = 1 << 1
|
|
|
|
} MetaModalOptions;
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
mutter_plugin_begin_modal (MutterPlugin *plugin,
|
|
|
|
Window grab_window,
|
|
|
|
Cursor cursor,
|
|
|
|
MetaModalOptions options,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_end_modal (MutterPlugin *plugin,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
2008-10-24 05:07:24 -04:00
|
|
|
GList *
|
|
|
|
mutter_plugin_get_windows (MutterPlugin *plugin);
|
|
|
|
|
2008-10-29 09:27:35 -04:00
|
|
|
Display *
|
|
|
|
mutter_plugin_get_xdisplay (MutterPlugin *plugin);
|
|
|
|
|
2008-11-03 05:07:12 -05:00
|
|
|
MetaScreen *
|
|
|
|
mutter_plugin_get_screen (MutterPlugin *plugin);
|
|
|
|
|
2008-12-22 16:53:10 -05:00
|
|
|
void
|
|
|
|
_mutter_plugin_effect_started (MutterPlugin *plugin);
|
|
|
|
|
2008-10-16 07:50:01 -04:00
|
|
|
#endif /* MUTTER_PLUGIN_H_ */
|