summaryrefslogtreecommitdiff
path: root/telepathy-glib/account-manager.h
Commit message (Collapse)AuthorAgeFilesLines
* deprecate tp_account(_manager)_is_prepared for 0.24Guillaume Desmottes2013-09-271-1/+1
|
* deprecate tp_account_manager_is_prepared()Guillaume Desmottes2013-09-271-1/+2
| | | | We removed it in 1.0
* TpAccountManager: Deprecate _get_ functions returning a GList and replace ↵Xavier Claessens2012-09-051-0/+7
| | | | | | | | them by _dup_ New transfer and naming policy has been discussed in https://bugs.freedesktop.org/show_bug.cgi?id=39189 and is documented there: http://telepathy.freedesktop.org/wiki/Style/TelepathyGLib
* prepare 0.19.6telepathy-glib-0.19.6Guillaume Desmottes2012-08-061-1/+1
|
* add tp_account_manager_can_set_default()Guillaume Desmottes2012-08-021-0/+4
| | | | | | | | | When creating/editing an account, the Ubuntu Online Accounts panel loads the relevant plugin dynamically. In order to work properly, this plugin has to define the default AM with some features. But tp_account_manager_set_default() can only be called once, later calls resulting in critical warnings. By using tp_account_manager_can_set_default() the plugin can check if the default AM has already be defined or not.
* Add single-include #error in all headers included from telepathy-glib(-dbus).hXavier Claessens2012-06-051-0/+4
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=49384
* Version-annotate recent APISimon McVittie2012-05-031-0/+1
|
* Use _TP_DEPRECATED_IN_* for most deprecated functionsSimon McVittie2012-05-021-4/+10
| | | | | | Also make use of TP_DISABLE_DEPRECATED consistent: always wrap deprecated functions, and add deprecation decorators to any wrapped function.
* deprecate tp_account_manager_prepare_{async,finish}Guillaume Desmottes2011-09-191-2/+5
|
* Define _TP_GNUC_DEPRECATED_FOR() and use it where appropriateXavier Claessens2011-08-171-1/+2
|
* TpAccountManager is the "toplevel" object, do not create it through a factoryXavier Claessens2011-08-171-0/+3
| | | | | | | | | | Instead of creating a TpAccountManager through a factory, it is more natural to create it directly. If no custom factory is provided at constructor, a default one is created internally anyway. This is also what tp-qt4 does. Note this is break of unreleased API/ABI.
* Add tp_account_manager_set_default()Xavier Claessens2011-08-171-0/+1
| | | | This defines the TpAccountManager returned by tp_account_manager_dup()
* Deprecate tp_account_manager_ensure_account()Xavier Claessens2011-08-171-1/+1
| | | | Use instead tp_simple_client_factory_ensure_account()
* fd.o #22206: deprecate all tp_cli_something_run_something functionsSimon McVittie2010-03-301-1/+2
|
* various: warn about unused results that would indicate an obvious leakSimon McVittie2009-12-181-4/+7
|
* account-manager: add _enable_restartJonny Lamb2009-09-281-0/+2
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: rename _get_accounts to _get_valid_accountsJonny Lamb2009-09-281-1/+1
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account{,-manager}: remove _get_*_features to internal headersJonny Lamb2009-09-261-9/+0
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account{,-manager}: renamed _is_ready to _is_preparedJonny Lamb2009-09-261-1/+1
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account{,-manager}: make prepare's feature list be constJonny Lamb2009-09-251-1/+1
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: add accessors for requested, actual and missing featuresJonny Lamb2009-09-241-1/+8
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: change behaviour of featuresJonny Lamb2009-09-241-1/+1
| | | | | | | | | | Ignore unknown features (pretend they're ready on a become_ready call, but not on _is_ready). Also remove subtle "add features as _get_feature is called" behaviour and have them all added in constructed. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account*: remove _set_featuresJonny Lamb2009-09-241-3/+0
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account*: misc fixes to gtk-doc commentsJonny Lamb2009-09-241-5/+5
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: renamed _get_global_presence to _get_most_available_presenceJonny Lamb2009-09-221-1/+1
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: remove _get_requested_global_presenceJonny Lamb2009-09-221-3/+0
| | | | | | | ...and added #TpAccount:default-presence so that's what accounts use when they are set to Enabled. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: renamed _request_global_presence to ↵Jonny Lamb2009-09-211-1/+1
| | | | | | _set_all_requested_presences Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: remove _get_accountJonny Lamb2009-09-211-3/+0
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: remove _get_account_for_connectionJonny Lamb2009-09-211-3/+0
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account{,-manager}: make _FEATURE_CORE expand to a function callJonny Lamb2009-09-211-1/+3
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: add feature and feature functionsJonny Lamb2009-09-211-2/+17
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: add tp_account_manager_dup and remove the GObject singleton ↵Jonny Lamb2009-09-091-0/+2
| | | | | | | | | | code This is to copy the behaviour of #TpDBusDaemon, where in reality you only ever want one TpAccountManager proxy -- on the starter/session bus. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: add missing gtk-doc commentsJonny Lamb2009-09-091-3/+3
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: remove useless prototypeJonny Lamb2009-09-071-2/+0
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* account-manager: add functions taken from Empathy and renamedJonny Lamb2009-09-071-0/+33
| | | | Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
* spec 0.17.26 classes: make safe to extendSimon McVittie2009-06-101-0/+2
|
* Add generated code and skeletal proxies for Account, AccountManagerSimon McVittie2009-06-101-0/+72