1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/config/preferences.h

238 lines
7.3 KiB
C
Raw Normal View History

/*
2012-05-10 02:29:48 +00:00
* preferences.h
*
2015-02-10 23:16:09 +00:00
* Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
*
2012-05-10 02:29:48 +00:00
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
* In addition, as a special exception, the copyright holders give permission to
* link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two.
*
* You must obey the GNU General Public License in all respects for all of the
* code used other than OpenSSL. If you modify file(s) with this exception, you
* may extend this exception to your version of the file(s), but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version. If you delete this exception statement from all
* source files in the program, then also delete it here.
*
2012-05-10 02:29:48 +00:00
*/
#ifndef PREFERENCES_H
#define PREFERENCES_H
2012-09-08 15:51:09 +00:00
#include "config.h"
#include <glib.h>
#define PREFS_MIN_LOG_SIZE 64
2012-11-11 21:44:55 +00:00
#define PREFS_MAX_LOG_SIZE 1048580
2015-01-10 19:22:38 +00:00
// represents all settings in .profrc
// each enum value is mapped to a group and key in .profrc (see preferences.c)
2013-02-03 02:35:04 +00:00
typedef enum {
PREF_SPLASH,
PREF_BEEP,
PREF_VERCHECK,
PREF_THEME,
2015-01-12 00:43:42 +00:00
PREF_TITLEBAR_SHOW,
PREF_TITLEBAR_GOODBYE,
2013-02-03 02:35:04 +00:00
PREF_FLASH,
PREF_INTYPE,
PREF_HISTORY,
2015-02-02 10:10:05 +00:00
PREF_CARBONS,
PREF_RECEIPTS_SEND,
PREF_RECEIPTS_REQUEST,
2014-10-09 21:02:39 +00:00
PREF_OCCUPANTS,
PREF_OCCUPANTS_SIZE,
PREF_OCCUPANTS_JID,
PREF_ROSTER,
PREF_ROSTER_SIZE,
PREF_ROSTER_OFFLINE,
PREF_ROSTER_RESOURCE,
2015-11-15 21:33:48 +00:00
PREF_ROSTER_PRESENCE,
PREF_ROSTER_STATUS,
PREF_ROSTER_EMPTY,
PREF_ROSTER_BY,
2015-11-17 23:37:33 +00:00
PREF_ROSTER_ORDER,
PREF_ROSTER_UNREAD,
2015-11-18 02:02:49 +00:00
PREF_ROSTER_COUNT,
PREF_ROSTER_PRIORITY,
2015-11-22 01:39:20 +00:00
PREF_ROSTER_WRAP,
2015-11-22 16:37:05 +00:00
PREF_ROSTER_RESOURCE_JOIN,
2016-01-20 01:48:41 +00:00
PREF_ROSTER_CONTACTS,
2016-01-02 01:29:12 +00:00
PREF_ROSTER_ROOMS,
PREF_ROSTER_ROOMS_POS,
2016-01-09 22:21:09 +00:00
PREF_ROSTER_ROOMS_ORDER,
PREF_ROSTER_ROOMS_UNREAD,
2016-01-24 01:04:21 +00:00
PREF_ROSTER_PRIVATE,
PREF_MUC_PRIVILEGES,
PREF_PRESENCE,
PREF_WRAP,
2015-05-29 13:25:14 +00:00
PREF_WINS_AUTO_TIDY,
PREF_TIME_CONSOLE,
PREF_TIME_CHAT,
PREF_TIME_MUC,
PREF_TIME_MUCCONFIG,
PREF_TIME_PRIVATE,
PREF_TIME_XMLCONSOLE,
2015-03-10 23:35:08 +00:00
PREF_TIME_STATUSBAR,
2015-09-29 22:30:23 +00:00
PREF_TIME_LASTACTIVITY,
2013-02-03 02:35:04 +00:00
PREF_STATUSES,
2014-01-19 16:17:34 +00:00
PREF_STATUSES_CONSOLE,
PREF_STATUSES_CHAT,
PREF_STATUSES_MUC,
2013-02-03 02:35:04 +00:00
PREF_STATES,
PREF_OUTTYPE,
PREF_NOTIFY_TYPING,
PREF_NOTIFY_TYPING_CURRENT,
PREF_NOTIFY_CHAT,
PREF_NOTIFY_CHAT_CURRENT,
PREF_NOTIFY_CHAT_TEXT,
PREF_NOTIFY_ROOM,
2015-11-25 21:24:21 +00:00
PREF_NOTIFY_ROOM_MENTION,
PREF_NOTIFY_ROOM_TRIGGER,
PREF_NOTIFY_ROOM_CURRENT,
PREF_NOTIFY_ROOM_TEXT,
PREF_NOTIFY_INVITE,
PREF_NOTIFY_SUB,
2013-02-03 02:35:04 +00:00
PREF_CHLOG,
2013-05-04 23:16:10 +00:00
PREF_GRLOG,
2013-02-03 03:24:13 +00:00
PREF_AUTOAWAY_CHECK,
PREF_AUTOAWAY_MODE,
PREF_AUTOAWAY_MESSAGE,
PREF_AUTOXA_MESSAGE,
2014-01-13 20:17:45 +00:00
PREF_CONNECT_ACCOUNT,
PREF_DEFAULT_ACCOUNT,
2014-04-13 20:56:35 +00:00
PREF_LOG_ROTATE,
PREF_LOG_SHARED,
PREF_OTR_LOG,
PREF_OTR_POLICY,
PREF_RESOURCE_TITLE,
PREF_RESOURCE_MESSAGE,
2015-06-21 20:07:57 +00:00
PREF_INPBLOCK_DYNAMIC,
PREF_ENC_WARN,
PREF_PGP_LOG,
PREF_TLS_CERTPATH,
PREF_TLS_SHOW,
2015-10-14 20:17:46 +00:00
PREF_LASTACTIVITY,
2015-12-29 23:00:49 +00:00
PREF_CONSOLE_MUC,
2013-02-03 02:35:04 +00:00
} preference_t;
typedef struct prof_alias_t {
gchar *name;
gchar *value;
} ProfAlias;
2012-05-10 02:29:48 +00:00
void prefs_load(void);
void prefs_close(void);
2012-05-10 02:29:48 +00:00
2015-10-25 22:23:38 +00:00
char* prefs_find_login(char *prefix);
2012-10-21 22:46:30 +00:00
void prefs_reset_login_search(void);
2015-10-25 22:23:38 +00:00
char* prefs_autocomplete_boolean_choice(const char *const prefix);
void prefs_reset_boolean_choice(void);
2012-05-10 22:51:06 +00:00
char* prefs_autocomplete_room_trigger(const char *const prefix);
void prefs_reset_room_trigger_ac(void);
gint prefs_get_gone(void);
void prefs_set_gone(gint value);
void prefs_set_notify_remind(gint period);
gint prefs_get_notify_remind(void);
2014-05-24 15:46:05 +00:00
void prefs_set_max_log_size(gint value);
2012-11-11 21:44:55 +00:00
gint prefs_get_max_log_size(void);
gint prefs_get_priority(void);
void prefs_set_reconnect(gint value);
gint prefs_get_reconnect(void);
void prefs_set_autoping(gint value);
gint prefs_get_autoping(void);
2016-01-01 19:50:13 +00:00
void prefs_set_autoping_timeout(gint value);
gint prefs_get_autoping_timeout(void);
2014-12-21 18:15:29 +00:00
gint prefs_get_inpblock(void);
void prefs_set_inpblock(gint value);
void prefs_set_occupants_size(gint value);
gint prefs_get_occupants_size(void);
void prefs_set_roster_size(gint value);
gint prefs_get_roster_size(void);
2012-11-30 23:34:14 +00:00
gint prefs_get_autoaway_time(void);
void prefs_set_autoaway_time(gint value);
gint prefs_get_autoxa_time(void);
void prefs_set_autoxa_time(gint value);
2012-11-30 23:34:14 +00:00
2015-08-26 00:06:10 +00:00
char prefs_get_otr_char(void);
void prefs_set_otr_char(char ch);
char prefs_get_pgp_char(void);
void prefs_set_pgp_char(char ch);
2015-11-19 23:21:51 +00:00
char prefs_get_roster_header_char(void);
void prefs_set_roster_header_char(char ch);
void prefs_clear_roster_header_char(void);
2015-11-20 00:06:46 +00:00
char prefs_get_roster_contact_char(void);
void prefs_set_roster_contact_char(char ch);
void prefs_clear_roster_contact_char(void);
2015-11-22 02:04:59 +00:00
char prefs_get_roster_resource_char(void);
void prefs_set_roster_resource_char(char ch);
void prefs_clear_roster_resource_char(void);
2015-11-19 23:21:51 +00:00
2015-11-21 21:03:53 +00:00
gint prefs_get_roster_contact_indent(void);
void prefs_set_roster_contact_indent(gint value);
2015-11-21 21:49:12 +00:00
gint prefs_get_roster_resource_indent(void);
void prefs_set_roster_resource_indent(gint value);
2015-11-21 22:03:43 +00:00
gint prefs_get_roster_presence_indent(void);
void prefs_set_roster_presence_indent(gint value);
2015-11-21 21:03:53 +00:00
void prefs_add_login(const char *jid);
2015-10-25 22:23:38 +00:00
gboolean prefs_add_alias(const char *const name, const char *const value);
gboolean prefs_remove_alias(const char *const name);
char* prefs_get_alias(const char *const name);
GList* prefs_get_aliases(void);
void prefs_free_aliases(GList *aliases);
gboolean prefs_add_room_notify_trigger(const char * const text);
gboolean prefs_remove_room_notify_trigger(const char * const text);
GList* prefs_get_room_notify_triggers(void);
2013-02-03 02:35:04 +00:00
gboolean prefs_get_boolean(preference_t pref);
2013-02-03 02:51:15 +00:00
void prefs_set_boolean(preference_t pref, gboolean value);
2015-10-25 22:23:38 +00:00
char* prefs_get_string(preference_t pref);
void prefs_free_string(char *pref);
2013-02-03 03:24:13 +00:00
void prefs_set_string(preference_t pref, char *value);
2013-02-03 02:35:04 +00:00
2015-11-28 00:15:53 +00:00
gboolean prefs_do_chat_notify(gboolean current_win, const char *const message);
gboolean prefs_do_room_notify(gboolean current_win, const char *const roomjid, const char *const nick, const char *const message);
void prefs_set_room_notify(const char *const roomjid, gboolean value);
void prefs_set_room_notify_mention(const char *const roomjid, gboolean value);
void prefs_set_room_notify_trigger(const char *const roomjid, gboolean value);
gboolean prefs_reset_room_notify(const char *const roomjid);
gboolean prefs_has_room_notify(const char *const roomjid);
gboolean prefs_has_room_notify_mention(const char *const roomjid);
gboolean prefs_has_room_notify_trigger(const char *const roomjid);
gboolean prefs_get_room_notify(const char *const roomjid);
gboolean prefs_get_room_notify_mention(const char *const roomjid);
gboolean prefs_get_room_notify_trigger(const char *const roomjid);
2015-12-06 02:12:20 +00:00
gchar* prefs_get_inputrc(void);
2012-05-10 02:29:48 +00:00
#endif