summaryrefslogtreecommitdiff
path: root/dbus-proxy/xdg-app-proxy.h
blob: 7f046bf41310d28ffaa05ec25046f8262332aa93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright © 2015 Red Hat, Inc
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *       Alexander Larsson <alexl@redhat.com>
 */

#ifndef __XDG_APP_PROXY_H__
#define __XDG_APP_PROXY_H__

#include <gio/gio.h>
#include "libglnx/libglnx.h"

typedef enum {
  XDG_APP_POLICY_NONE,
  XDG_APP_POLICY_SEE,
  XDG_APP_POLICY_TALK,
  XDG_APP_POLICY_OWN
} XdgAppPolicy;

typedef struct XdgAppProxy XdgAppProxy;

#define XDG_APP_TYPE_PROXY xdg_app_proxy_get_type ()
#define XDG_APP_PROXY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XDG_APP_TYPE_PROXY, XdgAppProxy))
#define XDG_APP_IS_PROXY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XDG_APP_TYPE_PROXY))

G_DEFINE_AUTOPTR_CLEANUP_FUNC (XdgAppProxy, g_object_unref)

GType xdg_app_proxy_get_type (void);

XdgAppProxy *xdg_app_proxy_new (const char *dbus_address,
                                const char *socket_path);
void         xdg_app_proxy_set_log_messages (XdgAppProxy *proxy,
                                             gboolean     log);
void         xdg_app_proxy_set_filter (XdgAppProxy *proxy,
                                       gboolean     filter);
void         xdg_app_proxy_add_policy (XdgAppProxy *proxy,
                                       const char  *name,
                                       XdgAppPolicy policy);
void         xdg_app_proxy_add_wildcarded_policy (XdgAppProxy *proxy,
                                                  const char  *name,
                                                  XdgAppPolicy policy);
gboolean     xdg_app_proxy_start (XdgAppProxy *proxy,
                                  GError     **error);
void         xdg_app_proxy_stop (XdgAppProxy *proxy);

#endif /* __XDG_APP_PROXY_H__ */