]> Dogcows Code - chaz/tint2/blob - src/launcher/xsettings-client.h
launcher : limit launcher_icon_theme to 1 theme. Add XSETTINGS client and read launch...
[chaz/tint2] / src / launcher / 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
30 extern "C" {
31 #endif /* __cplusplus */
32
33 typedef struct _XSettingsClient XSettingsClient;
34
35 typedef enum
36 {
37 XSETTINGS_ACTION_NEW,
38 XSETTINGS_ACTION_CHANGED,
39 XSETTINGS_ACTION_DELETED
40 } XSettingsAction;
41
42 typedef void (*XSettingsNotifyFunc) (const char *name,
43 XSettingsAction action,
44 XSettingsSetting *setting,
45 void *cb_data);
46 typedef void (*XSettingsWatchFunc) (Window window,
47 Bool is_start,
48 long mask,
49 void *cb_data);
50
51 XSettingsClient *xsettings_client_new (Display *display,
52 int screen,
53 XSettingsNotifyFunc notify,
54 XSettingsWatchFunc watch,
55 void *cb_data);
56 void xsettings_client_destroy (XSettingsClient *client);
57 Bool xsettings_client_process_event (XSettingsClient *client,
58 XEvent *xev);
59
60 void xsettings_notify_cb (const char *name, XSettingsAction action, XSettingsSetting *setting, void *data);
61
62 XSettingsResult xsettings_client_get_setting (XSettingsClient *client,
63 const char *name,
64 XSettingsSetting **setting);
65
66 #ifdef __cplusplus
67 }
68 #endif /* __cplusplus */
69
70 #endif /* XSETTINGS_CLIENT_H */
This page took 0.030018 seconds and 4 git commands to generate.