2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2008-05-30 18:27:43 -04:00
|
|
|
/**
|
2008-08-18 06:25:17 -04:00
|
|
|
* \file window-props.h MetaWindow property handling
|
2008-05-30 18:27:43 -04:00
|
|
|
*
|
|
|
|
* A system which can inspect sets of properties of given windows
|
|
|
|
* and take appropriate action given their values.
|
|
|
|
*
|
|
|
|
* Note that all the meta_window_reload_propert* functions require a
|
|
|
|
* round trip to the server.
|
|
|
|
*/
|
2002-11-03 18:42:21 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001, 2002 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_WINDOW_PROPS_H
|
|
|
|
#define META_WINDOW_PROPS_H
|
|
|
|
|
2008-05-18 20:00:09 -04:00
|
|
|
#include "window-private.h"
|
2002-11-03 18:42:21 -05:00
|
|
|
|
2008-05-30 18:27:43 -04:00
|
|
|
/**
|
2008-05-30 18:30:20 -04:00
|
|
|
* Requests the current values of a single property for a given
|
|
|
|
* window from the server, and deals with it appropriately.
|
|
|
|
* Does not return it to the caller (it's been dealt with!)
|
2008-05-30 18:27:43 -04:00
|
|
|
*
|
|
|
|
* \param window The window.
|
|
|
|
* \param property A single X atom.
|
|
|
|
*/
|
2002-11-03 18:42:21 -05:00
|
|
|
void meta_window_reload_property (MetaWindow *window,
|
2009-01-26 22:53:07 -05:00
|
|
|
Atom property,
|
|
|
|
gboolean initial);
|
2008-05-30 18:27:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Requests the current values of a set of properties for a given
|
|
|
|
* window from the server, and deals with them appropriately.
|
|
|
|
* Does not return them to the caller (they've been dealt with!)
|
|
|
|
*
|
|
|
|
* \param window The window.
|
|
|
|
* \param properties A pointer to a list of X atoms, "n_properties" long.
|
|
|
|
* \param n_properties The length of the properties list.
|
|
|
|
*/
|
2002-11-03 18:42:21 -05:00
|
|
|
void meta_window_reload_properties (MetaWindow *window,
|
|
|
|
const Atom *properties,
|
2009-01-26 22:53:07 -05:00
|
|
|
int n_properties,
|
|
|
|
gboolean initial);
|
2008-05-30 18:27:43 -04:00
|
|
|
|
|
|
|
/**
|
2008-05-30 18:30:20 -04:00
|
|
|
* Requests the current values of a single property for a given
|
|
|
|
* window from the server, and deals with it appropriately.
|
|
|
|
* Does not return it to the caller (it's been dealt with!)
|
2008-05-30 18:27:43 -04:00
|
|
|
*
|
|
|
|
* \param window A window on the same display as the one we're
|
|
|
|
* investigating (only used to find the display)
|
|
|
|
* \param xwindow The X handle for the window.
|
|
|
|
* \param property A single X atom.
|
|
|
|
*/
|
2007-03-31 01:19:41 -04:00
|
|
|
void meta_window_reload_property_from_xwindow
|
|
|
|
(MetaWindow *window,
|
|
|
|
Window xwindow,
|
2009-01-26 22:53:07 -05:00
|
|
|
Atom property,
|
|
|
|
gboolean initial);
|
2008-05-30 18:27:43 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Requests the current values of a set of properties for a given
|
|
|
|
* window from the server, and deals with them appropriately.
|
|
|
|
* Does not return them to the caller (they've been dealt with!)
|
|
|
|
*
|
|
|
|
* \param window A window on the same display as the one we're
|
|
|
|
* investigating (only used to find the display)
|
|
|
|
* \param xwindow The X handle for the window.
|
|
|
|
* \param properties A pointer to a list of X atoms, "n_properties" long.
|
|
|
|
* \param n_properties The length of the properties list.
|
|
|
|
*/
|
2007-03-31 01:19:41 -04:00
|
|
|
void meta_window_reload_properties_from_xwindow
|
|
|
|
(MetaWindow *window,
|
|
|
|
Window xwindow,
|
|
|
|
const Atom *properties,
|
2009-01-26 22:53:07 -05:00
|
|
|
int n_properties,
|
|
|
|
gboolean initial);
|
2002-11-03 18:42:21 -05:00
|
|
|
|
2009-06-14 08:37:57 -04:00
|
|
|
/**
|
|
|
|
* Requests the current values for standard properties for a given
|
|
|
|
* window from the server, and deals with them appropriately.
|
|
|
|
* Does not return them to the caller (they've been dealt with!)
|
|
|
|
*
|
|
|
|
* \param window The window.
|
|
|
|
*/
|
|
|
|
void meta_window_load_initial_properties (MetaWindow *window);
|
|
|
|
|
2008-05-30 18:27:43 -04:00
|
|
|
/**
|
|
|
|
* Initialises the hooks used for the reload_propert* functions
|
|
|
|
* on a particular display, and stores a pointer to them in the
|
|
|
|
* display.
|
|
|
|
*
|
|
|
|
* \param display The display.
|
|
|
|
*/
|
2002-11-03 18:42:21 -05:00
|
|
|
void meta_display_init_window_prop_hooks (MetaDisplay *display);
|
2008-05-30 18:27:43 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Frees the hooks used for the reload_propert* functions
|
|
|
|
* for a particular display.
|
|
|
|
*
|
|
|
|
* \param display The display.
|
|
|
|
*/
|
2002-11-03 18:42:21 -05:00
|
|
|
void meta_display_free_window_prop_hooks (MetaDisplay *display);
|
|
|
|
|
2008-05-30 18:27:43 -04:00
|
|
|
/**
|
|
|
|
* Sets the size hints for a window. This happens when a
|
|
|
|
* WM_NORMAL_HINTS property is set on a window, but it is public
|
|
|
|
* because the size hints are set to defaults when a window is
|
|
|
|
* created. See
|
|
|
|
* http://tronche.com/gui/x/icccm/sec-4.html#WM_NORMAL_HINTS
|
|
|
|
* for the X details.
|
|
|
|
*
|
|
|
|
* \param window The window to set the size hints on.
|
|
|
|
* \param hints Either some X size hints, or NULL for default.
|
|
|
|
*/
|
2003-04-26 13:40:32 -04:00
|
|
|
void meta_set_normal_hints (MetaWindow *window,
|
|
|
|
XSizeHints *hints);
|
|
|
|
|
2002-11-03 18:42:21 -05:00
|
|
|
#endif /* META_WINDOW_PROPS_H */
|