2008-10-31 04:22:44 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
#include <mutter-plugin.h>
|
|
|
|
|
|
|
|
ClutterActor *
|
|
|
|
mutter_plugin_get_overlay_group (MutterPlugin *plugin)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClutterActor *
|
|
|
|
mutter_plugin_get_stage (MutterPlugin *plugin)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-31 15:20:54 +00:00
|
|
|
|
2008-11-02 04:18:41 +00:00
|
|
|
GList *
|
|
|
|
mutter_plugin_get_windows (MutterPlugin *plugin)
|
|
|
|
{
|
2008-11-08 15:49:01 +00:00
|
|
|
return NULL;
|
2008-11-02 04:18:41 +00:00
|
|
|
}
|
|
|
|
|
2008-10-31 15:20:54 +00:00
|
|
|
void
|
|
|
|
mutter_plugin_query_screen_size (MutterPlugin *plugin,
|
|
|
|
int *width,
|
|
|
|
int *height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mutter_plugin_set_stage_input_area (MutterPlugin *plugin,
|
|
|
|
gint x, gint y, gint width, gint height)
|
|
|
|
{
|
|
|
|
}
|
2008-11-07 18:42:23 +00:00
|
|
|
|
|
|
|
MetaScreen *
|
|
|
|
mutter_plugin_get_screen (MutterPlugin *plugin)
|
|
|
|
{
|
2008-11-08 15:49:01 +00:00
|
|
|
return NULL;
|
2008-11-07 18:42:23 +00:00
|
|
|
}
|
|
|
|
|
2008-11-08 19:33:33 +00:00
|
|
|
ClutterActor *
|
|
|
|
mutter_plugin_get_window_group (MutterPlugin *plugin)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-11-07 18:42:23 +00:00
|
|
|
Display *
|
|
|
|
meta_display_get_xdisplay (MetaDisplay *display)
|
|
|
|
{
|
2008-11-08 15:49:01 +00:00
|
|
|
return NULL;
|
2008-11-07 18:42:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MetaDisplay *
|
|
|
|
meta_screen_get_display (MetaScreen *display)
|
|
|
|
{
|
2008-11-08 15:49:01 +00:00
|
|
|
return NULL;
|
2008-11-07 18:42:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Window
|
|
|
|
meta_screen_get_xroot (MetaScreen *display)
|
|
|
|
{
|
2008-11-08 15:49:01 +00:00
|
|
|
return None;
|
2008-11-07 18:42:23 +00:00
|
|
|
}
|