~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-client-gnome/src/sflnotify.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 * A dialog box is attached to the status icon
61
61
 * @param c The incoming call
62
62
 */
63
 
void notify_incoming_call( callable_obj_t* c);
 
63
void notify_incoming_call (callable_obj_t* c);
 
64
 
 
65
/**
 
66
 * Notify an incoming text message
 
67
 * A dialog box is attached to the status icon
 
68
 * @param c The incoming message
 
69
 */
 
70
void notify_incoming_message (const gchar *callID, const gchar *msg);
64
71
 
65
72
/**
66
73
 * Notify voice mails count
68
75
 * @param count The number of voice mails
69
76
 * @param acc The account that received the notification
70
77
 */
71
 
void notify_voice_mails( guint count , account_t* acc );
 
78
void notify_voice_mails (guint count , account_t* acc);
72
79
 
73
80
/**
74
81
 * Notify the current account used to make calls with
75
82
 * @param acc The current account
76
83
 */
77
 
void notify_current_account( account_t* acc );
 
84
void notify_current_account (account_t* acc);
78
85
 
79
86
/**
80
87
 * Notify that no accounts have been setup
81
88
 */
82
 
void notify_no_accounts( );
 
89
void notify_no_accounts();
83
90
 
84
91
/**
85
92
 * Notify that there is no registered account
86
93
 */
87
 
void notify_no_registered_accounts(  );
 
94
void notify_no_registered_accounts();
88
95
 
89
96
/**
90
97
 * Stop and close the current notification if an action occured before the timeout
91
98
 */
92
 
void stop_notification( void );
 
99
void stop_notification (void);
93
100
 
94
101
/**
95
102
 * Notify that the RTP session is secured
104
111
/**
105
112
 * Notify that the ZRTP negotiation failed
106
113
 */
107
 
 
 
114
 
108
115
void notify_zrtp_negotiation_failed (callable_obj_t* c);
109
116
 
110
117
/**