sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* dbus-gidl.h data structure describing an interface, to be generated from IDL sl@0: * or something sl@0: * sl@0: * Copyright (C) 2003 Red Hat, Inc. sl@0: * sl@0: * Licensed under the Academic Free License version 2.1 sl@0: * sl@0: * This program is free software; you can redistribute it and/or modify sl@0: * it under the terms of the GNU General Public License as published by sl@0: * the Free Software Foundation; either version 2 of the License, or sl@0: * (at your option) any later version. sl@0: * sl@0: * This program is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the sl@0: * GNU General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU General Public License sl@0: * along with this program; if not, write to the Free Software sl@0: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA sl@0: * sl@0: */ sl@0: #ifndef DBUS_GLIB_IDL_H sl@0: #define DBUS_GLIB_IDL_H sl@0: sl@0: #ifndef DOXYGEN_SHOULD_SKIP_THIS sl@0: sl@0: #include sl@0: #include sl@0: sl@0: G_BEGIN_DECLS sl@0: sl@0: typedef struct BaseInfo BaseInfo; sl@0: typedef struct NodeInfo NodeInfo; sl@0: typedef struct InterfaceInfo InterfaceInfo; sl@0: typedef struct MethodInfo MethodInfo; sl@0: typedef struct SignalInfo SignalInfo; sl@0: typedef struct PropertyInfo PropertyInfo; sl@0: typedef struct ArgInfo ArgInfo; sl@0: sl@0: typedef enum sl@0: { sl@0: ARG_INVALID = -1, sl@0: ARG_IN, sl@0: ARG_OUT sl@0: } ArgDirection; sl@0: sl@0: typedef enum sl@0: { sl@0: PROPERTY_READ = 1 << 0, sl@0: PROPERTY_WRITE = 1 << 1 sl@0: } PropertyAccessFlags; sl@0: sl@0: typedef enum sl@0: { sl@0: INFO_TYPE_NODE, sl@0: INFO_TYPE_INTERFACE, sl@0: INFO_TYPE_METHOD, sl@0: INFO_TYPE_SIGNAL, sl@0: INFO_TYPE_ARG, sl@0: INFO_TYPE_PROPERTY sl@0: sl@0: } InfoType; sl@0: sl@0: BaseInfo* base_info_ref (BaseInfo *info); sl@0: void base_info_unref (BaseInfo *info); sl@0: InfoType base_info_get_type (BaseInfo *info); sl@0: const char* base_info_get_name (BaseInfo *info); sl@0: void base_info_set_name (BaseInfo *info, sl@0: const char *name); sl@0: GType base_info_get_gtype (void); sl@0: #define BASE_INFO_TYPE (base_info_get_gtype ()) sl@0: sl@0: sl@0: NodeInfo* node_info_new (const char *name); sl@0: NodeInfo* node_info_ref (NodeInfo *info); sl@0: void node_info_unref (NodeInfo *info); sl@0: const char* node_info_get_name (NodeInfo *info); sl@0: GSList* node_info_get_interfaces (NodeInfo *info); sl@0: GSList* node_info_get_nodes (NodeInfo *info); sl@0: void node_info_add_interface (NodeInfo *info, sl@0: InterfaceInfo *interface); sl@0: void node_info_add_node (NodeInfo *info, sl@0: NodeInfo *child); sl@0: void node_info_replace_node (NodeInfo *info, sl@0: NodeInfo *old_child, sl@0: NodeInfo *new_child); sl@0: InterfaceInfo* interface_info_new (const char *name); sl@0: InterfaceInfo* interface_info_ref (InterfaceInfo *info); sl@0: void interface_info_unref (InterfaceInfo *info); sl@0: const char* interface_info_get_name (InterfaceInfo *info); sl@0: GSList* interface_info_get_annotations(InterfaceInfo *info); sl@0: const char* interface_info_get_annotation (InterfaceInfo*info, sl@0: const char *annotation); sl@0: GSList* interface_info_get_methods (InterfaceInfo *info); sl@0: GSList* interface_info_get_signals (InterfaceInfo *info); sl@0: GSList* interface_info_get_properties (InterfaceInfo *info); sl@0: void interface_info_add_annotation (InterfaceInfo *info, sl@0: const char *name, sl@0: const char *value); sl@0: void interface_info_add_method (InterfaceInfo *info, sl@0: MethodInfo *method); sl@0: void interface_info_add_signal (InterfaceInfo *info, sl@0: SignalInfo *signal); sl@0: void interface_info_add_property (InterfaceInfo *info, sl@0: PropertyInfo *property); sl@0: MethodInfo* method_info_new (const char *name); sl@0: MethodInfo* method_info_ref (MethodInfo *info); sl@0: void method_info_unref (MethodInfo *info); sl@0: const char* method_info_get_name (MethodInfo *info); sl@0: GSList* method_info_get_annotations (MethodInfo *info); sl@0: const char* method_info_get_annotation (MethodInfo *info, sl@0: const char *annotation); sl@0: void method_info_add_annotation (MethodInfo *info, sl@0: const char *name, sl@0: const char *value); sl@0: GSList* method_info_get_args (MethodInfo *info); sl@0: void method_info_add_arg (MethodInfo *info, sl@0: ArgInfo *arg); sl@0: int method_info_get_n_args (MethodInfo *info); sl@0: SignalInfo* signal_info_new (const char *name); sl@0: SignalInfo* signal_info_ref (SignalInfo *info); sl@0: void signal_info_unref (SignalInfo *info); sl@0: const char* signal_info_get_name (SignalInfo *info); sl@0: GSList* signal_info_get_args (SignalInfo *info); sl@0: void signal_info_add_arg (SignalInfo *info, sl@0: ArgInfo *arg); sl@0: int signal_info_get_n_args (SignalInfo *info); sl@0: PropertyInfo* property_info_new (const char *name, sl@0: const char *type, sl@0: PropertyAccessFlags access); sl@0: PropertyInfo* property_info_ref (PropertyInfo *info); sl@0: void property_info_unref (PropertyInfo *info); sl@0: const char* property_info_get_name (PropertyInfo *info); sl@0: const char* property_info_get_type (PropertyInfo *info); sl@0: PropertyAccessFlags property_info_get_access (PropertyInfo *info); sl@0: ArgInfo* arg_info_new (const char *name, sl@0: ArgDirection direction, sl@0: const char *type); sl@0: ArgInfo* arg_info_ref (ArgInfo *info); sl@0: void arg_info_unref (ArgInfo *info); sl@0: const char* arg_info_get_name (ArgInfo *info); sl@0: const char* arg_info_get_type (ArgInfo *info); sl@0: ArgDirection arg_info_get_direction (ArgInfo *info); sl@0: GSList* arg_info_get_annotations (ArgInfo *info); sl@0: const char* arg_info_get_annotation (ArgInfo *info, sl@0: const char *annotation); sl@0: void arg_info_add_annotation (ArgInfo *info, sl@0: const char *name, sl@0: const char *value); sl@0: sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* DBUS_GLIB_IDL_H */ sl@0: sl@0: #endif /* DOXYGEN_SHOULD_SKIP_THIS */