]> git.0d.be Git - empathy.git/blob - libempathy/empathy-chatroom.h
20f98ecc6b25bafb7f4f5bf013a41181054bb6a8
[empathy.git] / libempathy / empathy-chatroom.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #ifndef __EMPATHY_CHATROOM_H__
24 #define __EMPATHY_CHATROOM_H__
25
26 #include <glib-object.h>
27
28 #include <libmissioncontrol/mc-account.h>
29
30 G_BEGIN_DECLS
31
32 #define EMPATHY_TYPE_CHATROOM             (empathy_chatroom_get_type ())
33 #define EMPATHY_CHATROOM(o)               (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CHATROOM, EmpathyChatroom))
34 #define EMPATHY_CHATROOM_CLASS(k)         (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_CHATROOM, EmpathyChatroomClass))
35 #define EMPATHY_IS_CHATROOM(o)            (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CHATROOM))
36 #define EMPATHY_IS_CHATROOM_CLASS(k)      (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CHATROOM))
37 #define EMPATHY_CHATROOM_GET_CLASS(o)     (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CHATROOM, EmpathyChatroomClass))
38
39 #define EMPATHY_TYPE_CHATROOM_INVITE       (empathy_chatroom_invite_get_gtype ())
40
41 typedef struct _EmpathyChatroom      EmpathyChatroom;
42 typedef struct _EmpathyChatroomClass EmpathyChatroomClass;
43 typedef struct _EmpathyChatroomPriv  EmpathyChatroomPriv;
44
45 struct _EmpathyChatroom {
46         GObject parent;
47 };
48
49 struct _EmpathyChatroomClass {
50         GObjectClass parent_class;
51 };
52
53 GType           empathy_chatroom_get_type         (void) G_GNUC_CONST;
54 EmpathyChatroom *empathy_chatroom_new              (McAccount      *account,
55                                                   const gchar    *room);
56 EmpathyChatroom *empathy_chatroom_new_full         (McAccount      *account,
57                                                   const gchar    *room,
58                                                   const gchar    *name,
59                                                   gboolean        auto_connect);
60 McAccount *     empathy_chatroom_get_account      (EmpathyChatroom *chatroom);
61 void            empathy_chatroom_set_account      (EmpathyChatroom *chatroom,
62                                                   McAccount      *account);
63 const gchar *   empathy_chatroom_get_room         (EmpathyChatroom *chatroom);
64 void            empathy_chatroom_set_room         (EmpathyChatroom *chatroom,
65                                                   const gchar    *room);
66 const gchar *   empathy_chatroom_get_name         (EmpathyChatroom *chatroom);
67 void            empathy_chatroom_set_name         (EmpathyChatroom *chatroom,
68                                                   const gchar    *name);
69 gboolean        empathy_chatroom_get_auto_connect (EmpathyChatroom *chatroom);
70 void            empathy_chatroom_set_auto_connect (EmpathyChatroom *chatroom,
71                                                   gboolean        auto_connect);
72 gboolean        empathy_chatroom_equal            (gconstpointer   v1,
73                                                   gconstpointer   v2);
74
75
76 G_BEGIN_DECLS
77
78 #endif /* __EMPATHY_CHATROOM_H__ */