2006-10-01 22:30:10 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2014-03-19 09:11:23 -04:00
|
|
|
/* Mutter window groups */
|
2002-08-12 21:32:13 +00:00
|
|
|
|
2014-03-19 09:11:23 -04:00
|
|
|
/*
|
2002-08-12 21:32:13 +00:00
|
|
|
* Copyright (C) 2002 Red Hat Inc.
|
2014-03-19 09:11:23 -04:00
|
|
|
*
|
2002-08-12 21:32:13 +00:00
|
|
|
* 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.
|
2014-03-19 09:11:23 -04:00
|
|
|
*
|
2002-08-12 21:32:13 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-12 08:42:06 +07:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2002-08-12 21:32:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_GROUP_H
|
|
|
|
#define META_GROUP_H
|
|
|
|
|
2009-01-15 15:37:48 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <glib.h>
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/types.h>
|
2002-08-12 21:32:13 +00:00
|
|
|
|
|
|
|
/* note, can return NULL */
|
|
|
|
MetaGroup* meta_window_get_group (MetaWindow *window);
|
2014-03-19 09:11:23 -04:00
|
|
|
void meta_window_compute_group (MetaWindow* window);
|
2002-08-12 21:32:13 +00:00
|
|
|
void meta_window_shutdown_group (MetaWindow *window);
|
|
|
|
|
2002-12-01 03:58:04 +00:00
|
|
|
void meta_window_group_leader_changed (MetaWindow *window);
|
|
|
|
|
2002-08-12 21:32:13 +00:00
|
|
|
/* note, can return NULL */
|
|
|
|
MetaGroup* meta_display_lookup_group (MetaDisplay *display,
|
|
|
|
Window group_leader);
|
|
|
|
|
|
|
|
GSList* meta_group_list_windows (MetaGroup *group);
|
|
|
|
|
|
|
|
void meta_group_update_layers (MetaGroup *group);
|
|
|
|
|
2002-12-01 03:58:04 +00:00
|
|
|
const char* meta_group_get_startup_id (MetaGroup *group);
|
|
|
|
|
2009-01-15 15:21:43 +00:00
|
|
|
int meta_group_get_size (MetaGroup *group);
|
|
|
|
|
2002-12-01 03:58:04 +00:00
|
|
|
gboolean meta_group_property_notify (MetaGroup *group,
|
|
|
|
XEvent *event);
|
|
|
|
|
2002-08-12 21:32:13 +00:00
|
|
|
#endif
|
2014-03-19 09:11:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|