2006-10-01 18:30:10 -04:00
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
/* Mutter X property convenience routines */
2002-01-03 19:58:39 -05:00
2014-05-02 09:34:02 -04:00
/*
2002-01-03 19:58:39 -05:00
* Copyright ( C ) 2001 Havoc Pennington
2002-10-26 03:37:11 -04:00
* Copyright ( C ) 2002 Red Hat Inc .
2002-10-28 15:22:22 -05:00
*
* Some trivial property - unpacking code from Xlib :
* Copyright 1987 , 1988 , 1998 The Open Group
* Copyright 1988 by Wyse Technology , Inc . , San Jose , Ca ,
* Copyright 1987 by Digital Equipment Corporation , Maynard , Massachusetts ,
2014-05-02 09:34:02 -04:00
*
2002-01-03 19:58:39 -05: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-05-02 09:34:02 -04:00
*
2002-01-03 19:58:39 -05:00
* 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/>.
2002-01-03 19:58:39 -05:00
*/
2002-10-28 15:22:22 -05:00
/***********************************************************
Copyright 1988 by Wyse Technology , Inc . , San Jose , Ca ,
Copyright 1987 by Digital Equipment Corporation , Maynard , Massachusetts ,
All Rights Reserved
2014-05-02 09:34:02 -04:00
Permission to use , copy , modify , and distribute this software and its
documentation for any purpose and without fee is hereby granted ,
2002-10-28 15:22:22 -05:00
provided that the above copyright notice appear in all copies and that
2014-05-02 09:34:02 -04:00
both that copyright notice and this permission notice appear in
2002-10-28 15:22:22 -05:00
supporting documentation , and that the name Digital not be
used in advertising or publicity pertaining to distribution of the
2014-05-02 09:34:02 -04:00
software without specific , written prior permission .
DIGITAL AND WYSE DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE ,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS , IN NO
EVENT SHALL DIGITAL OR WYSE BE LIABLE FOR ANY SPECIAL , INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
USE , DATA OR PROFITS , WHETHER IN AN ACTION OF CONTRACT , NEGLIGENCE OR
OTHER TORTIOUS ACTION , ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2002-10-28 15:22:22 -05:00
PERFORMANCE OF THIS SOFTWARE .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
Copyright 1987 , 1988 , 1998 The Open Group
Permission to use , copy , modify , distribute , and sell this software and its
documentation for any purpose is hereby granted without fee , provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation .
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software .
THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS
OR IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY , FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT .
IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM , DAMAGES OR
OTHER LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE ,
ARISING FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE .
Except as contained in this notice , the name of The Open Group shall
not be used in advertising or otherwise to promote the sale , use or
other dealings in this Software without prior written authorization
from The Open Group .
*/
2015-06-17 20:43:04 -04:00
# include "config.h"
2018-07-10 04:36:24 -04:00
# include "x11/xprops.h"
2015-06-17 20:43:04 -04:00
# include <string.h>
# include <stdlib.h>
# include <X11/Xatom.h>
# include <X11/Xlib-xcb.h>
2018-07-10 04:36:24 -04:00
# include "core/util-private.h"
# include "core/window-private.h"
# include "meta/meta-x11-errors.h"
# include "x11/meta-x11-display-private.h"
# include "x11/mutter-Xatomtype.h"
2002-10-26 03:37:11 -04:00
typedef struct
{
2017-08-26 14:51:28 -04:00
MetaX11Display * x11_display ;
Window xwindow ;
Atom xatom ;
Atom type ;
int format ;
unsigned long n_items ;
unsigned long bytes_after ;
unsigned char * prop ;
2002-10-26 03:37:11 -04:00
} GetPropertyResults ;
2002-01-03 19:58:39 -05:00
static gboolean
2002-10-26 03:37:11 -04:00
validate_or_free_results ( GetPropertyResults * results ,
int expected_format ,
Atom expected_type ,
gboolean must_have_items )
2002-01-03 19:58:39 -05:00
{
2017-08-26 14:51:28 -04:00
MetaX11Display * x11_display = results - > x11_display ;
2002-01-03 19:58:39 -05:00
char * type_name ;
char * expected_name ;
char * prop_name ;
2002-12-15 16:59:38 -05:00
const char * title ;
const char * res_class ;
const char * res_name ;
MetaWindow * w ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
if ( expected_format = = results - > format & &
expected_type = = results - > type & &
( ! must_have_items | | results - > n_items > 0 ) )
2014-05-02 09:34:02 -04:00
return TRUE ;
2017-08-27 14:48:55 -04:00
meta_x11_error_trap_push ( x11_display ) ;
2017-08-26 12:26:30 -04:00
type_name = XGetAtomName ( x11_display - > xdisplay , results - > type ) ;
expected_name = XGetAtomName ( x11_display - > xdisplay , expected_type ) ;
prop_name = XGetAtomName ( x11_display - > xdisplay , results - > xatom ) ;
2017-08-27 14:48:55 -04:00
meta_x11_error_trap_pop ( x11_display ) ;
2002-01-03 19:58:39 -05:00
2017-08-26 12:56:44 -04:00
w = meta_x11_display_lookup_x_window ( x11_display , results - > xwindow ) ;
2002-12-15 16:59:38 -05:00
if ( w ! = NULL )
{
title = w - > title ;
res_class = w - > res_class ;
res_name = w - > res_name ;
}
else
{
title = NULL ;
res_class = NULL ;
res_name = NULL ;
}
2014-05-02 09:34:02 -04:00
2002-12-15 16:59:38 -05:00
if ( title = = NULL )
title = " unknown " ;
if ( res_class = = NULL )
res_class = " unknown " ;
if ( res_name = = NULL )
res_name = " unknown " ;
2014-05-02 09:34:02 -04:00
2020-10-02 11:47:22 -04:00
meta_warning ( " Window 0x%lx has property %s that was expected to have type %s format %d and actually has type %s format %d n_items %d. This is most likely an application bug, not a window manager bug. The window has title= \" %s \" class= \" %s \" name= \" %s \" " ,
2002-10-26 03:37:11 -04:00
results - > xwindow ,
2002-01-03 19:58:39 -05:00
prop_name ? prop_name : " (bad atom) " ,
expected_name ? expected_name : " (bad atom) " ,
expected_format ,
type_name ? type_name : " (bad atom) " ,
2002-12-15 13:55:08 -05:00
results - > format , ( int ) results - > n_items ,
2002-12-15 16:59:38 -05:00
title , res_class , res_name ) ;
2002-01-03 19:58:39 -05:00
2019-09-09 10:01:20 -04:00
meta_XFree ( type_name ) ;
meta_XFree ( expected_name ) ;
meta_XFree ( prop_name ) ;
2002-01-03 19:58:39 -05:00
2002-10-26 03:37:11 -04:00
if ( results - > prop )
{
2015-06-17 20:43:04 -04:00
g_free ( results - > prop ) ;
2002-10-26 03:37:11 -04:00
results - > prop = NULL ;
}
2014-05-02 09:34:02 -04:00
2002-01-03 19:58:39 -05:00
return FALSE ;
}
2015-06-17 20:43:04 -04:00
static xcb_get_property_cookie_t
async_get_property ( xcb_connection_t * xcb_conn , Window xwindow ,
Atom xatom , Atom required_type )
{
return xcb_get_property ( xcb_conn , False , xwindow ,
2015-06-17 23:33:07 -04:00
xatom , required_type , 0 , G_MAXUINT32 ) ;
2015-06-17 20:43:04 -04:00
}
static gboolean
async_get_property_finish ( xcb_connection_t * xcb_conn ,
xcb_get_property_cookie_t cookie ,
GetPropertyResults * results )
{
2021-02-08 12:19:01 -05:00
g_autofree xcb_get_property_reply_t * reply = NULL ;
g_autofree xcb_generic_error_t * error = NULL ;
2016-01-09 22:15:09 -05:00
int length ;
2015-06-17 20:43:04 -04:00
reply = xcb_get_property_reply ( xcb_conn , cookie , & error ) ;
2021-02-08 12:19:01 -05:00
if ( error | | ! reply )
return FALSE ;
2015-06-17 20:43:04 -04:00
results - > n_items = reply - > value_len ;
results - > type = reply - > type ;
results - > bytes_after = reply - > bytes_after ;
results - > format = reply - > format ;
results - > prop = NULL ;
if ( results - > type ! = None )
2016-01-09 22:15:09 -05:00
{
length = xcb_get_property_value_length ( reply ) ;
/* Leave room for a trailing '\0' since xcb doesn't return null-terminated
* strings
*/
results - > prop = g_malloc ( length + 1 ) ;
memcpy ( results - > prop , xcb_get_property_value ( reply ) , length ) ;
results - > prop [ length ] = ' \0 ' ;
}
2015-06-17 20:43:04 -04:00
return ( results - > prop ! = NULL ) ;
}
2002-10-26 03:37:11 -04:00
static gboolean
2017-08-26 14:51:28 -04:00
get_property ( MetaX11Display * x11_display ,
2002-10-26 03:37:11 -04:00
Window xwindow ,
Atom xatom ,
Atom req_type ,
GetPropertyResults * results )
2002-01-03 19:58:39 -05:00
{
2015-06-17 20:43:04 -04:00
xcb_get_property_cookie_t cookie ;
2017-08-26 14:51:28 -04:00
xcb_connection_t * xcb_conn = XGetXCBConnection ( x11_display - > xdisplay ) ;
2015-06-17 20:43:04 -04:00
2017-08-26 14:51:28 -04:00
results - > x11_display = x11_display ;
2002-10-26 03:37:11 -04:00
results - > xwindow = xwindow ;
results - > xatom = xatom ;
results - > prop = NULL ;
results - > n_items = 0 ;
results - > type = None ;
results - > bytes_after = 0 ;
results - > format = 0 ;
2014-05-02 09:34:02 -04:00
2015-06-17 20:43:04 -04:00
cookie = async_get_property ( xcb_conn , xwindow , xatom , req_type ) ;
return async_get_property_finish ( xcb_conn , cookie , results ) ;
2002-10-26 03:37:11 -04:00
}
static gboolean
atom_list_from_results ( GetPropertyResults * results ,
2015-06-23 18:33:58 -04:00
uint32_t * * atoms_p ,
2002-10-26 03:37:11 -04:00
int * n_atoms_p )
{
if ( ! validate_or_free_results ( results , 32 , XA_ATOM , FALSE ) )
2014-05-02 09:34:02 -04:00
return FALSE ;
2002-01-03 19:58:39 -05:00
2015-06-23 18:33:58 -04:00
* atoms_p = ( uint32_t * ) results - > prop ;
2002-10-26 03:37:11 -04:00
* n_atoms_p = results - > n_items ;
2014-05-02 09:34:02 -04:00
results - > prop = NULL ;
2002-10-26 03:37:11 -04:00
return TRUE ;
}
static gboolean
cardinal_list_from_results ( GetPropertyResults * results ,
2015-06-23 18:09:07 -04:00
uint32_t * * cardinals_p ,
2002-10-26 03:37:11 -04:00
int * n_cardinals_p )
{
if ( ! validate_or_free_results ( results , 32 , XA_CARDINAL , FALSE ) )
2014-05-02 09:34:02 -04:00
return FALSE ;
2002-10-26 03:37:11 -04:00
2015-06-23 18:09:07 -04:00
* cardinals_p = ( uint32_t * ) results - > prop ;
2002-10-26 03:37:11 -04:00
* n_cardinals_p = results - > n_items ;
results - > prop = NULL ;
2014-05-02 09:34:02 -04:00
2002-01-03 19:58:39 -05:00
return TRUE ;
}
gboolean
2017-08-26 14:51:28 -04:00
meta_prop_get_cardinal_list ( MetaX11Display * x11_display ,
Window xwindow ,
Atom xatom ,
uint32_t * * cardinals_p ,
int * n_cardinals_p )
2002-01-03 19:58:39 -05:00
{
2002-10-26 03:37:11 -04:00
GetPropertyResults results ;
2002-01-03 19:58:39 -05:00
* cardinals_p = NULL ;
* n_cardinals_p = 0 ;
2017-08-26 14:51:28 -04:00
if ( ! get_property ( x11_display , xwindow , xatom , XA_CARDINAL ,
2002-10-26 03:37:11 -04:00
& results ) )
2002-01-03 19:58:39 -05:00
return FALSE ;
2002-10-26 03:37:11 -04:00
return cardinal_list_from_results ( & results , cardinals_p , n_cardinals_p ) ;
2002-01-03 19:58:39 -05:00
}
2002-10-26 03:37:11 -04:00
static gboolean
motif_hints_from_results ( GetPropertyResults * results ,
MotifWmHints * * hints_p )
2002-01-03 19:58:39 -05:00
{
2014-05-02 09:34:02 -04:00
* hints_p = NULL ;
2002-01-03 19:58:39 -05:00
2002-10-26 03:37:11 -04:00
if ( results - > type = = None | | results - > n_items < = 0 )
2002-01-03 19:58:39 -05:00
{
2017-02-21 09:49:09 -05:00
g_free ( results - > prop ) ;
results - > prop = NULL ;
2020-10-02 11:47:22 -04:00
meta_verbose ( " Motif hints had unexpected type or n_items " ) ;
2002-01-03 19:58:39 -05:00
return FALSE ;
}
2002-08-10 14:12:36 -04:00
/* The issue here is that some old crufty code will set a smaller
* MotifWmHints than the one we expect , apparently . I ' m not sure of
* the history behind it . See bug # 89841 for example .
*/
2019-09-09 03:18:45 -04:00
* hints_p = g_new0 ( MotifWmHints , 1 ) ;
2015-06-24 17:34:48 -04:00
memcpy ( * hints_p , results - > prop , MIN ( sizeof ( MotifWmHints ) ,
results - > n_items * sizeof ( uint32_t ) ) ) ;
2017-02-21 09:49:09 -05:00
g_free ( results - > prop ) ;
results - > prop = NULL ;
2002-01-03 19:58:39 -05:00
return TRUE ;
}
2002-01-03 22:25:53 -05:00
2002-10-26 03:37:11 -04:00
static gboolean
latin1_string_from_results ( GetPropertyResults * results ,
char * * str_p )
{
* str_p = NULL ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
if ( ! validate_or_free_results ( results , 8 , XA_STRING , FALSE ) )
return FALSE ;
2002-01-03 22:25:53 -05:00
2015-06-26 16:51:45 -04:00
* str_p = g_strndup ( ( char * ) results - > prop , results - > n_items ) ;
2014-05-02 09:34:02 -04:00
2017-02-21 09:49:09 -05:00
g_free ( results - > prop ) ;
results - > prop = NULL ;
2002-01-03 22:25:53 -05:00
return TRUE ;
}
gboolean
2017-08-26 14:51:28 -04:00
meta_prop_get_latin1_string ( MetaX11Display * x11_display ,
Window xwindow ,
Atom xatom ,
char * * str_p )
2002-01-03 22:25:53 -05:00
{
2002-10-26 03:37:11 -04:00
GetPropertyResults results ;
2002-01-03 22:25:53 -05:00
* str_p = NULL ;
2017-08-26 14:51:28 -04:00
if ( ! get_property ( x11_display , xwindow , xatom , XA_STRING ,
2002-10-26 03:37:11 -04:00
& results ) )
2002-01-03 22:25:53 -05:00
return FALSE ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
return latin1_string_from_results ( & results , str_p ) ;
}
2002-01-03 22:25:53 -05:00
2002-10-26 03:37:11 -04:00
static gboolean
utf8_string_from_results ( GetPropertyResults * results ,
char * * str_p )
{
* str_p = NULL ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
if ( ! validate_or_free_results ( results , 8 ,
2017-08-26 14:51:28 -04:00
results - > x11_display - > atom_UTF8_STRING , FALSE ) )
2002-10-26 03:37:11 -04:00
return FALSE ;
2002-01-03 22:25:53 -05:00
2002-10-26 03:37:11 -04:00
if ( results - > n_items > 0 & &
2006-04-13 09:16:42 -04:00
! g_utf8_validate ( ( gchar * ) results - > prop , results - > n_items , NULL ) )
2002-01-03 22:25:53 -05:00
{
char * name ;
2017-08-26 14:51:28 -04:00
name = XGetAtomName ( results - > x11_display - > xdisplay , results - > xatom ) ;
2020-10-02 11:47:22 -04:00
meta_warning ( " Property %s on window 0x%lx contained invalid UTF-8 " ,
2002-10-26 03:37:11 -04:00
name , results - > xwindow ) ;
2002-06-08 19:55:27 -04:00
meta_XFree ( name ) ;
2015-06-17 20:43:04 -04:00
g_free ( results - > prop ) ;
2002-10-26 03:37:11 -04:00
results - > prop = NULL ;
2014-05-02 09:34:02 -04:00
2002-01-03 22:25:53 -05:00
return FALSE ;
}
2014-05-02 09:34:02 -04:00
2015-06-23 14:52:47 -04:00
* str_p = g_strndup ( ( char * ) results - > prop , results - > n_items ) ;
2014-05-02 09:34:02 -04:00
2017-02-21 09:49:09 -05:00
g_free ( results - > prop ) ;
results - > prop = NULL ;
2002-01-03 22:25:53 -05:00
return TRUE ;
}
2002-10-26 03:37:11 -04:00
/* this one freakishly returns g_malloc memory */
static gboolean
utf8_list_from_results ( GetPropertyResults * results ,
char * * * str_p ,
int * n_str_p )
2002-06-22 00:52:35 -04:00
{
int i ;
int n_strings ;
char * * retval ;
const char * p ;
2014-05-02 09:34:02 -04:00
2002-06-22 00:52:35 -04:00
* str_p = NULL ;
* n_str_p = 0 ;
2002-10-26 03:37:11 -04:00
if ( ! validate_or_free_results ( results , 8 ,
2017-08-26 14:51:28 -04:00
results - > x11_display - > atom_UTF8_STRING , FALSE ) )
2002-06-22 00:52:35 -04:00
return FALSE ;
2014-05-02 09:34:02 -04:00
2002-06-22 00:52:35 -04:00
/* I'm not sure this is right, but I'm guessing the
* property is nul - separated
*/
i = 0 ;
2003-07-31 05:35:56 -04:00
n_strings = 0 ;
2002-10-26 03:37:11 -04:00
while ( i < ( int ) results - > n_items )
2002-06-22 00:52:35 -04:00
{
2002-10-26 03:37:11 -04:00
if ( results - > prop [ i ] = = ' \0 ' )
2002-06-22 00:52:35 -04:00
+ + n_strings ;
+ + i ;
}
2003-07-31 05:35:56 -04:00
if ( results - > prop [ results - > n_items - 1 ] ! = ' \0 ' )
+ + n_strings ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
/* we're guaranteed that results->prop has a nul on the end
2002-06-22 00:52:35 -04:00
* by XGetWindowProperty
*/
2014-05-02 09:34:02 -04:00
2002-06-22 00:52:35 -04:00
retval = g_new0 ( char * , n_strings + 1 ) ;
2006-04-13 09:16:42 -04:00
p = ( char * ) results - > prop ;
2002-06-22 00:52:35 -04:00
i = 0 ;
while ( i < n_strings )
{
if ( ! g_utf8_validate ( p , - 1 , NULL ) )
{
char * name ;
2017-08-27 14:48:55 -04:00
meta_x11_error_trap_push ( results - > x11_display ) ;
2017-08-26 14:51:28 -04:00
name = XGetAtomName ( results - > x11_display - > xdisplay , results - > xatom ) ;
2017-08-27 14:48:55 -04:00
meta_x11_error_trap_pop ( results - > x11_display ) ;
2020-10-02 11:47:22 -04:00
meta_warning ( " Property %s on window 0x%lx contained invalid UTF-8 for item %d in the list " ,
2002-10-26 03:37:11 -04:00
name , results - > xwindow , i ) ;
2002-06-22 00:52:35 -04:00
meta_XFree ( name ) ;
2015-06-17 20:43:04 -04:00
g_free ( results - > prop ) ;
2002-10-26 03:37:11 -04:00
results - > prop = NULL ;
2014-05-02 09:34:02 -04:00
2002-06-22 00:52:35 -04:00
g_strfreev ( retval ) ;
return FALSE ;
}
retval [ i ] = g_strdup ( p ) ;
2014-05-02 09:34:02 -04:00
2002-06-22 00:52:35 -04:00
p = p + strlen ( p ) + 1 ;
+ + i ;
}
2014-05-02 09:34:02 -04:00
2002-06-22 00:52:35 -04:00
* str_p = retval ;
* n_str_p = i ;
2015-06-17 20:43:04 -04:00
g_free ( results - > prop ) ;
2002-10-26 03:37:11 -04:00
results - > prop = NULL ;
2002-06-22 00:52:35 -04:00
return TRUE ;
}
2002-10-26 03:37:11 -04:00
/* returns g_malloc not Xmalloc memory */
2002-01-03 22:25:53 -05:00
gboolean
2017-08-26 14:51:28 -04:00
meta_prop_get_utf8_list ( MetaX11Display * x11_display ,
Window xwindow ,
Atom xatom ,
char * * * str_p ,
int * n_str_p )
2002-01-03 22:25:53 -05:00
{
2002-10-26 03:37:11 -04:00
GetPropertyResults results ;
2002-01-03 22:25:53 -05:00
2002-10-26 03:37:11 -04:00
* str_p = NULL ;
2002-01-03 22:25:53 -05:00
2017-08-26 14:51:28 -04:00
if ( ! get_property ( x11_display , xwindow , xatom ,
x11_display - > atom_UTF8_STRING ,
2002-10-26 03:37:11 -04:00
& results ) )
2002-01-03 22:25:53 -05:00
return FALSE ;
2002-10-26 03:37:11 -04:00
return utf8_list_from_results ( & results , str_p , n_str_p ) ;
}
2002-01-03 22:25:53 -05:00
2005-10-03 14:13:45 -04:00
void
2017-08-26 14:51:28 -04:00
meta_prop_set_utf8_string_hint ( MetaX11Display * x11_display ,
Window xwindow ,
Atom atom ,
const char * val )
2005-10-03 14:13:45 -04:00
{
2017-08-27 14:48:55 -04:00
meta_x11_error_trap_push ( x11_display ) ;
2017-08-26 12:26:30 -04:00
XChangeProperty ( x11_display - > xdisplay ,
2005-10-03 14:13:45 -04:00
xwindow , atom ,
2017-08-26 12:26:30 -04:00
x11_display - > atom_UTF8_STRING ,
2005-10-03 14:13:45 -04:00
8 , PropModeReplace , ( guchar * ) val , strlen ( val ) ) ;
2017-08-27 14:48:55 -04:00
meta_x11_error_trap_pop ( x11_display ) ;
2005-10-03 14:13:45 -04:00
}
2002-10-26 03:37:11 -04:00
static gboolean
window_from_results ( GetPropertyResults * results ,
Window * window_p )
{
if ( ! validate_or_free_results ( results , 32 , XA_WINDOW , TRUE ) )
2014-05-02 09:34:02 -04:00
return FALSE ;
2002-01-03 22:25:53 -05:00
2015-10-05 11:53:57 -04:00
* window_p = * ( uint32_t * ) results - > prop ;
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2014-05-02 09:34:02 -04:00
results - > prop = NULL ;
2002-01-03 22:25:53 -05:00
return TRUE ;
}
2002-12-09 22:23:04 -05:00
static gboolean
counter_from_results ( GetPropertyResults * results ,
XSyncCounter * counter_p )
{
if ( ! validate_or_free_results ( results , 32 ,
Fix bug 143333, support for update counter spec, and 109362, schedule
Sat Jun 19 02:21:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
Fix bug 143333, support for update counter spec, and 109362,
schedule compensation events when events are ignored.
* src/display.c (meta_display_open): Add _NET_WM_SYNC_REQUEST and
_NET_WM_SYNC_REQUEST_COUNTER atoms. Remove the old
METACITY_SYNC_COUNTER stuff.
(meta_display_begin_op): Setup the sync counter
* src/xprops.c, src/xprops.h, src/window-props.c, src/display.h:
Add new atoms.
* src/window.c (send_sync_request): new function.
(meta_window_move_resize_internal): send a sync request before
resizing.
(check_move_resize_frequence): Rework logic to also check the SYNC
case. If an event is ignored return the remaining time.
(update_resize_timeout): Timeout that gets called when a
compensation event is scheduled.
(uddate_resize): schedule compensation events when an event is
ignored.
(meta_window_handle_mouse_grap_op_event): When an alarm is
received and sync was turned off, turn it back on.
* src/window.h (struct MetaWindow) Add some variables
2004-06-18 20:45:24 -04:00
XA_CARDINAL ,
2002-12-09 22:23:04 -05:00
TRUE ) )
2014-05-02 09:34:02 -04:00
return FALSE ;
2002-12-09 22:23:04 -05:00
2015-10-05 11:53:57 -04:00
* counter_p = * ( uint32_t * ) results - > prop ;
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2002-12-09 22:23:04 -05:00
results - > prop = NULL ;
2014-05-02 09:34:02 -04:00
2002-12-09 22:23:04 -05:00
return TRUE ;
}
2011-06-08 10:01:30 -04:00
static gboolean
counter_list_from_results ( GetPropertyResults * results ,
2015-06-23 18:09:07 -04:00
uint32_t * * counters_p ,
2011-06-08 10:01:30 -04:00
int * n_counters_p )
{
if ( ! validate_or_free_results ( results , 32 ,
XA_CARDINAL ,
FALSE ) )
return FALSE ;
2015-06-23 18:09:07 -04:00
* counters_p = ( uint32_t * ) results - > prop ;
2011-06-08 10:01:30 -04:00
* n_counters_p = results - > n_items ;
results - > prop = NULL ;
return TRUE ;
}
2002-12-09 22:23:04 -05:00
2002-10-26 03:37:11 -04:00
gboolean
2017-08-26 14:51:28 -04:00
meta_prop_get_window ( MetaX11Display * x11_display ,
Window xwindow ,
Atom xatom ,
Window * window_p )
2002-10-26 03:37:11 -04:00
{
GetPropertyResults results ;
* window_p = None ;
2014-05-02 09:34:02 -04:00
2017-08-26 14:51:28 -04:00
if ( ! get_property ( x11_display , xwindow , xatom , XA_WINDOW ,
2002-10-26 03:37:11 -04:00
& results ) )
return FALSE ;
return window_from_results ( & results , window_p ) ;
}
2002-01-03 22:25:53 -05:00
gboolean
2017-08-26 14:51:28 -04:00
meta_prop_get_cardinal ( MetaX11Display * x11_display ,
Window xwindow ,
Atom xatom ,
uint32_t * cardinal_p )
2002-01-03 22:25:53 -05:00
{
2017-08-26 14:51:28 -04:00
return meta_prop_get_cardinal_with_atom_type ( x11_display , xwindow , xatom ,
2002-01-03 22:25:53 -05:00
XA_CARDINAL , cardinal_p ) ;
}
2002-10-26 03:37:11 -04:00
static gboolean
cardinal_with_atom_type_from_results ( GetPropertyResults * results ,
Atom prop_type ,
2015-06-23 18:32:07 -04:00
uint32_t * cardinal_p )
2002-10-26 03:37:11 -04:00
{
if ( ! validate_or_free_results ( results , 32 , prop_type , TRUE ) )
2014-05-02 09:34:02 -04:00
return FALSE ;
2002-10-26 03:37:11 -04:00
2015-06-23 18:09:07 -04:00
* cardinal_p = * ( ( uint32_t * ) results - > prop ) ;
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2014-05-02 09:34:02 -04:00
results - > prop = NULL ;
2002-10-26 03:37:11 -04:00
return TRUE ;
}
2002-01-03 22:25:53 -05:00
gboolean
2017-08-26 14:51:28 -04:00
meta_prop_get_cardinal_with_atom_type ( MetaX11Display * x11_display ,
Window xwindow ,
Atom xatom ,
Atom prop_type ,
uint32_t * cardinal_p )
2002-01-03 22:25:53 -05:00
{
2002-10-26 03:37:11 -04:00
GetPropertyResults results ;
2002-01-03 22:25:53 -05:00
* cardinal_p = 0 ;
2017-08-26 14:51:28 -04:00
if ( ! get_property ( x11_display , xwindow , xatom , prop_type ,
2002-10-26 03:37:11 -04:00
& results ) )
2002-01-03 22:25:53 -05:00
return FALSE ;
2002-10-26 03:37:11 -04:00
return cardinal_with_atom_type_from_results ( & results , prop_type , cardinal_p ) ;
}
2014-04-06 17:03:53 -04:00
static char *
2021-05-03 19:42:58 -04:00
text_property_to_utf8 ( GetPropertyResults * results ,
2014-04-06 17:03:53 -04:00
const XTextProperty * prop )
{
char * ret = NULL ;
char * * local_list = NULL ;
2018-10-08 18:29:01 -04:00
const char * charset = NULL ;
2014-04-06 17:03:53 -04:00
int count = 0 ;
int res ;
2021-05-03 19:42:58 -04:00
res = XmbTextPropertyToTextList ( results - > x11_display - > xdisplay , prop ,
& local_list , & count ) ;
2014-04-06 17:03:53 -04:00
if ( res = = XNoMemory | | res = = XLocaleNotSupported | | res = = XConverterNotFound )
goto out ;
if ( count = = 0 )
goto out ;
2018-10-08 18:29:01 -04:00
if ( g_get_charset ( & charset ) )
2021-05-03 19:42:58 -04:00
{
if ( ! g_utf8_validate ( local_list [ 0 ] , - 1 , NULL ) )
{
char * name ;
meta_x11_error_trap_push ( results - > x11_display ) ;
name = XGetAtomName ( results - > x11_display - > xdisplay , results - > xatom ) ;
meta_x11_error_trap_pop ( results - > x11_display ) ;
meta_warning ( " Property %s on window 0x%lx contained invalid UTF-8 " ,
name , results - > xwindow ) ;
meta_XFree ( name ) ;
goto out ;
}
ret = g_strdup ( local_list [ 0 ] ) ;
}
2018-10-08 18:29:01 -04:00
else
2021-05-03 19:42:58 -04:00
{
ret = g_convert ( local_list [ 0 ] , - 1 , " UTF-8 " , charset , NULL , NULL , NULL ) ;
}
2014-04-06 17:03:53 -04:00
out :
2014-05-07 12:27:04 -04:00
XFreeStringList ( local_list ) ;
2014-04-06 17:03:53 -04:00
return ret ;
}
2002-10-26 12:40:50 -04:00
static gboolean
text_property_from_results ( GetPropertyResults * results ,
char * * utf8_str_p )
{
XTextProperty tp ;
* utf8_str_p = NULL ;
2014-04-06 17:03:53 -04:00
2002-10-26 12:40:50 -04:00
tp . value = results - > prop ;
tp . encoding = results - > type ;
tp . format = results - > format ;
2014-05-02 09:34:02 -04:00
tp . nitems = results - > n_items ;
2021-05-03 19:42:58 -04:00
* utf8_str_p = text_property_to_utf8 ( results , & tp ) ;
2014-05-02 09:34:02 -04:00
2019-09-09 10:06:08 -04:00
g_clear_pointer ( & results - > prop , g_free ) ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
return * utf8_str_p ! = NULL ;
}
static gboolean
wm_hints_from_results ( GetPropertyResults * results ,
XWMHints * * hints_p )
{
XWMHints * hints ;
xPropWMHints * raw ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
* hints_p = NULL ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
if ( ! validate_or_free_results ( results , 32 , XA_WM_HINTS , TRUE ) )
2014-05-02 09:34:02 -04:00
return FALSE ;
2002-10-26 12:40:50 -04:00
2014-05-02 09:34:02 -04:00
/* pre-R3 bogusly truncated window_group, don't fail on them */
2002-10-26 12:40:50 -04:00
if ( results - > n_items < ( NumPropWMHintsElements - 1 ) )
{
2020-10-02 11:47:22 -04:00
meta_verbose ( " WM_HINTS property too short: %d should be %d " ,
2002-10-26 12:40:50 -04:00
( int ) results - > n_items , NumPropWMHintsElements - 1 ) ;
if ( results - > prop )
{
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2002-10-26 12:40:50 -04:00
results - > prop = NULL ;
}
return FALSE ;
}
2014-05-02 09:34:02 -04:00
2019-09-09 05:08:25 -04:00
hints = g_new0 ( XWMHints , 1 ) ;
2002-10-26 12:40:50 -04:00
raw = ( xPropWMHints * ) results - > prop ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
hints - > flags = raw - > flags ;
hints - > input = ( raw - > input ? True : False ) ;
2015-06-17 21:17:11 -04:00
hints - > initial_state = raw - > initialState ;
2002-10-26 12:40:50 -04:00
hints - > icon_pixmap = raw - > iconPixmap ;
hints - > icon_window = raw - > iconWindow ;
2015-06-17 21:17:11 -04:00
hints - > icon_x = raw - > iconX ;
hints - > icon_y = raw - > iconY ;
2002-10-26 12:40:50 -04:00
hints - > icon_mask = raw - > iconMask ;
if ( results - > n_items > = NumPropWMHintsElements )
hints - > window_group = raw - > windowGroup ;
else
hints - > window_group = 0 ;
if ( results - > prop )
{
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2002-10-26 12:40:50 -04:00
results - > prop = NULL ;
}
* hints_p = hints ;
return TRUE ;
}
static gboolean
class_hint_from_results ( GetPropertyResults * results ,
XClassHint * class_hint )
{
2019-09-09 05:28:00 -04:00
int len_name ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
class_hint - > res_class = NULL ;
class_hint - > res_name = NULL ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
if ( ! validate_or_free_results ( results , 8 , XA_STRING , FALSE ) )
return FALSE ;
2014-05-02 09:34:02 -04:00
2019-09-09 05:28:00 -04:00
class_hint - > res_name = g_strdup ( ( char * ) results - > prop ) ;
2002-10-26 12:40:50 -04:00
2019-09-09 05:28:00 -04:00
len_name = strlen ( class_hint - > res_name ) ;
2002-10-26 12:40:50 -04:00
if ( len_name = = ( int ) results - > n_items )
2019-09-09 05:28:00 -04:00
class_hint - > res_class = g_strdup ( " " ) ;
else
class_hint - > res_class = g_strdup ( ( char * ) results - > prop + len_name + 1 ) ;
2002-10-26 12:40:50 -04:00
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2002-10-26 12:40:50 -04:00
results - > prop = NULL ;
2014-05-02 09:34:02 -04:00
2002-10-26 12:40:50 -04:00
return TRUE ;
}
2002-10-28 15:22:22 -05:00
static gboolean
size_hints_from_results ( GetPropertyResults * results ,
XSizeHints * * hints_p ,
gulong * flags_p )
{
xPropSizeHints * raw ;
XSizeHints * hints ;
2014-05-02 09:34:02 -04:00
2002-10-28 15:22:22 -05:00
* hints_p = NULL ;
* flags_p = 0 ;
2014-05-02 09:34:02 -04:00
2002-10-28 15:22:22 -05:00
if ( ! validate_or_free_results ( results , 32 , XA_WM_SIZE_HINTS , FALSE ) )
return FALSE ;
if ( results - > n_items < OldNumPropSizeElements )
2017-02-21 09:49:09 -05:00
{
g_free ( results - > prop ) ;
results - > prop = NULL ;
return FALSE ;
}
2002-10-28 15:22:22 -05:00
raw = ( xPropSizeHints * ) results - > prop ;
2019-09-09 09:40:12 -04:00
hints = g_new0 ( XSizeHints , 1 ) ;
2014-05-02 09:34:02 -04:00
2002-10-28 15:22:22 -05:00
hints - > flags = raw - > flags ;
2015-06-17 21:17:11 -04:00
hints - > x = raw - > x ;
hints - > y = raw - > y ;
2015-06-17 21:19:49 -04:00
hints - > width = raw - > width ;
2015-06-17 21:17:11 -04:00
hints - > height = raw - > height ;
hints - > min_width = raw - > minWidth ;
hints - > min_height = raw - > minHeight ;
hints - > max_width = raw - > maxWidth ;
hints - > max_height = raw - > maxHeight ;
hints - > width_inc = raw - > widthInc ;
hints - > height_inc = raw - > heightInc ;
hints - > min_aspect . x = raw - > minAspectX ;
hints - > min_aspect . y = raw - > minAspectY ;
hints - > max_aspect . x = raw - > maxAspectX ;
hints - > max_aspect . y = raw - > maxAspectY ;
2002-10-28 15:22:22 -05:00
* flags_p = ( USPosition | USSize | PAllHints ) ;
if ( results - > n_items > = NumPropSizeElements )
{
2015-06-17 21:17:11 -04:00
hints - > base_width = raw - > baseWidth ;
hints - > base_height = raw - > baseHeight ;
hints - > win_gravity = raw - > winGravity ;
2002-10-28 15:22:22 -05:00
* flags_p | = ( PBaseSize | PWinGravity ) ;
}
hints - > flags & = ( * flags_p ) ; /* get rid of unwanted bits */
2014-05-02 09:34:02 -04:00
2015-06-17 21:18:34 -04:00
g_free ( results - > prop ) ;
2002-10-28 15:22:22 -05:00
results - > prop = NULL ;
* hints_p = hints ;
2014-05-02 09:34:02 -04:00
2002-10-28 15:22:22 -05:00
return TRUE ;
}
2002-12-16 17:01:15 -05:00
static char *
latin1_to_utf8 ( const char * text )
{
GString * str ;
const char * p ;
2014-05-02 09:34:02 -04:00
2002-12-16 17:01:15 -05:00
str = g_string_new ( " " ) ;
p = text ;
while ( * p )
{
g_string_append_unichar ( str , * p ) ;
+ + p ;
}
return g_string_free ( str , FALSE ) ;
}
2002-10-26 03:37:11 -04:00
void
2017-08-26 14:51:28 -04:00
meta_prop_get_values ( MetaX11Display * x11_display ,
Window xwindow ,
MetaPropValue * values ,
int n_values )
2002-10-26 03:37:11 -04:00
{
int i ;
2015-06-17 20:43:04 -04:00
xcb_get_property_cookie_t * tasks ;
2017-08-26 14:51:28 -04:00
xcb_connection_t * xcb_conn = XGetXCBConnection ( x11_display - > xdisplay ) ;
2002-01-03 22:25:53 -05:00
2020-10-02 11:47:22 -04:00
meta_verbose ( " Requesting %d properties of 0x%lx at once " ,
2002-10-26 03:37:11 -04:00
n_values , xwindow ) ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
if ( n_values = = 0 )
return ;
2014-05-02 09:34:02 -04:00
2015-06-17 20:43:04 -04:00
tasks = g_new0 ( xcb_get_property_cookie_t , n_values ) ;
2002-10-26 03:37:11 -04:00
2002-11-30 22:58:04 -05:00
/* Start up tasks. The "values" array can have values
* with atom = = None , which means to ignore that element .
*/
2002-10-26 03:37:11 -04:00
i = 0 ;
while ( i < n_values )
{
if ( values [ i ] . required_type = = None )
{
switch ( values [ i ] . type )
{
case META_PROP_VALUE_INVALID :
2002-11-30 22:58:04 -05:00
/* This means we don't really want a value, e.g. got
* property notify on an atom we don ' t care about .
*/
if ( values [ i ] . atom ! = None )
2020-10-02 11:47:22 -04:00
meta_bug ( " META_PROP_VALUE_INVALID requested in %s " , G_STRFUNC ) ;
2002-10-26 03:37:11 -04:00
break ;
case META_PROP_VALUE_UTF8_LIST :
case META_PROP_VALUE_UTF8 :
2017-08-26 14:51:28 -04:00
values [ i ] . required_type = x11_display - > atom_UTF8_STRING ;
2002-10-26 03:37:11 -04:00
break ;
case META_PROP_VALUE_STRING :
2002-12-16 17:01:15 -05:00
case META_PROP_VALUE_STRING_AS_UTF8 :
2002-10-26 03:37:11 -04:00
values [ i ] . required_type = XA_STRING ;
break ;
case META_PROP_VALUE_MOTIF_HINTS :
values [ i ] . required_type = AnyPropertyType ;
break ;
case META_PROP_VALUE_CARDINAL_LIST :
case META_PROP_VALUE_CARDINAL :
values [ i ] . required_type = XA_CARDINAL ;
break ;
case META_PROP_VALUE_WINDOW :
values [ i ] . required_type = XA_WINDOW ;
break ;
case META_PROP_VALUE_ATOM_LIST :
values [ i ] . required_type = XA_ATOM ;
break ;
2002-10-26 12:40:50 -04:00
case META_PROP_VALUE_TEXT_PROPERTY :
values [ i ] . required_type = AnyPropertyType ;
break ;
case META_PROP_VALUE_WM_HINTS :
values [ i ] . required_type = XA_WM_HINTS ;
break ;
case META_PROP_VALUE_CLASS_HINT :
values [ i ] . required_type = XA_STRING ;
break ;
2002-10-28 15:22:22 -05:00
case META_PROP_VALUE_SIZE_HINTS :
values [ i ] . required_type = XA_WM_SIZE_HINTS ;
break ;
2002-12-09 22:23:04 -05:00
case META_PROP_VALUE_SYNC_COUNTER :
2011-06-08 10:01:30 -04:00
case META_PROP_VALUE_SYNC_COUNTER_LIST :
Fix bug 143333, support for update counter spec, and 109362, schedule
Sat Jun 19 02:21:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
Fix bug 143333, support for update counter spec, and 109362,
schedule compensation events when events are ignored.
* src/display.c (meta_display_open): Add _NET_WM_SYNC_REQUEST and
_NET_WM_SYNC_REQUEST_COUNTER atoms. Remove the old
METACITY_SYNC_COUNTER stuff.
(meta_display_begin_op): Setup the sync counter
* src/xprops.c, src/xprops.h, src/window-props.c, src/display.h:
Add new atoms.
* src/window.c (send_sync_request): new function.
(meta_window_move_resize_internal): send a sync request before
resizing.
(check_move_resize_frequence): Rework logic to also check the SYNC
case. If an event is ignored return the remaining time.
(update_resize_timeout): Timeout that gets called when a
compensation event is scheduled.
(uddate_resize): schedule compensation events when an event is
ignored.
(meta_window_handle_mouse_grap_op_event): When an alarm is
received and sync was turned off, turn it back on.
* src/window.h (struct MetaWindow) Add some variables
2004-06-18 20:45:24 -04:00
values [ i ] . required_type = XA_CARDINAL ;
2002-12-09 22:23:04 -05:00
break ;
2002-10-26 03:37:11 -04:00
}
}
2002-11-30 22:58:04 -05:00
if ( values [ i ] . atom ! = None )
2015-06-17 20:43:04 -04:00
tasks [ i ] = async_get_property ( xcb_conn , xwindow , values [ i ] . atom , values [ i ] . required_type ) ;
2002-10-26 03:37:11 -04:00
+ + i ;
2014-05-02 09:34:02 -04:00
}
2002-10-26 03:37:11 -04:00
/* Get replies for all our tasks */
2020-10-02 11:47:22 -04:00
meta_topic ( META_DEBUG_SYNC , " Syncing to get %d GetProperty replies in %s " ,
2008-01-28 09:52:34 -05:00
n_values , G_STRFUNC ) ;
2017-08-26 14:51:28 -04:00
XSync ( x11_display - > xdisplay , False ) ;
2014-05-02 09:34:02 -04:00
2002-10-26 03:37:11 -04:00
/* Collect results, should arrive in order requested */
i = 0 ;
while ( i < n_values )
{
GetPropertyResults results ;
2014-05-02 09:34:02 -04:00
2015-06-17 20:43:04 -04:00
/* We're relying on the fact that sequence numbers can never be zero
* in Xorg . This is a bit disgusting . . . */
if ( tasks [ i ] . sequence = = 0 )
2002-10-26 03:37:11 -04:00
{
2002-11-30 22:58:04 -05:00
/* Probably values[i].type was None, or ag_task_create()
* returned NULL .
2002-10-26 03:37:11 -04:00
*/
values [ i ] . type = META_PROP_VALUE_INVALID ;
goto next ;
}
2014-05-02 09:34:02 -04:00
2017-08-26 14:51:28 -04:00
results . x11_display = x11_display ;
2002-10-26 03:37:11 -04:00
results . xwindow = xwindow ;
results . xatom = values [ i ] . atom ;
results . prop = NULL ;
results . n_items = 0 ;
results . type = None ;
results . bytes_after = 0 ;
results . format = 0 ;
2014-05-02 09:34:02 -04:00
2015-06-17 20:43:04 -04:00
if ( ! async_get_property_finish ( xcb_conn , tasks [ i ] , & results ) )
2015-06-23 14:47:38 -04:00
{
values [ i ] . type = META_PROP_VALUE_INVALID ;
goto next ;
}
2002-10-26 03:37:11 -04:00
2022-09-09 07:37:08 -04:00
values [ i ] . source_xwindow = xwindow ;
2002-10-26 03:37:11 -04:00
switch ( values [ i ] . type )
{
case META_PROP_VALUE_INVALID :
g_assert_not_reached ( ) ;
break ;
case META_PROP_VALUE_UTF8_LIST :
if ( ! utf8_list_from_results ( & results ,
& values [ i ] . v . string_list . strings ,
& values [ i ] . v . string_list . n_strings ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_UTF8 :
if ( ! utf8_string_from_results ( & results ,
& values [ i ] . v . str ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_STRING :
if ( ! latin1_string_from_results ( & results ,
& values [ i ] . v . str ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
2002-12-16 17:01:15 -05:00
case META_PROP_VALUE_STRING_AS_UTF8 :
if ( ! latin1_string_from_results ( & results ,
& values [ i ] . v . str ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
else
{
char * new_str ;
new_str = latin1_to_utf8 ( values [ i ] . v . str ) ;
2019-09-09 03:08:36 -04:00
g_free ( values [ i ] . v . str ) ;
2015-06-17 20:43:04 -04:00
values [ i ] . v . str = new_str ;
2002-12-16 17:01:15 -05:00
}
break ;
2002-10-26 03:37:11 -04:00
case META_PROP_VALUE_MOTIF_HINTS :
if ( ! motif_hints_from_results ( & results ,
& values [ i ] . v . motif_hints ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_CARDINAL_LIST :
if ( ! cardinal_list_from_results ( & results ,
& values [ i ] . v . cardinal_list . cardinals ,
& values [ i ] . v . cardinal_list . n_cardinals ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_CARDINAL :
if ( ! cardinal_with_atom_type_from_results ( & results ,
values [ i ] . required_type ,
& values [ i ] . v . cardinal ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_WINDOW :
if ( ! window_from_results ( & results ,
& values [ i ] . v . xwindow ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_ATOM_LIST :
if ( ! atom_list_from_results ( & results ,
& values [ i ] . v . atom_list . atoms ,
& values [ i ] . v . atom_list . n_atoms ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
2002-10-26 12:40:50 -04:00
case META_PROP_VALUE_TEXT_PROPERTY :
if ( ! text_property_from_results ( & results , & values [ i ] . v . str ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_WM_HINTS :
if ( ! wm_hints_from_results ( & results , & values [ i ] . v . wm_hints ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
case META_PROP_VALUE_CLASS_HINT :
if ( ! class_hint_from_results ( & results , & values [ i ] . v . class_hint ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
2002-10-28 15:22:22 -05:00
case META_PROP_VALUE_SIZE_HINTS :
if ( ! size_hints_from_results ( & results ,
& values [ i ] . v . size_hints . hints ,
& values [ i ] . v . size_hints . flags ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
2011-06-08 10:01:30 -04:00
case META_PROP_VALUE_SYNC_COUNTER :
2002-12-09 22:23:04 -05:00
if ( ! counter_from_results ( & results ,
& values [ i ] . v . xcounter ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
2011-06-08 10:01:30 -04:00
break ;
case META_PROP_VALUE_SYNC_COUNTER_LIST :
if ( ! counter_list_from_results ( & results ,
& values [ i ] . v . xcounter_list . counters ,
& values [ i ] . v . xcounter_list . n_counters ) )
values [ i ] . type = META_PROP_VALUE_INVALID ;
break ;
2002-10-26 03:37:11 -04:00
}
2005-06-10 22:28:04 -04:00
2002-10-26 03:37:11 -04:00
next :
+ + i ;
}
g_free ( tasks ) ;
2002-01-03 22:25:53 -05:00
}
2002-11-03 18:42:21 -05:00
static void
free_value ( MetaPropValue * value )
{
switch ( value - > type )
{
2014-05-02 09:34:02 -04:00
case META_PROP_VALUE_INVALID :
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_UTF8 :
case META_PROP_VALUE_STRING :
2019-09-09 03:08:36 -04:00
g_free ( value - > v . str ) ;
2015-06-17 20:43:04 -04:00
break ;
2002-12-16 17:01:15 -05:00
case META_PROP_VALUE_STRING_AS_UTF8 :
2015-06-17 20:43:04 -04:00
g_free ( value - > v . str ) ;
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_MOTIF_HINTS :
2019-09-09 03:18:45 -04:00
g_free ( value - > v . motif_hints ) ;
2014-05-02 09:34:02 -04:00
break ;
2002-11-03 18:42:21 -05:00
case META_PROP_VALUE_CARDINAL :
break ;
2014-05-02 09:34:02 -04:00
case META_PROP_VALUE_WINDOW :
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_ATOM_LIST :
2019-09-09 10:41:10 -04:00
g_free ( value - > v . atom_list . atoms ) ;
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_TEXT_PROPERTY :
2019-09-09 10:06:08 -04:00
g_free ( value - > v . str ) ;
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_WM_HINTS :
2019-09-09 05:08:25 -04:00
g_free ( value - > v . wm_hints ) ;
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_CLASS_HINT :
2019-09-09 05:28:00 -04:00
g_free ( value - > v . class_hint . res_class ) ;
g_free ( value - > v . class_hint . res_name ) ;
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_SIZE_HINTS :
2019-09-09 09:40:12 -04:00
g_free ( value - > v . size_hints . hints ) ;
2002-11-03 18:42:21 -05:00
break ;
case META_PROP_VALUE_UTF8_LIST :
g_strfreev ( value - > v . string_list . strings ) ;
break ;
case META_PROP_VALUE_CARDINAL_LIST :
2019-09-09 12:36:48 -04:00
g_free ( value - > v . cardinal_list . cardinals ) ;
2002-11-03 18:42:21 -05:00
break ;
2002-12-09 22:23:04 -05:00
case META_PROP_VALUE_SYNC_COUNTER :
break ;
2011-06-08 10:01:30 -04:00
case META_PROP_VALUE_SYNC_COUNTER_LIST :
2019-09-09 10:23:04 -04:00
g_free ( value - > v . xcounter_list . counters ) ;
2011-06-08 10:01:30 -04:00
break ;
2002-11-03 18:42:21 -05:00
}
}
void
meta_prop_free_values ( MetaPropValue * values ,
int n_values )
{
int i ;
i = 0 ;
while ( i < n_values )
{
free_value ( & values [ i ] ) ;
+ + i ;
}
/* Zero the whole thing to quickly detect breakage */
memset ( values , ' \0 ' , sizeof ( MetaPropValue ) * n_values ) ;
}