~ubuntu-branches/debian/jessie/empathy/jessie

« back to all changes in this revision

Viewing changes to libempathy/empathy-tp-chat.h

  • Committer: Package Import Robot
  • Author(s): Sjoerd Simons
  • Date: 2011-11-01 13:43:50 UTC
  • mfrom: (1.7.2)
  • Revision ID: package-import@ubuntu.com-20111101134350-13xb8db5d7mpojid
Tags: 3.2.1.1-1
* New upstream release
* debian/control: Bump libtelepathy-glib b-d

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        TpTextChannelClass parent_class;
54
54
};
55
55
 
56
 
typedef struct {
57
 
        gchar          *name;
58
 
        guint           id;
59
 
        TpPropertyFlags flags;
60
 
        GValue         *value;
61
 
} EmpathyTpChatProperty;
62
 
 
63
56
typedef enum {
64
57
        EMPATHY_DELIVERY_STATUS_NONE,
65
58
        EMPATHY_DELIVERY_STATUS_SENDING,
83
76
TpAccount    * empathy_tp_chat_get_account          (EmpathyTpChat      *chat);
84
77
void           empathy_tp_chat_send                 (EmpathyTpChat      *chat,
85
78
                                                     TpMessage     *message);
86
 
void           empathy_tp_chat_set_property         (EmpathyTpChat      *chat,
87
 
                                                     const gchar        *name,
88
 
                                                     const GValue       *value);
89
 
EmpathyTpChatProperty *
90
 
               empathy_tp_chat_get_property         (EmpathyTpChat      *chat,
91
 
                                                     const gchar        *name);
92
 
GPtrArray *    empathy_tp_chat_get_properties       (EmpathyTpChat      *chat);
 
79
 
 
80
const gchar *  empathy_tp_chat_get_title            (EmpathyTpChat *self);
 
81
 
 
82
gboolean       empathy_tp_chat_supports_subject     (EmpathyTpChat *self);
 
83
const gchar *  empathy_tp_chat_get_subject          (EmpathyTpChat *self);
 
84
gboolean       empathy_tp_chat_can_set_subject      (EmpathyTpChat *self);
 
85
void           empathy_tp_chat_set_subject          (EmpathyTpChat *self,
 
86
                                                     const gchar   *subject);
93
87
 
94
88
/* Returns a read-only list of pending messages (should be a copy maybe ?) */
95
89
const GList *  empathy_tp_chat_get_pending_messages (EmpathyTpChat *chat);