mirror of
https://github.com/weechat/weechat.git
synced 2026-07-05 17:23:15 +02:00
887362dfd9
New options: - buflist.format.hotlist - buflist.format.hotlist_separator
297 lines
8.9 KiB
C
297 lines
8.9 KiB
C
/*
|
|
* buflist-config.c - buflist configuration options (file buflist.conf)
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "../weechat-plugin.h"
|
|
#include "buflist.h"
|
|
#include "buflist-config.h"
|
|
#include "buflist-bar-item.h"
|
|
|
|
|
|
struct t_config_file *buflist_config_file = NULL;
|
|
|
|
/* buflist config, look section */
|
|
|
|
struct t_config_option *buflist_config_look_sort;
|
|
|
|
/* buflist config, format section */
|
|
|
|
struct t_config_option *buflist_config_format_buffer;
|
|
struct t_config_option *buflist_config_format_buffer_current;
|
|
struct t_config_option *buflist_config_format_hotlist;
|
|
struct t_config_option *buflist_config_format_hotlist_level[4];
|
|
struct t_config_option *buflist_config_format_hotlist_level_none;
|
|
struct t_config_option *buflist_config_format_hotlist_separator;
|
|
struct t_config_option *buflist_config_format_lag;
|
|
|
|
char **buflist_config_sort_fields = NULL;
|
|
int buflist_config_sort_fields_count = 0;
|
|
|
|
|
|
/*
|
|
* Callback for changes on option "buflist.look.sort".
|
|
*/
|
|
|
|
void
|
|
buflist_config_change_sort (const void *pointer, void *data,
|
|
struct t_config_option *option)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) pointer;
|
|
(void) data;
|
|
(void) option;
|
|
|
|
if (buflist_config_sort_fields)
|
|
weechat_string_free_split (buflist_config_sort_fields);
|
|
|
|
buflist_config_sort_fields = weechat_string_split (
|
|
weechat_config_string (buflist_config_look_sort),
|
|
",", 0, 0, &buflist_config_sort_fields_count);
|
|
|
|
weechat_bar_item_update (BUFLIST_BAR_ITEM_NAME);
|
|
}
|
|
|
|
/*
|
|
* Callback for changes on format options.
|
|
*/
|
|
|
|
void
|
|
buflist_config_change_buflist (const void *pointer, void *data,
|
|
struct t_config_option *option)
|
|
{
|
|
/* make C compiler happy */
|
|
(void) pointer;
|
|
(void) data;
|
|
(void) option;
|
|
|
|
weechat_bar_item_update (BUFLIST_BAR_ITEM_NAME);
|
|
}
|
|
|
|
/*
|
|
* Initializes buflist configuration file.
|
|
*
|
|
* Returns:
|
|
* 1: OK
|
|
* 0: error
|
|
*/
|
|
|
|
int
|
|
buflist_config_init ()
|
|
{
|
|
struct t_config_section *ptr_section;
|
|
|
|
buflist_config_file = weechat_config_new (BUFLIST_CONFIG_NAME,
|
|
NULL, NULL, NULL);
|
|
if (!buflist_config_file)
|
|
return 0;
|
|
|
|
/* look */
|
|
ptr_section = weechat_config_new_section (buflist_config_file, "look",
|
|
0, 0,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
if (!ptr_section)
|
|
{
|
|
weechat_config_free (buflist_config_file);
|
|
return 0;
|
|
}
|
|
|
|
buflist_config_look_sort = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"sort", "string",
|
|
N_("comma-separated list of fields to sort buffers; each field is "
|
|
"a hdata variable of buffer; char \"-\" can be used before field "
|
|
"to reverse order"),
|
|
NULL, 0, 0,
|
|
"number,-active",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_sort, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
|
|
/* format */
|
|
ptr_section = weechat_config_new_section (buflist_config_file, "format",
|
|
0, 0,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
if (!ptr_section)
|
|
{
|
|
weechat_config_free (buflist_config_file);
|
|
return 0;
|
|
}
|
|
|
|
buflist_config_format_buffer = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"buffer", "string",
|
|
N_("format of each line with a buffer"),
|
|
NULL, 0, 0,
|
|
"${color:green}${number}.${indent}${color_hotlist}${name}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_buffer_current = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"buffer_current", "string",
|
|
N_("format for the line with current buffer"),
|
|
NULL, 0, 0,
|
|
"${color:lightgreen,blue}${number}.${indent}${color_hotlist}${name}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist", "string",
|
|
N_("format for hotlist"),
|
|
NULL, 0, 0,
|
|
" ${color:green}(${hotlist}${color:green})",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist_level[0] = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist_low", "string",
|
|
N_("format for a buffer with hotlist level \"low\""),
|
|
NULL, 0, 0,
|
|
"${color:white}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist_level[1] = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist_message", "string",
|
|
N_("format for a buffer with hotlist level \"message\""),
|
|
NULL, 0, 0,
|
|
"${color:brown}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist_level[2] = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist_private", "string",
|
|
N_("format for a buffer with hotlist level \"private\""),
|
|
NULL, 0, 0,
|
|
"${color:green}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist_level[3] = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist_highlight", "string",
|
|
N_("format for a buffer with hotlist level \"highlight\""),
|
|
NULL, 0, 0,
|
|
"${color:magenta}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist_level_none = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist_none", "string",
|
|
N_("format for a buffer not in hotlist"),
|
|
NULL, 0, 0,
|
|
"${color:default}",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_hotlist_separator = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"hotlist_separator", "string",
|
|
N_("separator for counts in hotlist"),
|
|
NULL, 0, 0,
|
|
"${color:default},",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
buflist_config_format_lag = weechat_config_new_option (
|
|
buflist_config_file, ptr_section,
|
|
"lag", "string",
|
|
N_("format for lag on an irc server buffer"),
|
|
NULL, 0, 0,
|
|
" ${color:green}[${color:brown}${lag}${color:green}]",
|
|
NULL, 0,
|
|
NULL, NULL, NULL,
|
|
&buflist_config_change_buflist, NULL, NULL,
|
|
NULL, NULL, NULL);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* Reads buflist configuration file.
|
|
*/
|
|
|
|
int
|
|
buflist_config_read ()
|
|
{
|
|
int rc;
|
|
|
|
rc = weechat_config_read (buflist_config_file);
|
|
|
|
if (rc == WEECHAT_CONFIG_READ_OK)
|
|
{
|
|
buflist_config_change_sort (NULL, NULL, NULL);
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* Writes buflist configuration file.
|
|
*/
|
|
|
|
int
|
|
buflist_config_write ()
|
|
{
|
|
return weechat_config_write (buflist_config_file);
|
|
}
|
|
|
|
/*
|
|
* Frees buflist configuration.
|
|
*/
|
|
|
|
void
|
|
buflist_config_free ()
|
|
{
|
|
weechat_config_free (buflist_config_file);
|
|
|
|
if (buflist_config_sort_fields)
|
|
{
|
|
weechat_string_free_split (buflist_config_sort_fields);
|
|
buflist_config_sort_fields = NULL;
|
|
buflist_config_sort_fields_count = 0;
|
|
}
|
|
}
|