]> git.0d.be Git - empathy.git/blob - libempathy/gossip-chatroom.h
Fix warning when selecting all accounts.
[empathy.git] / libempathy / gossip-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 __GOSSIP_CHATROOM_H__
24 #define __GOSSIP_CHATROOM_H__
25
26 #include <glib-object.h>
27
28 #include <libmissioncontrol/mc-account.h>
29
30 G_BEGIN_DECLS
31
32 #define GOSSIP_TYPE_CHATROOM             (gossip_chatroom_get_type ())
33 #define GOSSIP_CHATROOM(o)               (G_TYPE_CHECK_INSTANCE_CAST ((o), GOSSIP_TYPE_CHATROOM, GossipChatroom))
34 #define GOSSIP_CHATROOM_CLASS(k)         (G_TYPE_CHECK_CLASS_CAST ((k), GOSSIP_TYPE_CHATROOM, GossipChatroomClass))
35 #define GOSSIP_IS_CHATROOM(o)            (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOSSIP_TYPE_CHATROOM))
36 #define GOSSIP_IS_CHATROOM_CLASS(k)      (G_TYPE_CHECK_CLASS_TYPE ((k), GOSSIP_TYPE_CHATROOM))
37 #define GOSSIP_CHATROOM_GET_CLASS(o)     (G_TYPE_INSTANCE_GET_CLASS ((o), GOSSIP_TYPE_CHATROOM, GossipChatroomClass))
38
39 #define GOSSIP_TYPE_CHATROOM_INVITE       (gossip_chatroom_invite_get_gtype ())
40
41 typedef struct _GossipChatroom      GossipChatroom;
42 typedef struct _GossipChatroomClass GossipChatroomClass;
43 typedef struct _GossipChatroomPriv  GossipChatroomPriv;
44
45 struct _GossipChatroom {
46         GObject parent;
47 };
48
49 struct _GossipChatroomClass {
50         GObjectClass parent_class;
51 };
52
53 GType           gossip_chatroom_get_type         (void) G_GNUC_CONST;
54 GossipChatroom *gossip_chatroom_new              (McAccount      *account,
55                                                   const gchar    *room);
56 GossipChatroom *gossip_chatroom_new_full         (McAccount      *account,
57                                                   const gchar    *room,
58                                                   const gchar    *name,
59                                                   gboolean        auto_connect);
60 McAccount *     gossip_chatroom_get_account      (GossipChatroom *chatroom);
61 void            gossip_chatroom_set_account      (GossipChatroom *chatroom,
62                                                   McAccount      *account);
63 const gchar *   gossip_chatroom_get_room         (GossipChatroom *chatroom);
64 void            gossip_chatroom_set_room         (GossipChatroom *chatroom,
65                                                   const gchar    *room);
66 const gchar *   gossip_chatroom_get_name         (GossipChatroom *chatroom);
67 void            gossip_chatroom_set_name         (GossipChatroom *chatroom,
68                                                   const gchar    *name);
69 gboolean        gossip_chatroom_get_auto_connect (GossipChatroom *chatroom);
70 void            gossip_chatroom_set_auto_connect (GossipChatroom *chatroom,
71                                                   gboolean        auto_connect);
72 gboolean        gossip_chatroom_equal            (gconstpointer   v1,
73                                                   gconstpointer   v2);
74
75
76 G_BEGIN_DECLS
77
78 #endif /* __GOSSIP_CHATROOM_H__ */