]> Pileus Git - ~andy/gtk/blob - gdk/x11/xsettings-common.h
Change GdkFrameClock from an interface to a class
[~andy/gtk] / gdk / x11 / xsettings-common.h
1 /*
2  * Copyright © 2001 Red Hat, Inc.
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of Red Hat not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  Red Hat makes no representations about the
11  * suitability of this software for any purpose.  It is provided "as is"
12  * without express or implied warranty.
13  *
14  * RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL RED HAT
16  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
18  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
19  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20  *
21  * Author:  Owen Taylor, Red Hat, Inc.
22  */
23 #ifndef XSETTINGS_COMMON_H
24 #define XSETTINGS_COMMON_H
25
26 #include <glib.h>
27 #include <sys/types.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32
33 /* Renames for GDK inclusion */
34
35 #define xsettings_byte_order             _gdk_x11_xsettings_byte_order
36 #define xsettings_client_destroy         _gdk_x11_xsettings_client_destroy
37 #define xsettings_client_get_setting     _gdk_x11_xsettings_client_get_setting
38 #define xsettings_client_new             _gdk_x11_xsettings_client_new
39 #define xsettings_client_new_with_grab_funcs _gdk_x11_xsettings_client_new_with_grab_funcs
40 #define xsettings_client_set_grab_func   _gdk_x11_xsettings_client_set_grab_func
41 #define xsettings_client_set_ungrab_func _gdk_x11_xsettings_client_set_ungrab_func
42 #define xsettings_client_process_event   _gdk_x11_xsettings_client_process_event
43 #define xsettings_list_free              _gdk_x11_xsettings_list_free
44 #define xsettings_list_insert            _gdk_x11_xsettings_list_insert
45 #define xsettings_list_lookup            _gdk_x11_xsettings_list_lookup
46 #define xsettings_setting_copy           _gdk_x11_xsettings_setting_copy
47 #define xsettings_setting_equal          _gdk_x11_xsettings_setting_equal
48 #define xsettings_setting_free           _gdk_x11_xsettings_setting_free
49
50 typedef GHashTable XSettingsList;
51
52 typedef struct _XSettingsBuffer  XSettingsBuffer;
53 typedef struct _XSettingsColor   XSettingsColor;
54 typedef struct _XSettingsSetting XSettingsSetting;
55
56 /* Types of settings possible. Enum values correspond to
57  * protocol values.
58  */
59 typedef enum 
60 {
61   XSETTINGS_TYPE_INT     = 0,
62   XSETTINGS_TYPE_STRING  = 1,
63   XSETTINGS_TYPE_COLOR   = 2
64 } XSettingsType;
65
66 typedef enum
67 {
68   XSETTINGS_SUCCESS,
69   XSETTINGS_NO_MEM,
70   XSETTINGS_ACCESS,
71   XSETTINGS_FAILED,
72   XSETTINGS_NO_ENTRY,
73   XSETTINGS_DUPLICATE_ENTRY
74 } XSettingsResult;
75
76 struct _XSettingsBuffer
77 {
78   char byte_order;
79   size_t len;
80   unsigned char *data;
81   unsigned char *pos;
82 };
83
84 struct _XSettingsColor
85 {
86   unsigned short red, green, blue, alpha;
87 };
88
89 struct _XSettingsSetting
90 {
91   char *name;
92   XSettingsType type;
93   
94   union {
95     int v_int;
96     char *v_string;
97     XSettingsColor v_color;
98   } data;
99
100   unsigned long last_change_serial;
101 };
102
103 XSettingsSetting *xsettings_setting_copy  (XSettingsSetting *setting);
104 void              xsettings_setting_free  (XSettingsSetting *setting);
105 int               xsettings_setting_equal (XSettingsSetting *setting_a,
106                                            XSettingsSetting *setting_b);
107
108 void              xsettings_list_free   (XSettingsList     *list);
109 XSettingsResult   xsettings_list_insert (XSettingsList    **list,
110                                          XSettingsSetting  *setting);
111 XSettingsSetting *xsettings_list_lookup (XSettingsList     *list,
112                                          const char        *name);
113
114 char xsettings_byte_order (void);
115
116 #define XSETTINGS_PAD(n,m) ((n + m - 1) & (~(m-1)))
117
118 #ifdef __cplusplus
119 }
120 #endif /* __cplusplus */
121
122 #endif /* XSETTINGS_COMMON_H */