2008-10-31 00:22:44 -04: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 11:20:54 -04:00
|
|
|
|
2008-11-02 00:18:41 -04:00
|
|
|
GList *
|
|
|
|
mutter_plugin_get_windows (MutterPlugin *plugin)
|
|
|
|
{
|
2008-11-08 10:49:01 -05:00
|
|
|
return NULL;
|
2008-11-02 00:18:41 -04:00
|
|
|
}
|
|
|
|
|
2008-10-31 11:20:54 -04: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 13:42:23 -05:00
|
|
|
|
|
|
|
MetaScreen *
|
|
|
|
mutter_plugin_get_screen (MutterPlugin *plugin)
|
|
|
|
{
|
2008-11-08 10:49:01 -05:00
|
|
|
return NULL;
|
2008-11-07 13:42:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Display *
|
|
|
|
meta_display_get_xdisplay (MetaDisplay *display)
|
|
|
|
{
|
2008-11-08 10:49:01 -05:00
|
|
|
return NULL;
|
2008-11-07 13:42:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
MetaDisplay *
|
|
|
|
meta_screen_get_display (MetaScreen *display)
|
|
|
|
{
|
2008-11-08 10:49:01 -05:00
|
|
|
return NULL;
|
2008-11-07 13:42:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Window
|
|
|
|
meta_screen_get_xroot (MetaScreen *display)
|
|
|
|
{
|
2008-11-08 10:49:01 -05:00
|
|
|
return None;
|
2008-11-07 13:42:23 -05:00
|
|
|
}
|