LibMB 1.12
xsettings-client.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_CLIENT_H
24#define XSETTINGS_CLIENT_H
25
26#include <X11/Xlib.h>
27#include "xsettings-common.h"
28
29#ifdef __cplusplus
30extern "C" {
31#endif /* __cplusplus */
32
33typedef struct _XSettingsClient XSettingsClient;
34
35typedef enum
36{
37 XSETTINGS_ACTION_NEW,
38 XSETTINGS_ACTION_CHANGED,
39 XSETTINGS_ACTION_DELETED
40} XSettingsAction;
41
42typedef void (*XSettingsNotifyFunc) (const char *name,
43 XSettingsAction action,
44 XSettingsSetting *setting,
45 void *cb_data);
46typedef void (*XSettingsWatchFunc) (Window window,
47 Bool is_start,
48 long mask,
49 void *cb_data);
50typedef void (*XSettingsGrabFunc) (Display *display);
51
52XSettingsClient *xsettings_client_new (Display *display,
53 int screen,
54 XSettingsNotifyFunc notify,
55 XSettingsWatchFunc watch,
56 void *cb_data);
57void xsettings_client_set_grab_func (XSettingsClient *client,
58 XSettingsGrabFunc grab);
59void xsettings_client_set_ungrab_func (XSettingsClient *client,
60 XSettingsGrabFunc ungrab);
61void xsettings_client_destroy (XSettingsClient *client);
62Bool xsettings_client_process_event (XSettingsClient *client,
63 XEvent *xev);
64XSettingsResult xsettings_client_get_setting (XSettingsClient *client,
65 const char *name,
66 XSettingsSetting **setting);
67
68#ifdef __cplusplus
69}
70#endif /* __cplusplus */
71
72#endif /* XSETTINGS_CLIENT_H */