~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to src/empathy-event-manager.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2009-11-16 23:40:52 UTC
  • mfrom: (1.1.39 upstream)
  • mto: (6.3.7 experimental)
  • mto: This revision was merged to the branch mainline in revision 80.
  • Revision ID: james.westby@ubuntu.com-20091116234052-7hhwrpeln4mwdyw7
Tags: upstream-2.29.2
ImportĀ upstreamĀ versionĀ 2.29.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
        GObjectClass parent_class;
49
49
};
50
50
 
 
51
typedef enum {
 
52
    EMPATHY_EVENT_TYPE_CHAT,
 
53
    EMPATHY_EVENT_TYPE_VOIP,
 
54
    EMPATHY_EVENT_TYPE_TUBE,
 
55
    EMPATHY_EVENT_TYPE_TRANSFER,
 
56
    EMPATHY_EVENT_TYPE_SUBSCRIPTION,
 
57
    EMPATHY_EVENT_TYPE_PRESENCE
 
58
} EmpathyEventType;
 
59
 
51
60
typedef struct {
52
 
        EmpathyContact *contact;
53
 
        gchar          *icon_name;
54
 
        gchar          *header;
55
 
        gchar          *message;
56
 
        gboolean        must_ack;
 
61
    EmpathyContact *contact;
 
62
    EmpathyEventType type;
 
63
    gchar *icon_name;
 
64
    gchar *header;
 
65
    gchar *message;
 
66
    gboolean must_ack;
57
67
} EmpathyEvent;
58
68
 
59
69
GType                empathy_event_manager_get_type      (void) G_GNUC_CONST;