tizen 2.3.1 release
[external/gupnp.git] / libgupnp / gupnp-control-point.h
1 /*
2  * Copyright (C) 2006, 2007 OpenedHand Ltd.
3  *
4  * Author: Jorn Baayen <jorn@openedhand.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GUPNP_CONTROL_POINT_H__
23 #define __GUPNP_CONTROL_POINT_H__
24
25 #include <libgssdp/gssdp-resource-browser.h>
26
27 #include "gupnp-context.h"
28 #include "gupnp-resource-factory.h"
29 #include "gupnp-device-proxy.h"
30 #include "gupnp-service-proxy.h"
31
32 G_BEGIN_DECLS
33
34 GType
35 gupnp_control_point_get_type (void) G_GNUC_CONST;
36
37 #define GUPNP_TYPE_CONTROL_POINT \
38                 (gupnp_control_point_get_type ())
39 #define GUPNP_CONTROL_POINT(obj) \
40                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
41                  GUPNP_TYPE_CONTROL_POINT, \
42                  GUPnPControlPoint))
43 #define GUPNP_CONTROL_POINT_CLASS(obj) \
44                 (G_TYPE_CHECK_CLASS_CAST ((obj), \
45                  GUPNP_TYPE_CONTROL_POINT, \
46                  GUPnPControlPointClass))
47 #define GUPNP_IS_CONTROL_POINT(obj) \
48                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
49                  GUPNP_TYPE_CONTROL_POINT))
50 #define GUPNP_IS_CONTROL_POINT_CLASS(obj) \
51                 (G_TYPE_CHECK_CLASS_TYPE ((obj), \
52                  GUPNP_TYPE_CONTROL_POINT))
53 #define GUPNP_CONTROL_POINT_GET_CLASS(obj) \
54                 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
55                  GUPNP_TYPE_CONTROL_POINT, \
56                  GUPnPControlPointClass))
57
58 typedef struct _GUPnPControlPointPrivate GUPnPControlPointPrivate;
59
60 /**
61  * GUPnPControlPoint:
62  *
63  * This struct contains private data only, and should be accessed using the
64  * functions below.
65  */
66 typedef struct {
67         GSSDPResourceBrowser parent;
68
69         GUPnPControlPointPrivate *priv;
70 } GUPnPControlPoint;
71
72 typedef struct {
73         GSSDPResourceBrowserClass parent_class;
74
75         /* signals */
76         void (* device_proxy_available)    (GUPnPControlPoint *control_point,
77                                             GUPnPDeviceProxy  *proxy);
78
79         void (* device_proxy_unavailable)  (GUPnPControlPoint *control_point,
80                                             GUPnPDeviceProxy  *proxy);
81
82         void (* service_proxy_available)   (GUPnPControlPoint *control_point,
83                                             GUPnPServiceProxy *proxy);
84
85         void (* service_proxy_unavailable) (GUPnPControlPoint *control_point,
86                                             GUPnPServiceProxy *proxy);
87
88         /* future padding */
89         void (* _gupnp_reserved1) (void);
90         void (* _gupnp_reserved2) (void);
91         void (* _gupnp_reserved3) (void);
92 } GUPnPControlPointClass;
93
94 GUPnPControlPoint *
95 gupnp_control_point_new                  (GUPnPContext         *context,
96                                           const char           *target);
97
98 GUPnPControlPoint *
99 gupnp_control_point_new_full             (GUPnPContext         *context,
100                                           GUPnPResourceFactory *factory,
101                                           const char           *target);
102
103 GUPnPContext *
104 gupnp_control_point_get_context          (GUPnPControlPoint    *control_point);
105
106 const GList *
107 gupnp_control_point_list_device_proxies  (GUPnPControlPoint    *control_point);
108
109 const GList *
110 gupnp_control_point_list_service_proxies (GUPnPControlPoint    *control_point);
111
112 GUPnPResourceFactory *
113 gupnp_control_point_get_resource_factory (GUPnPControlPoint    *control_point);
114
115 G_END_DECLS
116
117 #endif /* __GUPNP_CONTROL_POINT_H__ */