sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* dbus-gidl.h data structure describing an interface, to be generated from IDL
|
sl@0
|
3 |
* or something
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* Copyright (C) 2003 Red Hat, Inc.
|
sl@0
|
6 |
*
|
sl@0
|
7 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
10 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
11 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
12 |
* (at your option) any later version.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
15 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
16 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
17 |
* GNU General Public License for more details.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
20 |
* along with this program; if not, write to the Free Software
|
sl@0
|
21 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
22 |
*
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
#ifndef DBUS_GLIB_IDL_H
|
sl@0
|
25 |
#define DBUS_GLIB_IDL_H
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifndef DOXYGEN_SHOULD_SKIP_THIS
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <dbus/dbus.h>
|
sl@0
|
30 |
#include <glib-object.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
G_BEGIN_DECLS
|
sl@0
|
33 |
|
sl@0
|
34 |
typedef struct BaseInfo BaseInfo;
|
sl@0
|
35 |
typedef struct NodeInfo NodeInfo;
|
sl@0
|
36 |
typedef struct InterfaceInfo InterfaceInfo;
|
sl@0
|
37 |
typedef struct MethodInfo MethodInfo;
|
sl@0
|
38 |
typedef struct SignalInfo SignalInfo;
|
sl@0
|
39 |
typedef struct PropertyInfo PropertyInfo;
|
sl@0
|
40 |
typedef struct ArgInfo ArgInfo;
|
sl@0
|
41 |
|
sl@0
|
42 |
typedef enum
|
sl@0
|
43 |
{
|
sl@0
|
44 |
ARG_INVALID = -1,
|
sl@0
|
45 |
ARG_IN,
|
sl@0
|
46 |
ARG_OUT
|
sl@0
|
47 |
} ArgDirection;
|
sl@0
|
48 |
|
sl@0
|
49 |
typedef enum
|
sl@0
|
50 |
{
|
sl@0
|
51 |
PROPERTY_READ = 1 << 0,
|
sl@0
|
52 |
PROPERTY_WRITE = 1 << 1
|
sl@0
|
53 |
} PropertyAccessFlags;
|
sl@0
|
54 |
|
sl@0
|
55 |
typedef enum
|
sl@0
|
56 |
{
|
sl@0
|
57 |
INFO_TYPE_NODE,
|
sl@0
|
58 |
INFO_TYPE_INTERFACE,
|
sl@0
|
59 |
INFO_TYPE_METHOD,
|
sl@0
|
60 |
INFO_TYPE_SIGNAL,
|
sl@0
|
61 |
INFO_TYPE_ARG,
|
sl@0
|
62 |
INFO_TYPE_PROPERTY
|
sl@0
|
63 |
|
sl@0
|
64 |
} InfoType;
|
sl@0
|
65 |
|
sl@0
|
66 |
BaseInfo* base_info_ref (BaseInfo *info);
|
sl@0
|
67 |
void base_info_unref (BaseInfo *info);
|
sl@0
|
68 |
InfoType base_info_get_type (BaseInfo *info);
|
sl@0
|
69 |
const char* base_info_get_name (BaseInfo *info);
|
sl@0
|
70 |
void base_info_set_name (BaseInfo *info,
|
sl@0
|
71 |
const char *name);
|
sl@0
|
72 |
GType base_info_get_gtype (void);
|
sl@0
|
73 |
#define BASE_INFO_TYPE (base_info_get_gtype ())
|
sl@0
|
74 |
|
sl@0
|
75 |
|
sl@0
|
76 |
NodeInfo* node_info_new (const char *name);
|
sl@0
|
77 |
NodeInfo* node_info_ref (NodeInfo *info);
|
sl@0
|
78 |
void node_info_unref (NodeInfo *info);
|
sl@0
|
79 |
const char* node_info_get_name (NodeInfo *info);
|
sl@0
|
80 |
GSList* node_info_get_interfaces (NodeInfo *info);
|
sl@0
|
81 |
GSList* node_info_get_nodes (NodeInfo *info);
|
sl@0
|
82 |
void node_info_add_interface (NodeInfo *info,
|
sl@0
|
83 |
InterfaceInfo *interface);
|
sl@0
|
84 |
void node_info_add_node (NodeInfo *info,
|
sl@0
|
85 |
NodeInfo *child);
|
sl@0
|
86 |
void node_info_replace_node (NodeInfo *info,
|
sl@0
|
87 |
NodeInfo *old_child,
|
sl@0
|
88 |
NodeInfo *new_child);
|
sl@0
|
89 |
InterfaceInfo* interface_info_new (const char *name);
|
sl@0
|
90 |
InterfaceInfo* interface_info_ref (InterfaceInfo *info);
|
sl@0
|
91 |
void interface_info_unref (InterfaceInfo *info);
|
sl@0
|
92 |
const char* interface_info_get_name (InterfaceInfo *info);
|
sl@0
|
93 |
GSList* interface_info_get_annotations(InterfaceInfo *info);
|
sl@0
|
94 |
const char* interface_info_get_annotation (InterfaceInfo*info,
|
sl@0
|
95 |
const char *annotation);
|
sl@0
|
96 |
GSList* interface_info_get_methods (InterfaceInfo *info);
|
sl@0
|
97 |
GSList* interface_info_get_signals (InterfaceInfo *info);
|
sl@0
|
98 |
GSList* interface_info_get_properties (InterfaceInfo *info);
|
sl@0
|
99 |
void interface_info_add_annotation (InterfaceInfo *info,
|
sl@0
|
100 |
const char *name,
|
sl@0
|
101 |
const char *value);
|
sl@0
|
102 |
void interface_info_add_method (InterfaceInfo *info,
|
sl@0
|
103 |
MethodInfo *method);
|
sl@0
|
104 |
void interface_info_add_signal (InterfaceInfo *info,
|
sl@0
|
105 |
SignalInfo *signal);
|
sl@0
|
106 |
void interface_info_add_property (InterfaceInfo *info,
|
sl@0
|
107 |
PropertyInfo *property);
|
sl@0
|
108 |
MethodInfo* method_info_new (const char *name);
|
sl@0
|
109 |
MethodInfo* method_info_ref (MethodInfo *info);
|
sl@0
|
110 |
void method_info_unref (MethodInfo *info);
|
sl@0
|
111 |
const char* method_info_get_name (MethodInfo *info);
|
sl@0
|
112 |
GSList* method_info_get_annotations (MethodInfo *info);
|
sl@0
|
113 |
const char* method_info_get_annotation (MethodInfo *info,
|
sl@0
|
114 |
const char *annotation);
|
sl@0
|
115 |
void method_info_add_annotation (MethodInfo *info,
|
sl@0
|
116 |
const char *name,
|
sl@0
|
117 |
const char *value);
|
sl@0
|
118 |
GSList* method_info_get_args (MethodInfo *info);
|
sl@0
|
119 |
void method_info_add_arg (MethodInfo *info,
|
sl@0
|
120 |
ArgInfo *arg);
|
sl@0
|
121 |
int method_info_get_n_args (MethodInfo *info);
|
sl@0
|
122 |
SignalInfo* signal_info_new (const char *name);
|
sl@0
|
123 |
SignalInfo* signal_info_ref (SignalInfo *info);
|
sl@0
|
124 |
void signal_info_unref (SignalInfo *info);
|
sl@0
|
125 |
const char* signal_info_get_name (SignalInfo *info);
|
sl@0
|
126 |
GSList* signal_info_get_args (SignalInfo *info);
|
sl@0
|
127 |
void signal_info_add_arg (SignalInfo *info,
|
sl@0
|
128 |
ArgInfo *arg);
|
sl@0
|
129 |
int signal_info_get_n_args (SignalInfo *info);
|
sl@0
|
130 |
PropertyInfo* property_info_new (const char *name,
|
sl@0
|
131 |
const char *type,
|
sl@0
|
132 |
PropertyAccessFlags access);
|
sl@0
|
133 |
PropertyInfo* property_info_ref (PropertyInfo *info);
|
sl@0
|
134 |
void property_info_unref (PropertyInfo *info);
|
sl@0
|
135 |
const char* property_info_get_name (PropertyInfo *info);
|
sl@0
|
136 |
const char* property_info_get_type (PropertyInfo *info);
|
sl@0
|
137 |
PropertyAccessFlags property_info_get_access (PropertyInfo *info);
|
sl@0
|
138 |
ArgInfo* arg_info_new (const char *name,
|
sl@0
|
139 |
ArgDirection direction,
|
sl@0
|
140 |
const char *type);
|
sl@0
|
141 |
ArgInfo* arg_info_ref (ArgInfo *info);
|
sl@0
|
142 |
void arg_info_unref (ArgInfo *info);
|
sl@0
|
143 |
const char* arg_info_get_name (ArgInfo *info);
|
sl@0
|
144 |
const char* arg_info_get_type (ArgInfo *info);
|
sl@0
|
145 |
ArgDirection arg_info_get_direction (ArgInfo *info);
|
sl@0
|
146 |
GSList* arg_info_get_annotations (ArgInfo *info);
|
sl@0
|
147 |
const char* arg_info_get_annotation (ArgInfo *info,
|
sl@0
|
148 |
const char *annotation);
|
sl@0
|
149 |
void arg_info_add_annotation (ArgInfo *info,
|
sl@0
|
150 |
const char *name,
|
sl@0
|
151 |
const char *value);
|
sl@0
|
152 |
|
sl@0
|
153 |
|
sl@0
|
154 |
G_END_DECLS
|
sl@0
|
155 |
|
sl@0
|
156 |
#endif /* DBUS_GLIB_IDL_H */
|
sl@0
|
157 |
|
sl@0
|
158 |
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
|