X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=cwmcc%2Fprop.h;h=b9b32620b81c1c0f6fe6d274418fe0978d7d03d1;hb=ad4c3aad45d21b3f0c0b69cd8b532f775c5e5223;hp=ca49ce08d97e27d891f9bc7ce85a51d80e41f8ca;hpb=d8fc08f33d5148be6294a8469066cf6a4604e940;p=chaz%2Fopenbox diff --git a/cwmcc/prop.h b/cwmcc/prop.h index ca49ce08..b9b32620 100644 --- a/cwmcc/prop.h +++ b/cwmcc/prop.h @@ -1,37 +1,45 @@ -#ifndef __prop_h -#define __prop_h +#ifndef __cwmcc_prop_h +#define __cwmcc_prop_h +#include #include /* with the exception of prop_get32, all other prop_get_* functions require you to free the returned value with g_free or g_strfreev (for the char**s) */ -gboolean prop_get32(Window win, Atom prop, Atom type, gulong *ret); +gboolean cwmcc_prop_get32(Window win, Atom prop, Atom type, gulong *ret); -gboolean prop_get_array32(Window win, Atom prop, Atom type, gulong **ret, +gboolean cwmcc_prop_get_array32(Window win, Atom prop, Atom type, gulong **ret, gulong *nret); -gboolean prop_get_string(Window win, Atom prop, Atom type, char **ret); +gboolean cwmcc_prop_get_string(Window win, Atom prop, Atom type, char **ret); /*! Gets a string from a property which is stored in UTF-8 encoding. */ -gboolean prop_get_string_utf(Window win, Atom prop, char **ret); +gboolean cwmcc_prop_get_string_utf8(Window win, Atom prop, char **ret); /*! Gets a string from a property which is stored in the current local encoding. The returned string is in UTF-8 encoding. */ -gboolean prop_get_string_locale(Window win, Atom prop, char **ret); +gboolean cwmcc_prop_get_string_locale(Window win, Atom prop, char **ret); /*! Gets a null terminated array of strings from a property which is stored in UTF-8 encoding. */ -gboolean prop_get_strings_utf(Window win, Atom prop, Atom type, char ***ret); +gboolean cwmcc_prop_get_strings_utf8(Window win, Atom prop, char ***ret); /*! Gets a null terminated array of strings from a property which is stored in the current locale encoding. The returned string is in UTF-8 encoding. */ -gboolean prop_get_strings_locale(Window win, Atom prop, Atom type,char ***ret); +gboolean cwmcc_prop_get_strings_locale(Window win, Atom prop, char ***ret); + +void cwmcc_prop_set32(Window win, Atom prop, Atom type, gulong val); + +void cwmcc_prop_set_array32(Window win, Atom prop, Atom type, + gulong *val, gulong num); + +void cwmcc_prop_set_string_utf8(Window win, Atom prop, char *val); /*! Sets a null terminated array of strings in a property encoded as UTF-8. */ -void prop_set_strings_utf(Window win, Atom prop, Atom type, char **strs); +void cwmcc_prop_set_strings_utf8(Window win, Atom prop, char **strs); -void prop_erase(Window win, Atom prop); +void cwmcc_prop_erase(Window win, Atom prop); #endif