1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00
Files
weechat/src/plugins/fset/fset.c
T
Sébastien Helleu 14616347c8 fset: contribute "light" theme overrides
Add fset-theme.{c,h} with the fset plugin contribution to the built-in
"light" theme: 47 overrides on fset.color.* options (line backgrounds,
selected-row tuning, title and value colors) tuned for a
light-background terminal.

The table is a NULL-terminated 2-column array of strings (no struct
wrapper, matching the pattern adopted for the irc contribution).
fset_theme_register builds a hashtable from the table and calls
weechat_theme_register; fset_theme_init() is called once from
weechat_plugin_init after fset_config_init / fset_config_read.

Default option values are NOT changed.
2026-06-06 12:23:07 +02:00

188 lines
4.5 KiB
C

/*
* SPDX-FileCopyrightText: 2003-2026 Sébastien Helleu <flashcode@flashtux.org>
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* 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 <https://www.gnu.org/licenses/>.
*/
/* Fast set of WeeChat and plugins options */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "../weechat-plugin.h"
#include "fset.h"
#include "fset-bar-item.h"
#include "fset-buffer.h"
#include "fset-command.h"
#include "fset-completion.h"
#include "fset-config.h"
#include "fset-info.h"
#include "fset-mouse.h"
#include "fset-option.h"
#include "fset-theme.h"
WEECHAT_PLUGIN_NAME(FSET_PLUGIN_NAME);
WEECHAT_PLUGIN_DESCRIPTION(N_("Fast set of WeeChat and plugins options"));
WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu <flashcode@flashtux.org>");
WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE);
WEECHAT_PLUGIN_PRIORITY(FSET_PLUGIN_PRIORITY);
struct t_weechat_plugin *weechat_fset_plugin = NULL;
struct t_hdata *fset_hdata_config_file = NULL;
struct t_hdata *fset_hdata_config_section = NULL;
struct t_hdata *fset_hdata_config_option = NULL;
struct t_hdata *fset_hdata_fset_option = NULL;
/*
* Callback for signal "debug_dump".
*/
int
fset_debug_dump_cb (const void *pointer, void *data,
const char *signal, const char *type_data,
void *signal_data)
{
/* make C compiler happy */
(void) pointer;
(void) data;
(void) signal;
(void) type_data;
if (!signal_data || (strcmp ((char *)signal_data, FSET_PLUGIN_NAME) == 0))
{
weechat_log_printf ("");
weechat_log_printf ("***** \"%s\" plugin dump *****",
weechat_plugin->name);
fset_option_print_log ();
weechat_log_printf ("");
weechat_log_printf ("***** End of \"%s\" plugin dump *****",
weechat_plugin->name);
}
return WEECHAT_RC_OK;
}
/*
* Add the fset bar.
*/
void
fset_add_bar (void)
{
weechat_bar_new (
FSET_BAR_NAME, "off", "0", "window",
"${buffer.full_name} == " FSET_PLUGIN_NAME "." FSET_BAR_NAME,
"top", "horizontal", "vertical", "3", "3",
"default", "cyan", "default", "default", "on",
FSET_BAR_ITEM_NAME);
}
/*
* Initialize fset plugin.
*/
int
weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
{
const char *ptr_filter;
/* make C compiler happy */
(void) argc;
(void) argv;
weechat_plugin = plugin;
fset_hdata_config_file = weechat_hdata_get ("config_file");
fset_hdata_config_section = weechat_hdata_get ("config_section");
fset_hdata_config_option = weechat_hdata_get ("config_option");
fset_buffer_init ();
fset_option_init ();
if (!fset_config_init ())
return WEECHAT_RC_ERROR;
fset_config_read ();
fset_theme_init ();
if (!fset_bar_item_init ())
return WEECHAT_RC_ERROR;
fset_command_init ();
fset_completion_init ();
fset_add_bar ();
fset_bar_item_update ();
fset_info_init ();
fset_hdata_fset_option = weechat_hdata_get ("fset_option");
/* hook some signals */
weechat_hook_signal ("debug_dump", &fset_debug_dump_cb, NULL, NULL);
weechat_hook_signal ("window_scrolled",
&fset_buffer_window_scrolled_cb, NULL, NULL);
fset_mouse_init ();
weechat_hook_config ("*", &fset_option_config_cb, NULL, NULL);
if (fset_buffer)
{
ptr_filter = weechat_buffer_get_string (fset_buffer, "localvar_filter");
fset_option_filter_options (ptr_filter);
}
return WEECHAT_RC_OK;
}
/*
* End fset plugin.
*/
int
weechat_plugin_end (struct t_weechat_plugin *plugin)
{
/* make C compiler happy */
(void) plugin;
fset_mouse_end ();
fset_bar_item_end ();
fset_buffer_end ();
fset_option_end ();
fset_config_write ();
fset_config_free ();
return WEECHAT_RC_OK;
}