2018-05-02 16:53:11 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
#ifndef META_WINDOW_GROUP_PRIVATE_H
|
|
|
|
#define META_WINDOW_GROUP_PRIVATE_H
|
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "meta/display.h"
|
|
|
|
#include "meta/meta-window-group.h"
|
2018-05-02 16:53:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MetaWindowGroup:
|
|
|
|
*
|
|
|
|
* This class is a subclass of ClutterActor with special handling for
|
|
|
|
* #MetaCullable when painting children. It uses code similar to
|
|
|
|
* meta_cullable_cull_out_children(), but also has additional special
|
|
|
|
* cases for the undirected window, and similar.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _MetaWindowGroupPrivate MetaWindowGroupPrivate;
|
|
|
|
|
2017-08-26 19:43:17 +00:00
|
|
|
ClutterActor *meta_window_group_new (MetaDisplay *display);
|
2018-05-02 16:53:11 +00:00
|
|
|
|
|
|
|
#endif /* META_WINDOW_GROUP_PRIVATE_H */
|