summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-09 02:20:18 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-09 02:20:18 -0500
commit8dbbe4614e8292c97413cf96fdb9a427dc9e1db3 (patch)
tree1a55a869590f710320c5b429e7e477e01672d9de /doc
parent981d5a8578f5083d347ce2b78d1fd296e7a1d7e3 (diff)
downloadpidgin-8dbbe4614e8292c97413cf96fdb9a427dc9e1db3.tar.gz
Remove unused account signals
Testing Done: Compiled Reviewed at https://reviews.imfreedom.org/r/1914/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/libpurple/signals_account.md254
1 files changed, 0 insertions, 254 deletions
diff --git a/doc/reference/libpurple/signals_account.md b/doc/reference/libpurple/signals_account.md
index 4399a88fdc..1c94af687d 100644
--- a/doc/reference/libpurple/signals_account.md
+++ b/doc/reference/libpurple/signals_account.md
@@ -7,23 +7,13 @@ Slug: account-signals
* [account-created](#account-created)
* [account-destroying](#account-destroying)
-* [account-added](#account-added)
-* [account-connecting](#account-connecting)
-* [account-removed](#account-removed)
* [account-disabled](#account-disabled)
* [account-enabled](#account-enabled)
-* [account-setting-info](#account-setting-info)
-* [account-set-info](#account-set-info)
* [account-status-changed](#account-status-changed)
* [account-actions-changed](#account-actions-changed)
-* [account-alias-changed](#account-alias-changed)
-* [account-authorization-requested](#account-authorization-requested)
-* [account-authorization-denied](#account-authorization-denied)
-* [account-authorization-granted](#account-authorization-granted)
* [account-error-changed](#account-error-changed)
* [account-signed-on](#account-signed-on)
* [account-signed-off](#account-signed-off)
-* [account-connection-error](#account-connection-error)
### Signal Details
@@ -63,61 +53,6 @@ Emitted when an account is about to be destroyed.
----
-#### account-added
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when an account is added.
-
-**Parameters:**
-
-
-**account**
-: The account that was added. See `purple_accounts_add()`.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-connecting
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-This is emitted when an account is in the process of connecting.
-
-**Parameters:**
-
-**account**
-: The account in the process of connecting.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-removed
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when an account is removed.
-
-**Parameters:**
-
-**account**
-: The account that was removed. See `purple_accounts_remove()`.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
#### account-disabled
```c
@@ -154,48 +89,6 @@ Emitted when an account is enabled.
----
-#### account-setting-info
-
-```c
-void user_function(PurpleAccount *account, const gchar *new_info, gpointer user_data);
-```
-
-Emitted when a user is about to send his new user info, or profile, to the server.
-
-**Parameters:**
-
-**account**
-: The account that the info will be set on.
-
-**new_info**
-: The new information to set.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-set-info
-
-```c
-void user_function(PurpleAccount *account, const gchar *new_info, gpointer user_data);
-```
-
-Emitted when a user sent his new user info, or profile, to the server.
-
-**Parameters:**
-
-**account**
-: The account that the info was set on.
-
-**new_info**
-: The new information set.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
#### account-status-changed
```c
@@ -241,126 +134,6 @@ Emitted when the account actions are changed after initial connection.
----
-#### account-alias-changed
-
-```c
-void user_function(PurpleAccount *account, const gchar *old, gpointer user_data);
-```
-
-Emitted when the alias of an account changes (after the change).
-
-**Parameters:**
-
-**account**
-: The account for which the alias was changed.
-
-**old**
-: The alias before change.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-authorization-requested
-
-```c
-int user_function(PurpleAccount *account,
- const gchar *user,
- const gchar *message,
- gchar **response,
- gpointer user_data);
-```
-
-Emitted when a user requests authorization.
-
-**Parameters:**
-
-**account**
-: The account.
-
-**user**
-: The name of the user requesting authorization.
-
-**message**
-: The authorization request message.
-
-**response**
-: The message to send in the response.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-**Returns:**
-
-`PURPLE_ACCOUNT_RESPONSE_IGNORE`
-: To silently ignore the request
-
-`PURPLE_ACCOUNT_RESPONSE_DENY`
-: To block the request (the sender might get informed)
-
-`PURPLE_ACCOUNT_RESPONSE_ACCEPT`
-: If the request should be granted.
-
-`PURPLE_ACCOUNT_RESPONSE_PASS`
-: The user will be prompted with the request.
-
-----
-
-#### account-authorization-denied
-
-```c
-void user_function(PurpleAccount *account,
- const gchar *user,
- const gchar *message,
- gpointer user_data);
-```
-
-Emitted when the authorization request for a buddy is denied.
-
-**Parameters:**
-
-**account**
-: The account.
-
-**user**
-: The name of the user requesting authorization.
-
-**message**
-: The message to tell the buddy who was denied.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-authorization-granted
-
-```c
-void user_function(PurpleAccount *account,
- const gchar *user,
- const gchar *message,
- gpointer user_data);
-```
-
-Emitted when the authorization request for a buddy is granted.
-
-**Parameters:**
-
-**account**
-: The account.
-
-**user**
-: The name of the user requesting authorization.
-
-**message**
-: The message to tell the buddy who was granted authorization.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
#### account-error-changed
```c
@@ -421,30 +194,3 @@ Emitted when an account has signed off.
**user_data**
: User data set when the signal handler was connected.
-
-----
-
-#### account-connection-error
-
-```c
-void user_function(PurpleAccount *account,
- PurpleConnectionError err,
- const gchar *desc,
- gpointer user_data)
-```
-
-Emitted when a connection error occurs, before `"signed"`-off.
-
-**Parameters:**
-
-**account**
-: The account on which the error has occurred.
-
-**err**
-: The error that occurred.
-
-**desc**
-: A description of the error, giving more information.
-
-**user_data**
-: User data set when the signal handler was connected.