2010-11-14 12:37:17 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
|
|
* meta-background-actor.h: Actor for painting the root window background
|
|
|
|
*
|
|
|
|
* Copyright 2010 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2010-11-14 12:37:17 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_BACKGROUND_ACTOR_H
|
|
|
|
#define META_BACKGROUND_ACTOR_H
|
|
|
|
|
2020-07-13 05:11:34 -04:00
|
|
|
#include <gdesktop-enums.h>
|
2013-01-23 15:54:41 -05:00
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "meta/meta-background.h"
|
|
|
|
|
2010-11-14 12:37:17 -05:00
|
|
|
/**
|
|
|
|
* MetaBackgroundActor:
|
|
|
|
*
|
|
|
|
* This class handles tracking and painting the root window background.
|
|
|
|
* By integrating with #MetaWindowGroup we can avoid painting parts of
|
|
|
|
* the background that are obscured by other windows.
|
|
|
|
*/
|
|
|
|
|
2018-10-31 06:47:17 -04:00
|
|
|
#define META_TYPE_BACKGROUND_ACTOR (meta_background_actor_get_type ())
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2018-10-31 06:47:17 -04:00
|
|
|
G_DECLARE_FINAL_TYPE (MetaBackgroundActor,
|
|
|
|
meta_background_actor,
|
|
|
|
META, BACKGROUND_ACTOR,
|
|
|
|
ClutterActor)
|
2010-11-14 12:37:17 -05:00
|
|
|
|
2011-08-28 14:09:42 -04:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2017-08-26 15:43:17 -04:00
|
|
|
ClutterActor *meta_background_actor_new (MetaDisplay *display,
|
|
|
|
int monitor);
|
2014-08-10 11:26:14 -04:00
|
|
|
|
2010-11-14 12:37:17 -05:00
|
|
|
#endif /* META_BACKGROUND_ACTOR_H */
|