From d9da6a07f1375e2f82741f134eaaf7534ccdb8ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Wed, 27 May 2026 18:17:06 +0200 Subject: [PATCH] trigger: contribute "light" theme overrides Add trigger-theme.{c,h} with the trigger plugin contribution to the built-in "light" theme: 6 entries (flag_command, flag_conditions, flag_post_action, flag_regex, flag_return_code, regex) tuned for a light-background terminal. Same 2D-array pattern as the other plugin contributions. Default option values are NOT changed. --- src/plugins/trigger/CMakeLists.txt | 1 + src/plugins/trigger/trigger-theme.c | 74 +++++++++++++++++++++++++++++ src/plugins/trigger/trigger-theme.h | 27 +++++++++++ src/plugins/trigger/trigger.c | 3 ++ 4 files changed, 105 insertions(+) create mode 100644 src/plugins/trigger/trigger-theme.c create mode 100644 src/plugins/trigger/trigger-theme.h diff --git a/src/plugins/trigger/CMakeLists.txt b/src/plugins/trigger/CMakeLists.txt index fab7bf0af..435b7b3ad 100644 --- a/src/plugins/trigger/CMakeLists.txt +++ b/src/plugins/trigger/CMakeLists.txt @@ -26,6 +26,7 @@ add_library(trigger MODULE trigger-command.c trigger-command.h trigger-completion.c trigger-completion.h trigger-config.c trigger-config.h + trigger-theme.c trigger-theme.h ) set_target_properties(trigger PROPERTIES PREFIX "") diff --git a/src/plugins/trigger/trigger-theme.c b/src/plugins/trigger/trigger-theme.c new file mode 100644 index 000000000..bbc0b6623 --- /dev/null +++ b/src/plugins/trigger/trigger-theme.c @@ -0,0 +1,74 @@ +/* + * SPDX-FileCopyrightText: 2026 Sébastien Helleu + * + * 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 . + */ + +/* trigger contribution to built-in themes. */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +#include "../weechat-plugin.h" +#include "trigger.h" +#include "trigger-theme.h" + + +const char *trigger_theme_light[][2] = +{ + { "trigger.color.flag_command", "green" }, + { "trigger.color.flag_conditions", "94" }, + { "trigger.color.flag_post_action", "blue" }, + { "trigger.color.flag_regex", "cyan" }, + { "trigger.color.flag_return_code", "magenta" }, + { "trigger.color.regex", "default" }, + { NULL, NULL }, +}; + +void +trigger_theme_register (const char *name, const char *entries[][2]) +{ + struct t_hashtable *overrides; + int i; + + if (!name || !entries) + return; + + overrides = weechat_hashtable_new (32, + WEECHAT_HASHTABLE_STRING, + WEECHAT_HASHTABLE_STRING, + NULL, NULL); + if (!overrides) + return; + + for (i = 0; entries[i][0]; i++) + weechat_hashtable_set (overrides, entries[i][0], entries[i][1]); + + weechat_theme_register (name, overrides); + + weechat_hashtable_free (overrides); +} + +void +trigger_theme_init (void) +{ + trigger_theme_register ("light", trigger_theme_light); +} diff --git a/src/plugins/trigger/trigger-theme.h b/src/plugins/trigger/trigger-theme.h new file mode 100644 index 000000000..de6a72d31 --- /dev/null +++ b/src/plugins/trigger/trigger-theme.h @@ -0,0 +1,27 @@ +/* + * SPDX-FileCopyrightText: 2026 Sébastien Helleu + * + * 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 . + */ + +#ifndef WEECHAT_PLUGIN_TRIGGER_THEME_H +#define WEECHAT_PLUGIN_TRIGGER_THEME_H + +extern void trigger_theme_init (void); + +#endif /* WEECHAT_PLUGIN_TRIGGER_THEME_H */ diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c index fa927e263..8607fd402 100644 --- a/src/plugins/trigger/trigger.c +++ b/src/plugins/trigger/trigger.c @@ -34,6 +34,7 @@ #include "trigger-command.h" #include "trigger-completion.h" #include "trigger-config.h" +#include "trigger-theme.h" WEECHAT_PLUGIN_NAME(TRIGGER_PLUGIN_NAME); @@ -1385,6 +1386,8 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) trigger_config_read (); + trigger_theme_init (); + /* hook some signals */ weechat_hook_signal ("debug_dump", &trigger_debug_dump_cb, NULL, NULL);