comparison doc/account-signals.dox @ 16183:8cf53d7a0887

Update the Doxygen signals documentation to match the new struct names.
author Richard Laager <rlaager@wiktel.com>
date Mon, 16 Apr 2007 00:50:57 +0000
parents e629076386f1
children 8e3ef71c4362 e0613cf8c493
comparison
equal deleted inserted replaced
16182:36d9409dab58 16183:8cf53d7a0887
13 13
14 <hr> 14 <hr>
15 15
16 @signaldef account-added 16 @signaldef account-added
17 @signalproto 17 @signalproto
18 void (*account_added)(GaimAccount *account); 18 void (*account_added)(PurpleAccount *account);
19 @endsignalproto 19 @endsignalproto
20 @signaldesc 20 @signaldesc
21 Emitted when an account is added. 21 Emitted when an account is added.
22 @param account The account that was added. 22 @param account The account that was added.
23 @endsignaldef 23 @endsignaldef
24 24
25 @signaldef account-connecting 25 @signaldef account-connecting
26 @signalproto 26 @signalproto
27 void (*account_connecting)(GaimAccount *account); 27 void (*account_connecting)(PurpleAccount *account);
28 @endsignalproto 28 @endsignalproto
29 @signaldesc 29 @signaldesc
30 This is called when an account is in the process of connecting. 30 This is called when an account is in the process of connecting.
31 @param account The account in the process of connecting. 31 @param account The account in the process of connecting.
32 @endsignaldef 32 @endsignaldef
33 33
34 @signaldef account-removed 34 @signaldef account-removed
35 @signalproto 35 @signalproto
36 void (*account_removed)(GaimAccount *account); 36 void (*account_removed)(PurpleAccount *account);
37 @endsignalproto 37 @endsignalproto
38 @signaldesc 38 @signaldesc
39 Emitted when an account is removed. 39 Emitted when an account is removed.
40 @param account The account that was removed. 40 @param account The account that was removed.
41 @endsignaldef 41 @endsignaldef
42 42
43 @signaldef account-disabled 43 @signaldef account-disabled
44 @signalproto 44 @signalproto
45 void (*account_disabled)(GaimAccount *account); 45 void (*account_disabled)(PurpleAccount *account);
46 @endsignalproto 46 @endsignalproto
47 @signaldesc 47 @signaldesc
48 Emitted when an account is disabled. 48 Emitted when an account is disabled.
49 @param account The account that was disabled. 49 @param account The account that was disabled.
50 @endsignaldef 50 @endsignaldef
51 51
52 @signaldef account-enabled 52 @signaldef account-enabled
53 @signalproto 53 @signalproto
54 void (*account_enabled)(GaimAccount *account); 54 void (*account_enabled)(PurpleAccount *account);
55 @endsignalproto 55 @endsignalproto
56 @signaldesc 56 @signaldesc
57 Emitted when an account is enabled. 57 Emitted when an account is enabled.
58 @param account The account that was enabled. 58 @param account The account that was enabled.
59 @endsignaldef 59 @endsignaldef
60 60
61 @signaldef account-setting-info 61 @signaldef account-setting-info
62 @signalproto 62 @signalproto
63 void (*account_setting_info)(GaimAccount *account, const char *new_info); 63 void (*account_setting_info)(PurpleAccount *account, const char *new_info);
64 @endsignalproto 64 @endsignalproto
65 @signaldesc 65 @signaldesc
66 Emitted when a user is about to send his new user info, or 66 Emitted when a user is about to send his new user info, or
67 profile, to the server. 67 profile, to the server.
68 @param account The account that the info will be set on. 68 @param account The account that the info will be set on.
69 @param new_info The new information to set. 69 @param new_info The new information to set.
70 @endsignaldef 70 @endsignaldef
71 71
72 @signaldef account-set-info 72 @signaldef account-set-info
73 @signalproto 73 @signalproto
74 void (*account_set_info)(GaimAccount *account, const char *new_info); 74 void (*account_set_info)(PurpleAccount *account, const char *new_info);
75 @endsignalproto 75 @endsignalproto
76 @signaldesc 76 @signaldesc
77 Emitted when a user sent his new user info, or profile, to the server. 77 Emitted when a user sent his new user info, or profile, to the server.
78 @param account The account that the info was set on. 78 @param account The account that the info was set on.
79 @param new_info The new information set. 79 @param new_info The new information set.
80 @endsignaldef 80 @endsignaldef
81 81
82 @signaldef account-status-changed 82 @signaldef account-status-changed
83 @signalproto 83 @signalproto
84 void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new); 84 void (*account_status_changed)(PurpleAccount *account, PurpleStatus *old, PurpleStatus *new);
85 @endsignalproto 85 @endsignalproto
86 @signaldesc 86 @signaldesc
87 Emitted when the status of an account changes (after the change). 87 Emitted when the status of an account changes (after the change).
88 @param account The account that changed status. 88 @param account The account that changed status.
89 @param old The status before change. 89 @param old The status before change.
90 @param new The status after change. 90 @param new The status after change.
91 @endsignaldef 91 @endsignaldef
92 92
93 @signaldef account-alias-changed 93 @signaldef account-alias-changed
94 @signalproto 94 @signalproto
95 void (*account_alias_changed)(GaimAccount *account, const char *old); 95 void (*account_alias_changed)(PurpleAccount *account, const char *old);
96 @endsignalproto 96 @endsignalproto
97 @signaldesc 97 @signaldesc
98 Emitted when the alias of an account changes (after the change). 98 Emitted when the alias of an account changes (after the change).
99 @param account The account for which the alias was changed. 99 @param account The account for which the alias was changed.
100 @param old The alias before change. 100 @param old The alias before change.