2fd4c9058d
* Add screen-width, screen-height, overlay-group properties * Add set_stage_input_area() function * Fix main.js to rotate DRAFT properly svn path=/trunk/; revision=6
29 lines
586 B
C
29 lines
586 B
C
/* -*- 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;
|
|
}
|
|
|
|
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)
|
|
{
|
|
}
|