mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
135 lines
5.8 KiB
C
135 lines
5.8 KiB
C
/*
|
|
* Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* This file is part of WeeChat, the extensible chat client.
|
|
*
|
|
* WeeChat 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.
|
|
*
|
|
* WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef WEECHAT_FSET_OPTION_H
|
|
#define WEECHAT_FSET_OPTION_H 1
|
|
|
|
#define FSET_OPTION_VALUE_NULL "null"
|
|
|
|
enum t_fset_option_type
|
|
{
|
|
FSET_OPTION_TYPE_BOOLEAN = 0,
|
|
FSET_OPTION_TYPE_INTEGER,
|
|
FSET_OPTION_TYPE_STRING,
|
|
FSET_OPTION_TYPE_COLOR,
|
|
/* number of option types */
|
|
FSET_OPTION_NUM_TYPES,
|
|
};
|
|
|
|
struct t_fset_option
|
|
{
|
|
int index; /* index of option in list */
|
|
char *file; /* config file name (eg: "weechat")*/
|
|
char *section; /* section name (eg: "look") */
|
|
char *option; /* option name */
|
|
char *name; /* option full name: file.sect.opt */
|
|
char *parent_name; /* parent option name */
|
|
enum t_fset_option_type type; /* option type */
|
|
char *default_value; /* option default value */
|
|
char *value; /* option value */
|
|
char *parent_value; /* parent option value */
|
|
char *min; /* min value */
|
|
char *max; /* max value */
|
|
char *description; /* option description */
|
|
char *string_values; /* string values for option */
|
|
int marked; /* option marked for group oper. */
|
|
struct t_fset_option *prev_option; /* link to previous option */
|
|
struct t_fset_option *next_option; /* link to next option */
|
|
};
|
|
|
|
struct t_fset_option_max_length
|
|
{
|
|
int file;
|
|
int section;
|
|
int option;
|
|
int name;
|
|
int parent_name;
|
|
int type;
|
|
int type_en;
|
|
int type_short;
|
|
int type_tiny;
|
|
int default_value;
|
|
int value;
|
|
int parent_value;
|
|
int value2;
|
|
int min;
|
|
int max;
|
|
int description;
|
|
int description2;
|
|
int description_en;
|
|
int description_en2;
|
|
int string_values;
|
|
int marked;
|
|
};
|
|
|
|
extern struct t_arraylist *fset_options;
|
|
extern int fset_option_count_marked;
|
|
extern struct t_fset_option_max_length *fset_option_max_length;
|
|
extern char *fset_option_filter;
|
|
extern char *fset_option_type_string[];
|
|
extern char *fset_option_type_string_short[];
|
|
extern char *fset_option_type_string_tiny[];
|
|
|
|
extern int fset_option_valid (struct t_fset_option *option);
|
|
extern struct t_fset_option *fset_option_search_by_name (const char *name,
|
|
int *line);
|
|
extern int fset_option_value_is_changed (struct t_fset_option *option);
|
|
extern void fset_option_set_max_length_fields_all ();
|
|
extern void fset_option_free (struct t_fset_option *fset_option);
|
|
extern struct t_arraylist *fset_option_get_arraylist_options ();
|
|
extern struct t_fset_option_max_length *fset_option_get_max_length ();
|
|
extern void fset_option_get_options ();
|
|
extern void fset_option_set_filter (const char *filter);
|
|
extern void fset_option_filter_options (const char *filter);
|
|
extern void fset_option_toggle_value (struct t_fset_option *fset_option,
|
|
struct t_config_option *option);
|
|
extern void fset_option_add_value (struct t_fset_option *fset_option,
|
|
struct t_config_option *option,
|
|
int value);
|
|
extern void fset_option_reset_value (struct t_fset_option *fset_option,
|
|
struct t_config_option *option);
|
|
extern void fset_option_unset_value (struct t_fset_option *fset_option,
|
|
struct t_config_option *option);
|
|
extern void fset_option_set (struct t_fset_option *fset_option,
|
|
struct t_config_option *option,
|
|
struct t_gui_buffer *buffer,
|
|
int set_mode);
|
|
extern void fset_option_toggle_mark (struct t_fset_option *fset_option,
|
|
struct t_config_option *option);
|
|
extern void fset_option_mark_options_matching_filter (const char *filter,
|
|
int mark);
|
|
extern void fset_option_unmark_all ();
|
|
extern int fset_option_export (const char *filename, int with_help);
|
|
extern int fset_option_config_cb (const void *pointer,
|
|
void *data,
|
|
const char *option,
|
|
const char *value);
|
|
extern void fset_option_enable_timer_config_changed ();
|
|
extern void fset_option_disable_timer_config_changed ();
|
|
extern struct t_hdata *fset_option_hdata_option_cb (const void *pointer,
|
|
void *data,
|
|
const char *hdata_name);
|
|
extern int fset_option_add_to_infolist (struct t_infolist *infolist,
|
|
struct t_fset_option *option);
|
|
extern void fset_option_print_log ();
|
|
extern int fset_option_init ();
|
|
extern void fset_option_end ();
|
|
|
|
#endif /* WEECHAT_FSET_OPTION_H */
|