update laditools submodule (fixes #41)
[ladish.git] / dbus / signal.h
blob0534bc4ea36c5396803438fb656f12cabcf07ae4
1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*
3 * LADI Session Handler (ladish)
5 * Copyright (C) 2008, 2009 Nedko Arnaudov <nedko@arnaudov.name>
6 * Copyright (C) 2008 Juuso Alasuutari <juuso.alasuutari@gmail.com>
8 **************************************************************************
9 * This file contains interface to D-Bus signal helpers
10 **************************************************************************
12 * Licensed under the Academic Free License version 2.1
14 * LADI Session Handler is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * LADI Session Handler is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
26 * or write to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
30 #ifndef __LASH_DBUS_SIGNAL_H__
31 #define __LASH_DBUS_SIGNAL_H__
33 struct dbus_signal_arg_descriptor
35 const char * name;
36 const char * type;
39 struct dbus_signal_descriptor
41 const char * name;
42 const struct dbus_signal_arg_descriptor * args;
45 void
46 dbus_signal_emit(
47 DBusConnection * connection_ptr,
48 const char * path,
49 const char * interface,
50 const char * name,
51 const char * signature,
52 ...);
54 #define SIGNAL_ARGS_BEGIN(signal_name, descr) \
55 static const struct dbus_signal_arg_descriptor signal_name ## _args_dtor[] = \
58 #define SIGNAL_ARG_DESCRIBE(arg_name, arg_type, descr) \
59 { \
60 .name = arg_name, \
61 .type = arg_type \
64 #define SIGNAL_ARGS_END \
65 { \
66 .name = NULL, \
67 .type = NULL \
68 } \
71 #define SIGNALS_BEGIN \
72 static const struct dbus_signal_descriptor signals_dtor[] = \
75 #define SIGNAL_DESCRIBE(signal_name) \
76 { \
77 .name = # signal_name, \
78 .args = signal_name ## _args_dtor \
81 #define SIGNALS_END \
82 { \
83 .name = NULL, \
84 .args = NULL \
85 } \
88 #endif /* __LASH_DBUS_SIGNAL_H__ */