aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-chatroom.h
diff options
context:
space:
mode:
authorPierre-Luc Beaudoin <pierre-luc@pierlux.com>2008-12-18 06:41:30 +0800
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>2009-04-18 04:24:16 +0800
commit1df3cf4311df50cbe3c3909010828b068da53f1d (patch)
tree2e7cb8741ee35e4428b639473d8e18783975e9cf /libempathy/empathy-chatroom.h
parente57f5cfac0d04a01dd94bf4404cd17d5f4706c8a (diff)
downloadgsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.tar
gsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.tar.gz
gsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.tar.bz2
gsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.tar.lz
gsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.tar.xz
gsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.tar.zst
gsoc2013-empathy-1df3cf4311df50cbe3c3909010828b068da53f1d.zip
Add more information to EmpathyChatroom
- Invite Only - Require password - Subject - Member count
Diffstat (limited to 'libempathy/empathy-chatroom.h')
-rw-r--r--libempathy/empathy-chatroom.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libempathy/empathy-chatroom.h b/libempathy/empathy-chatroom.h
index 3261c8d25..08e3bc1eb 100644
--- a/libempathy/empathy-chatroom.h
+++ b/libempathy/empathy-chatroom.h
@@ -69,6 +69,18 @@ void empathy_chatroom_set_name (EmpathyChatroom *chatroom,
gboolean empathy_chatroom_get_auto_connect (EmpathyChatroom *chatroom);
void empathy_chatroom_set_auto_connect (EmpathyChatroom *chatroom,
gboolean auto_connect);
+const gchar * empathy_chatroom_get_subject (EmpathyChatroom *chatroom);
+void empathy_chatroom_set_subject (EmpathyChatroom *chatroom,
+ const gchar *subject);
+guint empathy_chatroom_get_members_count (EmpathyChatroom *chatroom);
+void empathy_chatroom_set_members_count (EmpathyChatroom *chatroom,
+ guint count);
+gboolean empathy_chatroom_get_need_password (EmpathyChatroom *chatroom);
+void empathy_chatroom_set_need_password (EmpathyChatroom *chatroom,
+ gboolean need_password);
+gboolean empathy_chatroom_get_invite_only (EmpathyChatroom *chatroom);
+void empathy_chatroom_set_invite_only (EmpathyChatroom *chatroom,
+ gboolean invite_only);
gboolean empathy_chatroom_equal (gconstpointer v1,
gconstpointer v2);
EmpathyTpChat * empathy_chatroom_get_tp_chat (EmpathyChatroom *chatroom);