File: call-channel.h

package info (click to toggle)
telepathy-farstream 0.6.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,760 kB
  • sloc: sh: 11,072; ansic: 9,131; python: 2,875; makefile: 223
file content (118 lines) | stat: -rw-r--r-- 3,111 bytes parent folder | download | duplicates (3)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * call-channel.c - Source for TfCallChannel
 * Copyright (C) 2010 Collabora Ltd.
 *
 * This library 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.1 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, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef __TF_CALL_CHANNEL_H__
#define __TF_CALL_CHANNEL_H__

#include <glib-object.h>

#include <gst/gst.h>
#include <farstream/fs-conference.h>
#include <telepathy-glib/telepathy-glib.h>

G_BEGIN_DECLS

#define TF_TYPE_CALL_CHANNEL tf_call_channel_get_type()

#define TF_CALL_CHANNEL(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
  TF_TYPE_CALL_CHANNEL, TfCallChannel))

#define TF_CALL_CHANNEL_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), \
  TF_TYPE_CALL_CHANNEL, TfCallChannelClass))

#define TF_IS_CALL_CHANNEL(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TF_TYPE_CALL_CHANNEL))

#define TF_IS_CALL_CHANNEL_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), TF_TYPE_CALL_CHANNEL))

#define TF_CALL_CHANNEL_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
  TF_TYPE_CALL_CHANNEL, TfCallChannelClass))

typedef struct _TfCallChannelPrivate TfCallChannelPrivate;

/**
 * TfCallChannel:
 *
 * All members of the object are private
 */

typedef struct _TfCallChannel TfCallChannel;

/**
 * TfCallChannelClass:
 * @parent_class: the parent #GObjecClass
 *
 * There are no overridable functions
 */

typedef struct _TfCallChannelClass TfCallChannelClass;



struct _TfCallChannel {
  GObject parent;

  TpChannel *proxy;

  GHashTable *fsconferences;

  GPtrArray *contents; /* NULL before getting the first contents */

  GPtrArray *participants;
};

struct _TfCallChannelClass{
  GObjectClass parent_class;
};


GType tf_call_channel_get_type (void);

void tf_call_channel_new_async (TpChannel *channel_proxy,
    GAsyncReadyCallback callback,
    gpointer user_data);

void tf_call_channel_error (TfCallChannel *channel);

gboolean tf_call_channel_bus_message (TfCallChannel *channel,
    GstMessage *message);

/* Private methods, only to be used inside TP-FS */

FsConference *_tf_call_channel_get_conference (TfCallChannel *channel,
    const gchar *conference_type);
void _tf_call_channel_put_conference (TfCallChannel *channel,
    FsConference *conference);


FsParticipant *_tf_call_channel_get_participant (TfCallChannel *channel,
    FsConference *fsconference,
    guint contact_handle,
    GError **error);
void _tf_call_channel_put_participant (TfCallChannel *channel,
    FsParticipant *participant);

G_END_DECLS

#endif /* __TF_CALL_CHANNEL_H__ */