Release 1.25.0 -- Buddy Idle Time, RTF
[siplcs.git] / src / purple / purple-setting.c
blob11fe07cebbfa5efc48bf64a68d7034d25c23c297
1 /**
2 * @file purple-setting.c
4 * pidgin-sipe
6 * Copyright (C) 2010-2019 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #include <glib.h>
29 #include "account.h"
30 #include "connection.h"
32 #include "sipe-backend.h"
33 #include "sipe-core.h"
35 #include "purple-private.h"
37 /**
38 * Map sipe_setting values to purple account setting keys
40 * This needs to be kept in sync with
42 * api/sipe-backend.h
43 * purple-plugin-common.c:sipe_purple_account_options()
45 static const gchar * const setting_name[SIPE_SETTING_LAST] = {
46 "email_url", /* SIPE_SETTING_EMAIL_URL */
47 "email_login", /* SIPE_SETTING_EMAIL_LOGIN */
48 "email_password", /* SIPE_SETTING_EMAIL_PASSWORD */
49 "groupchat_user", /* SIPE_SETTING_GROUPCHAT_USER */
50 "rdp_client", /* SIPE_SETTING_RDP_CLIENT */
51 "useragent" /* SIPE_SETTING_USER_AGENT */
54 const gchar *sipe_backend_setting(struct sipe_core_public *sipe_public,
55 sipe_setting type)
57 return(purple_account_get_string(purple_connection_get_account(sipe_public->backend_private->gc),
58 setting_name[type], NULL));
62 Local Variables:
63 mode: c
64 c-file-style: "bsd"
65 indent-tabs-mode: t
66 tab-width: 8
67 End: