2008-10-16 11:50:01 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Matthew Allum
|
|
|
|
* Copyright (C) 2007 Iain Holmes
|
|
|
|
* Based on xcompmgr - (c) 2003 Keith Packard
|
|
|
|
* xfwm4 - (c) 2005-2007 Olivier Fourdan
|
|
|
|
*
|
|
|
|
* 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 01:42:06 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2008-10-16 11:50:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MUTTER_H_
|
|
|
|
#define MUTTER_H_
|
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "meta/compositor.h"
|
|
|
|
#include "meta/meta-window-actor.h"
|
|
|
|
#include "meta/types.h"
|
2008-10-16 11:50:01 +00:00
|
|
|
|
2009-06-26 19:33:20 +00:00
|
|
|
/* Public compositor API */
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
ClutterActor *meta_get_stage_for_display (MetaDisplay *display);
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
GList *meta_get_window_actors (MetaDisplay *display);
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
ClutterActor *meta_get_window_group_for_display (MetaDisplay *display);
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
ClutterActor *meta_get_top_window_group_for_display (MetaDisplay *display);
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
ClutterActor *meta_get_feedback_group_for_display (MetaDisplay *display);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
void meta_disable_unredirect_for_display (MetaDisplay *display);
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
void meta_enable_unredirect_for_display (MetaDisplay *display);
|
|
|
|
|
2019-01-23 02:25:35 +00:00
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
void meta_focus_stage_window (MetaDisplay *display,
|
|
|
|
guint32 timestamp);
|
2019-01-23 02:25:35 +00:00
|
|
|
|
|
|
|
META_EXPORT
|
2017-08-26 19:43:17 +00:00
|
|
|
gboolean meta_stage_is_focused (MetaDisplay *display);
|
2010-11-14 17:37:17 +00:00
|
|
|
|
2008-10-16 11:50:01 +00:00
|
|
|
#endif
|